/* ============ PRIZES ============ */
.prizes { background: var(--paper); position: relative; overflow: hidden; }
.prizes-head { text-align: center; margin-bottom: 64px; }
.prizes-head h2 { margin-top: 16px; }
.prizes-head h2 .ital { color: var(--royal); font-family: inherit; font-style: normal; font-weight: inherit; }

.podium {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 18px;
  align-items: end;
  max-width: 980px;
  margin: 0 auto;
}
.podium-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px 36px;
  position: relative;
  text-align: center;
  transition: transform 0.3s;
}
.podium-card:hover { transform: translateY(-6px); }
.podium-card .medal {
  width: 80px; height: 80px;
  border-radius: var(--r-blob);
  margin: 0 auto 20px;
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  color: white;
  animation: morph 10s ease-in-out infinite;
}
.podium-card.gold { transform: translateY(-24px); border: 2px solid var(--royal); }
.podium-card.gold:hover { transform: translateY(-32px); }
.podium-card.gold .medal { background: linear-gradient(135deg, var(--royal), var(--blue)); width: 100px; height: 100px; font-size: 40px; }
.podium-card.silver .medal { background: linear-gradient(135deg, #6e80b8, #a8b8e0); }
.podium-card.bronze .medal { background: linear-gradient(135deg, var(--coral), #ffb59e); }
.podium-card .place {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--royal); font-size: 13px;
}
.podium-card h3 { font-size: 26px; margin-top: 6px; }
.podium-card p { margin-top: 12px; font-size: 15px; }
.podium-card .perks {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px; color: var(--ink-soft);
}
.podium-card .perks div { display: flex; align-items: center; gap: 8px; justify-content: center; }
.podium-card .perks .check { color: var(--royal); }
@media (max-width: 800px) {
  .podium { grid-template-columns: 1fr; }
  .podium-card.gold { transform: none; }
  .podium-card.gold:hover { transform: translateY(-6px); }
}

.prizes-extra {
  margin-top: 56px;
  text-align: center;
  padding: 32px;
  background: var(--ice);
  border-radius: var(--r-lg);
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
.prizes-extra h3 { font-size: 22px; }
.prizes-extra p { margin-top: 8px; font-size: 16px; }

/* ============ JUDGES ============ */
.judges { background: var(--cream); position: relative; }
.judges-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 56px; align-items: end; }
.judges-head h2 { margin-top: 16px; }
.judges-head h2 .ital { color: var(--royal); font-family: inherit; font-style: normal; font-weight: inherit; }
.judges-head p { font-size: 18px; max-width: 46ch; }

.judges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.judge-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.judge-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(11,31,90,0.12); }
.judge-card .avatar {
  width: 120px; height: 120px;
  border-radius: var(--r-blob);
  background: var(--ice);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  animation: morph 14s ease-in-out infinite;
}
.judge-card .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.judge-card:nth-child(2) .avatar { background: #ffe2d6; color: #c34b1f; }
.judge-card:nth-child(3) .avatar { background: var(--mint); color: #1a6647; }
.judge-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.judge-title {
  margin-top: 6px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--royal);
  line-height: 1.3;
}
.judge-bio {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.partners {
  margin-top: 80px;
  text-align: center;
}
.partners-label {
  font-family: var(--display); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-soft); font-size: 14px;
  margin-bottom: 24px;
}
.partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.partner-pill {
  padding: 14px 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
  transition: all 0.25s;
}
.partner-pill:hover {
  border-color: var(--royal);
  color: var(--royal);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .judges-head { grid-template-columns: 1fr; gap: 24px; }
  .judges-grid { grid-template-columns: repeat(2, 1fr); }
}
