:root {
  --bg: #08051e;
  --bg-soft: #120b34;
  --surface: #1a0f45;
  --surface-strong: #2a1771;
  --surface-alt: #110a31;
  --text: #f8f5ff;
  --muted: #cfc6f2;
  --gold: #f0cc79;
  --gold-soft: #f8e7bf;
  --rose: #8a64ff;
  --violet: #6a3fff;
  --cyan: #4d84ff;
  --border: rgba(208, 191, 255, 0.24);
  --shadow: 0 20px 55px rgba(7, 3, 24, 0.58);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% -10%, rgba(106, 63, 255, 0.35), transparent 36%),
    radial-gradient(circle at 88% 8%, rgba(77, 132, 255, 0.3), transparent 34%),
    radial-gradient(circle at 50% 82%, rgba(240, 204, 121, 0.15), transparent 38%),
    radial-gradient(circle at 4% 72%, rgba(34, 14, 85, 0.45), transparent 36%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.26;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1,
h2,
.brand-text {
  font-family: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

p {
  margin: 0;
}

main {
  padding-bottom: 3.5rem;
}

.container {
  width: min(var(--max-width), calc(100% - 2.2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(3.2rem, 5vw, 5rem) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.9rem;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.35rem);
  margin-bottom: 0.9rem;
}

.section-lead {
  max-width: 68ch;
  color: var(--muted);
}

.card {
  background: linear-gradient(145deg, rgba(141, 106, 255, 0.16), rgba(77, 132, 255, 0.1));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(10, 6, 33, 0.86);
  border-bottom: 1px solid rgba(208, 191, 255, 0.28);
}

.nav-shell {
  position: relative;
  min-height: 74px;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  color: #2b1a06;
  flex-shrink: 0;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.brand-text {
  font-size: 1.22rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(208, 191, 255, 0.35);
  background: rgba(138, 100, 255, 0.14);
  color: var(--text);
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  font-weight: 600;
}

.site-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.site-nav .btn {
  display: inline-flex;
}

.site-nav .nav-link[data-page="home"] {
  display: none;
}

.site-header--event .nav-shell {
  grid-template-columns: minmax(280px, 1fr) 1fr auto;
  gap: 1.2rem;
}

.site-header--event .brand-text {
  max-width: 360px;
}

.site-header--event .site-nav {
  grid-column: 2 / 4;
  justify-self: stretch;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header--event .site-nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 auto;
}

.site-header--event .site-nav .btn {
  position: static;
  top: auto;
  right: auto;
  transform: none;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.84rem;
  color: rgba(243, 238, 255, 0.9);
  padding: 0.42rem 0.55rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: rgba(138, 100, 255, 0.25);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.72rem 1.28rem;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #25152f;
  background: linear-gradient(125deg, #ffe4a3 0%, var(--gold) 48%, #c8b0ff 100%);
  box-shadow: 0 12px 30px rgba(120, 86, 255, 0.34);
}

.btn-secondary {
  border-color: rgba(208, 191, 255, 0.38);
  color: #f7f4ff;
  background: rgba(138, 100, 255, 0.14);
}

.btn-ghost {
  border-color: rgba(208, 191, 255, 0.24);
  color: var(--muted);
  background: rgba(77, 132, 255, 0.08);
}

.hero {
  min-height: calc(100svh - 74px);
  display: flex;
  align-items: center;
  padding-top: clamp(2.6rem, 6vw, 4.8rem);
  padding-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 1fr);
  grid-template-areas:
    "copy poster"
    "copy aside";
  gap: clamp(1rem, 2.2vw, 1.75rem);
  align-items: start;
}

.hero-copy {
  grid-area: copy;
  padding: clamp(0.4rem, 1vw, 0.9rem) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(240, 204, 121, 0.36);
  background: rgba(240, 204, 121, 0.12);
  color: var(--gold-soft);
  padding: 0.36rem 0.72rem;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  margin-bottom: 0.8rem;
  margin-top: 0.8rem;
  line-height: 0.94;
}

.hero-title-main {
  display: block;
  color: #fff;
}

.hero-highlight {
  display: block;
  margin-top: 0.35rem;
  background: linear-gradient(95deg, #ffffff 0%, #d8c8ff 28%, var(--violet) 62%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  color: var(--muted);
  max-width: 58ch;
  font-size: clamp(0.95rem, 1.3vw, 1.02rem);
}

.hero-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-note {
  margin-top: 0.9rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-poster-panel,
.hero-aside {
  min-width: 0;
}

.hero-poster-panel {
  grid-area: poster;
  margin: 0;
  display: block;
  align-self: start;
  width: 100%;
}

.hero-poster-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 0.8rem;
  background:
    radial-gradient(circle at 14% 16%, rgba(138, 100, 255, 0.34), transparent 48%),
    radial-gradient(circle at 82% 14%, rgba(77, 132, 255, 0.28), transparent 43%),
    linear-gradient(160deg, rgba(208, 191, 255, 0.12), rgba(77, 132, 255, 0.08));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(208, 191, 255, 0.28);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-poster-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  background: rgba(10, 6, 33, 0.74);
  border: 1px solid rgba(208, 191, 255, 0.26);
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-poster {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(208, 191, 255, 0.18);
}

.hero-aside {
  grid-area: aside;
  display: grid;
  width: 100%;
  gap: 0.6rem;
  align-content: start;
}

.hero-info-card,
.hero-countdown-card {
  padding: 0.72rem;
  border-radius: 18px;
  border: 1px solid rgba(208, 191, 255, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 204, 121, 0.12), transparent 28%),
    linear-gradient(160deg, rgba(208, 191, 255, 0.11), rgba(77, 132, 255, 0.08));
  box-shadow: var(--shadow);
}

.hero-panel-label {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-info-list {
  margin-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.hero-info-item {
  display: grid;
  gap: 0.18rem;
}

.hero-info-item span {
  color: var(--muted);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-info-item strong {
  font-size: 0.82rem;
  color: #fff;
  line-height: 1.25;
}

.hero-countdown-card h2 {
  margin-top: 0.28rem;
  font-size: 1rem;
}

.hero-countdown-card--overlay {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 1;
  padding: 0.9rem;
  background:
    linear-gradient(180deg, rgba(10, 6, 33, 0.82), rgba(10, 6, 33, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(240, 204, 121, 0.12), transparent 28%);
  backdrop-filter: blur(8px);
}

.hero-countdown-card--overlay .countdown {
  margin-top: 0.6rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.hero-stat {
  border-radius: 12px;
  padding: 0.52rem 0.55rem;
  background: rgba(14, 8, 43, 0.42);
  border: 1px solid rgba(208, 191, 255, 0.24);
}

.hero-stat strong {
  font-size: 0.84rem;
}

.hero-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  margin-top: 0.12rem;
}

.countdown {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
}

.countdown-item {
  border: 1px solid rgba(208, 191, 255, 0.24);
  border-radius: 12px;
  text-align: center;
  padding: 0.48rem 0.2rem;
  background: rgba(13, 8, 37, 0.4);
}

.countdown-item strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1;
}

.countdown-item span {
  color: var(--muted);
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.organizer-chip {
  margin-top: 0.1rem;
  border-radius: 12px;
  border: 1px solid rgba(208, 191, 255, 0.25);
  background: rgba(10, 6, 33, 0.42);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.5rem;
}

.organizer-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(208, 191, 255, 0.25);
}

.organizer-label {
  font-size: 0.62rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.organizer-name {
  font-size: 0.8rem;
  color: #fff;
}

.quick-grid,
.feature-grid,
.steps-grid,
.info-grid {
  margin-top: 1.65rem;
  display: grid;
  gap: 1rem;
}

.mosaic-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: 0.8rem;
}

.mosaic-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(208, 191, 255, 0.28);
  background: rgba(20, 11, 54, 0.42);
  box-shadow: var(--shadow);
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.mosaic-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.mosaic-item--xl {
  grid-column: span 7;
  grid-row: span 3;
}

.mosaic-item--tall {
  grid-column: span 5;
  grid-row: span 3;
}

.mosaic-grid .mosaic-item:nth-child(3),
.mosaic-grid .mosaic-item:nth-child(4),
.mosaic-grid .mosaic-item:nth-child(5) {
  grid-column: span 4;
  grid-row: span 2;
}

.mosaic-caption {
  position: absolute;
  left: 0.7rem;
  bottom: 0.65rem;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.media-strip {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.media-shot {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(208, 191, 255, 0.26);
  background: rgba(12, 8, 42, 0.44);
  box-shadow: var(--shadow);
}

.media-shot img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
}

.media-strip--compact .media-shot img {
  height: 150px;
}

.quick-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-card,
.feature-card,
.step-card,
.info-card {
  padding: 1.05rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: linear-gradient(150deg, rgba(138, 100, 255, 0.14), rgba(77, 132, 255, 0.09));
}

.quick-card h3,
.feature-card h3,
.step-card h3,
.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.quick-card p,
.feature-card p,
.step-card p,
.info-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.candidate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 1.6rem;
}

.candidate-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 82% 2%, rgba(215, 190, 255, 0.16), transparent 42%),
    linear-gradient(160deg, rgba(79, 27, 194, 0.38), rgba(18, 7, 52, 0.72));
  box-shadow: var(--shadow);
}

.candidate-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.candidate-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.2rem;
}

.candidate-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.candidate-badge,
.candidate-school {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.candidate-badge {
  color: var(--gold-soft);
  border: 1px solid rgba(240, 204, 121, 0.28);
  background: rgba(240, 204, 121, 0.12);
}

.candidate-school {
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.candidate-card h3 {
  font-size: 1.2rem;
  margin: 0;
}

.candidate-card p {
  color: var(--muted);
  margin: 0;
}

.quick-card:hover {
  border-color: rgba(208, 191, 255, 0.72);
}

.feature-card--media {
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 2%, rgba(215, 190, 255, 0.2), transparent 42%),
    linear-gradient(160deg, rgba(79, 27, 194, 0.38), rgba(18, 7, 52, 0.72));
}

.feature-media {
  margin: 0;
  position: relative;
  height: clamp(160px, 18vw, 215px);
  overflow: hidden;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 4, 22, 0) 45%, rgba(8, 4, 22, 0.55) 100%);
  pointer-events: none;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.feature-card--media:hover .feature-media img {
  transform: scale(1.05);
}

.feature-copy {
  padding: 0.95rem 1.05rem 1.1rem;
}

.cta-banner {
  margin-top: 1.5rem;
  padding: clamp(1.25rem, 3.2vw, 2.1rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(208, 191, 255, 0.3);
  background:
    radial-gradient(circle at 85% 8%, rgba(106, 63, 255, 0.32), transparent 40%),
    radial-gradient(circle at 6% 90%, rgba(77, 132, 255, 0.27), transparent 45%),
    linear-gradient(140deg, rgba(208, 191, 255, 0.16), rgba(77, 132, 255, 0.1));
  box-shadow: var(--shadow);
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.cta-banner p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.cta-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.page-hero {
  padding-top: clamp(4rem, 8vw, 6rem);
}

.page-hero .section-title {
  margin-bottom: 0.7rem;
}

.iframe-shell {
  --iframe-min-height: 620px;
  --iframe-fluid-height: 78vh;
  --iframe-max-height: 1050px;
  margin-top: 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(208, 191, 255, 0.28);
  overflow: hidden;
  background: rgba(138, 100, 255, 0.09);
  box-shadow: var(--shadow);
}

.iframe-shell iframe {
  width: 100%;
  display: block;
  height: clamp(var(--iframe-min-height), var(--iframe-fluid-height), var(--iframe-max-height));
  min-height: 0;
  border: 0;
}

.iframe-shell--widget {
  --iframe-min-height: 300px;
  --iframe-fluid-height: 44vh;
  --iframe-max-height: 430px;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.iframe-shell--ticket {
  --iframe-min-height: 620px;
  --iframe-fluid-height: 78vh;
  --iframe-max-height: 1050px;
}

.assist-box {
  margin-top: 1rem;
  border: 1px solid rgba(208, 191, 255, 0.22);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(138, 100, 255, 0.08);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.inline-note {
  margin-top: 1rem;
  max-width: 68ch;
  color: var(--muted);
}

.inline-note a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.faq-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.faq-item {
  border: 1px solid rgba(208, 191, 255, 0.24);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(77, 132, 255, 0.1);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 1rem;
  cursor: pointer;
}

.faq-trigger span {
  color: var(--gold-soft);
  font-size: 1.18rem;
  line-height: 1;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-panel p {
  color: var(--muted);
  padding: 0 1rem 1rem;
  font-size: 0.92rem;
}

.results-meta {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(208, 191, 255, 0.28);
  padding: 0.33rem 0.65rem;
}

.results-block {
  margin-top: 2rem;
}

.results-block h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
}

.podium-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.podium-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(208, 191, 255, 0.28);
  padding: 1rem;
  background: linear-gradient(155deg, rgba(138, 100, 255, 0.18), rgba(77, 132, 255, 0.08));
  position: relative;
  overflow: hidden;
}

.podium-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% -6%, rgba(208, 191, 255, 0.26), transparent 45%);
  pointer-events: none;
}

.podium-card--rank-1 {
  border-color: rgba(240, 199, 122, 0.7);
}

.podium-card--rank-2 {
  border-color: rgba(208, 191, 255, 0.7);
}

.podium-card--rank-3 {
  border-color: rgba(134, 174, 255, 0.72);
}

.podium-rank {
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.podium-person {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(208, 191, 255, 0.28);
  background: linear-gradient(135deg, rgba(106, 63, 255, 0.5), rgba(77, 132, 255, 0.42));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.podium-person .avatar {
  width: 72px;
  height: 72px;
}

.podium-name {
  font-weight: 700;
  font-size: 1.04rem;
}

.podium-school {
  color: var(--muted);
  font-size: 0.82rem;
}

.podium-votes {
  margin-top: 0.78rem;
  font-weight: 700;
  color: var(--gold);
}

.table-shell {
  margin-top: 0.85rem;
  border: 1px solid rgba(208, 191, 255, 0.24);
  border-radius: var(--radius-md);
  overflow: auto;
  background: rgba(77, 132, 255, 0.09);
}

.results-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.results-table th,
.results-table td {
  text-align: left;
  padding: 0.86rem 0.85rem;
  border-bottom: 1px solid rgba(208, 191, 255, 0.18);
}

.results-table th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
}

.results-table td {
  font-size: 0.9rem;
}

.results-table tbody tr:hover {
  background: rgba(138, 100, 255, 0.12);
}

.candidate-cell {
  display: flex;
  align-items: center;
  gap: 0.64rem;
}

.candidate-cell .avatar {
  width: 38px;
  height: 38px;
  font-size: 0.75rem;
}

.empty-note {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-layout {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.contact-layout--single {
  grid-template-columns: minmax(0, 1fr);
}

.contact-layout--single .form-card {
  width: 100%;
}

.contact-layout--single .iframe-shell--widget {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.contact-card,
.form-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(208, 191, 255, 0.24);
  padding: 1.15rem;
  background: linear-gradient(150deg, rgba(138, 100, 255, 0.16), rgba(77, 132, 255, 0.09));
}

.contact-list {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.65rem;
}

.contact-list a,
.contact-list span {
  color: var(--muted);
}

label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  color: var(--gold-soft);
}

.field {
  margin-bottom: 0.75rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(208, 191, 255, 0.28);
  border-radius: 12px;
  background: rgba(11, 7, 37, 0.45);
  color: #f8f5ff;
  font: inherit;
  padding: 0.78rem 0.85rem;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.form-status {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.rules-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(208, 191, 255, 0.28);
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 90% 0%, rgba(240, 204, 121, 0.1), transparent 24%),
    linear-gradient(155deg, rgba(138, 100, 255, 0.16), rgba(77, 132, 255, 0.08));
  box-shadow: var(--shadow);
}

.rules-header {
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(208, 191, 255, 0.16);
}

.rules-intro {
  margin-top: 0.7rem;
  color: var(--muted);
  max-width: 70ch;
}

.rules-content {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.3rem;
}

.rules-section {
  display: grid;
  gap: 0.7rem;
}

.rules-section h3,
.rules-section h4 {
  font-family: "Space Grotesk", "Manrope", "Segoe UI", sans-serif;
}

.rules-section h3 {
  font-size: 1.25rem;
}

.rules-section h4 {
  font-size: 1rem;
  color: var(--gold-soft);
}

.rules-section p,
.rules-list {
  color: var(--muted);
}

.rules-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.site-footer {
  border-top: 1px solid rgba(208, 191, 255, 0.2);
  margin-top: 2.6rem;
}

.footer-shell {
  padding: 1.25rem 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.87rem;
}

.footer-note {
  color: rgba(224, 208, 255, 0.62);
  font-size: 0.77rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .quick-grid,
  .feature-grid,
  .steps-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .hero-copy,
  .hero-poster-panel,
  .hero-aside {
    grid-area: auto;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-poster-frame {
    max-width: 640px;
    margin: 0 auto;
  }

  .hero-aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .hero-stats {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .organizer-chip {
    grid-column: 1 / -1;
  }

  .mosaic-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 120px;
  }

  .mosaic-item--xl,
  .mosaic-item--tall {
    grid-column: span 3;
    grid-row: span 3;
  }

  .mosaic-grid .mosaic-item:nth-child(3),
  .mosaic-grid .mosaic-item:nth-child(4),
  .mosaic-grid .mosaic-item:nth-child(5) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .media-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-height: 840px) and (min-width: 1061px) {
  .hero {
    min-height: calc(100svh - 74px);
    padding-top: 1.8rem;
    padding-bottom: 1.2rem;
  }

  .hero-title {
    font-size: clamp(1.85rem, 3.9vw, 3.1rem);
    margin-top: 0.65rem;
    margin-bottom: 0.65rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }

  .hero-actions {
    margin-top: 0.9rem;
  }

  .hero-note {
    display: none;
  }

  .hero-poster {
    min-height: 0;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stat {
    padding: 0.55rem 0.6rem;
  }

  .organizer-chip {
    padding: 0.45rem 0.5rem;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.2rem);
    left: 1rem;
    right: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(208, 191, 255, 0.32);
    background: rgba(15, 9, 44, 0.96);
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav .btn {
    display: inline-flex;
    position: static;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
  }

  .site-nav .nav-link[data-page="home"] {
    display: block;
  }

  .site-header--event .site-nav-links {
    width: 100%;
    display: grid;
    gap: 0.35rem;
    margin: 0;
  }

  .site-header--event .site-nav .btn {
    margin-left: 0;
  }

  body.menu-open .site-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    border-radius: 10px;
    padding: 0.68rem;
  }

  .podium-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    display: block;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.2rem));
  }

  .site-header--event .nav-shell {
    min-height: 64px;
    padding: 0.35rem 0;
  }

  .brand {
    gap: 0.62rem;
    max-width: calc(100% - 108px);
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-text {
    font-size: 0.98rem;
    line-height: 1.05;
    white-space: normal;
  }

  .menu-toggle {
    min-width: 88px;
    justify-content: center;
    padding: 0.7rem 0.9rem;
    border-radius: 18px;
  }

  .section {
    padding: 2.55rem 0;
  }

  .hero {
    padding-top: 1.6rem;
    padding-bottom: 1rem;
  }

  .hero-grid {
    gap: 1rem;
  }

  .hero-copy {
    padding: 1.05rem 1rem 0.15rem;
    border-radius: 24px;
    border: 1px solid rgba(208, 191, 255, 0.18);
    background:
      radial-gradient(circle at 85% 0%, rgba(240, 204, 121, 0.1), transparent 28%),
      linear-gradient(180deg, rgba(85, 60, 201, 0.22), rgba(17, 10, 49, 0.14));
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-actions .btn,
  .cta-actions .btn,
  .assist-box .btn {
    width: 100%;
    min-height: 58px;
    font-size: 1rem;
    border-radius: 999px;
  }

  .quick-grid,
  .feature-grid,
  .steps-grid,
  .info-grid,
  .countdown,
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }

  .hero-badge {
    padding: 0.42rem 0.8rem;
    font-size: 0.72rem;
  }

  .hero-title {
    margin-top: 0.7rem;
    margin-bottom: 0.7rem;
    font-size: clamp(2.2rem, 10vw, 3.35rem);
    line-height: 0.93;
  }

  .hero-highlight {
    margin-top: 0.42rem;
  }

  .hero-text {
    font-size: 0.95rem;
    max-width: none;
  }

  .hero-note {
    margin-top: 0.95rem;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .hero-poster-frame {
    padding: 0.55rem;
    border-radius: 26px;
    overflow: visible;
  }

  .hero-countdown-card--overlay {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0.75rem;
    padding: 0.8rem;
    border-radius: 22px;
    backdrop-filter: none;
  }

  .hero-poster {
    min-height: 0;
    border-radius: 22px;
  }

  .hero-aside {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .hero-info-card,
  .hero-countdown-card {
    padding: 0.85rem;
    border-radius: 22px;
  }

  .hero-info-list {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-info-item span {
    font-size: 0.62rem;
  }

  .hero-info-item strong {
    font-size: 0.94rem;
  }

  .hero-countdown-card h2 {
    font-size: 1.02rem;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .countdown-item {
    padding: 0.7rem 0.35rem;
  }

  .countdown-item strong {
    font-size: 1.1rem;
  }

  .countdown-item span {
    font-size: 0.58rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .hero-stat {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hero-stat strong {
    font-size: 0.92rem;
  }

  .hero-stat span {
    font-size: 0.68rem;
  }

  .organizer-chip {
    border-radius: 20px;
    padding: 0.55rem 0.7rem;
  }

  .organizer-logo {
    width: 40px;
    height: 40px;
  }

  .mosaic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 135px;
  }

  .mosaic-item--xl,
  .mosaic-item--tall {
    grid-column: span 2;
    grid-row: span 2;
  }

  .mosaic-grid .mosaic-item:nth-child(3),
  .mosaic-grid .mosaic-item:nth-child(4),
  .mosaic-grid .mosaic-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .media-strip {
    grid-template-columns: 1fr;
  }

  .media-shot img,
  .media-strip--compact .media-shot img {
    height: 180px;
  }

  .quick-grid .quick-card,
  .feature-grid .feature-card,
  .steps-grid .step-card,
  .info-grid .info-card {
    min-height: auto;
    border-radius: 20px;
    padding: 1rem;
  }

  .feature-media {
    height: clamp(170px, 45vw, 235px);
  }

  .candidate-grid {
    grid-template-columns: 1fr;
  }

  .candidate-card {
    grid-template-columns: 1fr;
  }

  .candidate-photo {
    aspect-ratio: 4 / 3;
  }

  .assist-box {
    align-items: stretch;
  }

  .iframe-shell {
    --iframe-min-height: 420px;
    --iframe-fluid-height: 70vh;
    --iframe-max-height: 880px;
  }

  .iframe-shell--widget {
    --iframe-min-height: 360px;
    --iframe-fluid-height: 56vh;
    --iframe-max-height: 540px;
    max-width: 100%;
  }

  .footer-shell {
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .brand-text {
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: clamp(2rem, 13vw, 2.55rem);
  }

  .quick-grid,
  .feature-grid,
  .steps-grid,
  .info-grid,
  .countdown,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 0.95rem 0.88rem 0.1rem;
    border-radius: 22px;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
  }

  .hero-text {
    font-size: 0.9rem;
  }

  .hero-poster {
    min-height: 255px;
  }

  .hero-stat {
    min-height: auto;
  }

  .mosaic-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 170px;
  }

  .mosaic-item,
  .mosaic-item--xl,
  .mosaic-item--tall,
  .mosaic-grid .mosaic-item:nth-child(3),
  .mosaic-grid .mosaic-item:nth-child(4),
  .mosaic-grid .mosaic-item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .media-shot img,
  .media-strip--compact .media-shot img {
    height: 170px;
  }

  .countdown-item strong {
    font-size: 1.08rem;
  }
}
