/*
* MLH Theme Refresh
* Dark green + white palette with clean structure and richer motion.
*/

@import url(https://fonts.googleapis.com/css?family=Playfair+Display:600,700);
@import url(https://fonts.googleapis.com/css?family=Manrope:400,500,600,700);

:root {
  --ink: #0b1f16;
  --forest: #0f2d20;
  --pine: #123b2a;
  --moss: #1f6f4a;
  --leaf: #2f8f62;
  --mist: #f6fbf8;
  --cloud: #ffffff;
  --border: rgba(15, 45, 32, 0.12);
  --shadow: 0 20px 50px rgba(9, 28, 19, 0.15);
  --glow: 0 12px 30px rgba(47, 143, 98, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(1200px 600px at 10% -10%, #1c4d38 0%, rgba(28, 77, 56, 0) 60%),
    linear-gradient(160deg, #0c1f16 0%, #0f2d20 35%, #143a2b 100%);
  color: var(--cloud);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  letter-spacing: -0.2px;
  margin: 0;
}

section {
  overflow-x: hidden;
}

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

/*
 * Trust Badge
 */

#mlh-trust-badge {
  display: block;
  max-width: 110px;
  min-width: 70px;
  position: fixed;
  right: 40px;
  top: 0;
  width: 10%;
  z-index: 10000;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
  animation: float-in 1.2s ease-out;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

#mlh-trust-badge.mlh-trust-badge--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
}

/*
 * Hero Section
 */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 124px 0 68px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(640px 320px at 78% 18%, rgba(47, 143, 98, 0.34), rgba(15, 45, 32, 0) 70%),
    radial-gradient(520px 260px at 12% 12%, rgba(255, 255, 255, 0.08), rgba(15, 45, 32, 0) 72%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  bottom: 24px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(47, 143, 98, 0.22), rgba(47, 143, 98, 0));
  filter: blur(10px);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: rise-in 1s ease-out;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 78px;
  font-weight: 700;
  letter-spacing: -2.4px;
  line-height: 0.95;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 20px 40px rgba(3, 14, 9, 0.28);
}

.hero h2 {
  max-width: 38rem;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.88);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
}

.hero-meta-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(4, 15, 10, 0.18);
}

.hero-meta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(210, 243, 224, 0.76);
}

.hero .buttons {
  margin: 26px 0 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media(min-width: 769px) {
  .hero .buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
  }

  .hero .buttons a {
    width: 100%;
    min-width: 0;
  }

  .hero-countdown {
    margin-top: 40px;
  }
}

.hero .buttons a {
  background: var(--cloud);
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.9px;
  padding: 13px 26px;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  box-shadow: var(--shadow);
}

.hero .buttons a + a {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

.hero .buttons a:hover,
.hero .buttons a:focus {
  background: var(--leaf);
  color: #0b1f16;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(8, 26, 18, 0.35);
}

.hero-countdown {
  max-width: 620px;
  margin: 28px auto 0;
  background: rgba(247, 252, 249, 0.94);
  box-shadow: 0 18px 42px rgba(3, 14, 9, 0.24);
}

@media(min-width: 993px) {
  .hero .buttons {
    max-width: 620px;
  }

  .hero-countdown {
    margin-top: 56px;
  }
}

.hero-scroll {
  width: 56px;
  height: 56px;
  margin: 24px auto 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(3, 14, 9, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-scroll::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg) translate(-1px, -1px);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

.hero-scroll:hover,
.hero-scroll:focus {
  background: rgba(47, 143, 98, 0.26);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(2px);
}

/*
 * About Section
 */

.about {
  background: var(--mist);
  color: var(--forest);
  padding: 92px 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0%;
  transform: translateX(-50%);
  width: 200%;
  height: 6px;
  background: linear-gradient(90deg, var(--leaf), transparent);
  border-radius: 999px;
}

.about p {
  color: var(--pine);
  font-size: 18px;
  line-height: 1.72em;
  letter-spacing: -0.2px;
}

.about p span {
  font-weight: 700;
  text-transform: uppercase;
}

/*
 * Countdown Section
 */

.countdown {
  background: var(--mist);
  color: var(--forest);
  padding: 0 0 58px;
}

.countdown-card {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(10, 30, 20, 0.1);
  padding: 20px 22px;
}

.countdown-card .eyebrow,
.countdown .eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--leaf);
  margin-bottom: 8px;
}

.countdown-card h2 {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  color: var(--forest);
}

.countdown-card time {
  color: inherit;
  font-style: normal;
}

.countdown-meta {
  margin: -2px 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: rgba(15, 45, 32, 0.7);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.countdown-item {
  background: linear-gradient(160deg, rgba(15, 45, 32, 0.06), rgba(47, 143, 98, 0.12));
  border: 1px solid rgba(15, 45, 32, 0.14);
  border-radius: 14px;
  padding: 12px 8px;
}

.countdown-value {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--pine);
}

.countdown-join {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(10, 30, 20, 0.08);
}

.countdown-join-intro {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 14px;
}

.countdown-join-copy {
  margin: 0;
  font-size: 15px;
  color: rgba(15, 45, 32, 0.68);
}

.countdown-join-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.countdown-join-card {
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(15, 45, 32, 0.12);
  background: linear-gradient(160deg, rgba(15, 45, 32, 0.04), rgba(47, 143, 98, 0.08));
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
}

.countdown-join-value {
  display: block;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  color: var(--forest);
}

.countdown-join-card h3 {
  margin: 8px 0 6px;
  font-size: 17px;
  color: var(--forest);
}

.countdown-join-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45em;
  color: var(--pine);
}

/*
 * Info Section
 */

.info {
  background: var(--cloud);
  margin-top: 0;
  padding: 86px 0;
  position: relative;
}

.info .item {
  padding: 22px 18px;
  border-radius: 20px;
  background: rgba(15, 45, 32, 0.04);
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(10, 30, 20, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation: fade-up 0.8s ease both;
}

.info .item:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 60px rgba(10, 30, 20, 0.16);
  background: rgba(47, 143, 98, 0.08);
}

.info .item h1 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  margin: 14px 0 10px;
  color: var(--forest);
}

.info .item img {
  max-width: 180px;
  filter: drop-shadow(0 12px 20px rgba(10, 30, 20, 0.12));
}

.info .item p {
  font-size: 16px;
  color: var(--pine);
}

/*
 * Schedule Section
 */

.schedule {
  background: linear-gradient(140deg, #ffffff 0%, #f4fbf7 45%, #eaf6ef 100%);
  color: var(--forest);
  padding: 88px 0 94px;
  position: relative;
}

.schedule::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 200px at 12% 12%, rgba(47, 143, 98, 0.18), rgba(255, 255, 255, 0) 70%),
    radial-gradient(360px 220px at 88% 16%, rgba(15, 45, 32, 0.12), rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.schedule .container {
  position: relative;
}

.schedule-intro {
  max-width: 680px;
  margin: 0 auto 22px;
}

.schedule .eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--leaf);
  margin-bottom: 12px;
}

.schedule-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--forest);
}

.schedule-intro .lead {
  font-size: 17px;
  color: var(--pine);
}

.schedule-shell {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(10, 30, 20, 0.1);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.schedule-table thead th {
  background: rgba(15, 45, 32, 0.08);
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 12px;
}

.schedule-table tbody tr:nth-child(even) {
  background: rgba(15, 45, 32, 0.025);
}

.schedule-table tbody tr + tr th,
.schedule-table tbody tr + tr td {
  border-top: 1px solid rgba(15, 45, 32, 0.1);
}

.schedule-table th,
.schedule-table td {
  padding: 9px 12px;
  font-size: 14px;
  line-height: 1.35em;
  color: var(--pine);
  text-align: left;
  vertical-align: top;
}

.schedule-table thead th:first-child,
.schedule-table tbody th[scope="row"] {
  width: 168px;
  color: var(--leaf);
  font-weight: 700;
  border-right: 1px solid rgba(15, 45, 32, 0.12);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.schedule-table thead th:first-child {
  color: var(--forest);
}

.schedule-time-text {
  display: inline-flex;
  align-items: center;
  min-height: 100%;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.schedule-event {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
}

.schedule-note {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: rgba(15, 45, 32, 0.62);
}

.schedule-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px 24px 24px;
  box-shadow: 0 20px 40px rgba(10, 30, 20, 0.1);
  animation: fade-up 0.8s ease both;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.schedule-card::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--leaf), rgba(47, 143, 98, 0));
}

.schedule-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(10, 30, 20, 0.18);
  border-color: rgba(47, 143, 98, 0.4);
}

.schedule-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(47, 143, 98, 0.12);
  color: var(--leaf);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.schedule-card h3 {
  font-size: 20px;
  margin: 10px 0 8px;
  color: var(--forest);
}

.schedule-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6em;
  color: var(--pine);
}

.schedule-card:nth-child(2) {
  animation-delay: 0.05s;
}

.schedule-card:nth-child(3) {
  animation-delay: 0.1s;
}

.schedule-card:nth-child(4) {
  animation-delay: 0.15s;
}

.schedule-card:nth-child(5) {
  animation-delay: 0.2s;
}

.schedule-card:nth-child(6) {
  animation-delay: 0.25s;
}

.schedule-card:nth-child(7) {
  animation-delay: 0.3s;
}

.schedule-card:nth-child(8) {
  animation-delay: 0.35s;
}

.schedule-card:nth-child(9) {
  animation-delay: 0.4s;
}

.schedule-card:nth-child(10) {
  animation-delay: 0.45s;
}

/*
 * Themes Section
 */

.themes {
  background: linear-gradient(150deg, #ffffff 0%, #f4fbf7 45%, #e7f4ed 100%);
  color: var(--forest);
  padding: 84px 0 90px;
  position: relative;
  overflow: hidden;
}

.themes::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 200px at 12% 18%, rgba(47, 143, 98, 0.18), rgba(255, 255, 255, 0) 70%),
    radial-gradient(460px 220px at 88% 8%, rgba(15, 45, 32, 0.12), rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.themes::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(47, 143, 98, 0.2), rgba(47, 143, 98, 0));
  filter: blur(4px);
  opacity: 0.8;
  pointer-events: none;
}

.themes .container {
  position: relative;
}

.themes-intro {
  max-width: 700px;
  margin: 0 auto 28px;
}

.themes .eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--leaf);
  margin-bottom: 12px;
}

.themes-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--forest);
}

.themes-intro .lead {
  font-size: 17px;
  color: var(--pine);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.theme-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px 20px 20px;
  box-shadow: 0 16px 34px rgba(10, 30, 20, 0.1);
  overflow: hidden;
  animation: fade-up 0.9s ease both;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.theme-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(180px 120px at 80% 20%, rgba(47, 143, 98, 0.18), rgba(255, 255, 255, 0) 70%);
  opacity: 0.9;
  pointer-events: none;
}

.theme-card::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -60%;
  width: 70%;
  height: 160%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: rotate(12deg);
  animation: theme-sheen 4.5s ease-in-out infinite;
  opacity: 0.4;
  pointer-events: none;
}

.theme-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 64px rgba(10, 30, 20, 0.18);
  border-color: rgba(47, 143, 98, 0.45);
}

.theme-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(47, 143, 98, 0.12);
  color: var(--leaf);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.theme-card h3 {
  font-size: 20px;
  margin: 12px 0 8px;
  color: var(--forest);
}

.theme-card p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5em;
  color: var(--pine);
}

.theme-meta {
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(15, 45, 32, 0.6);
}

.theme-card--robotics {
  border-color: rgba(47, 143, 98, 0.3);
}

.theme-card--culture {
  border-color: rgba(15, 45, 32, 0.24);
}

.theme-card--automation {
  border-color: rgba(31, 111, 74, 0.28);
}

.theme-card--sustain {
  border-color: rgba(47, 143, 98, 0.22);
}

.theme-card:nth-child(2) {
  animation-delay: 0.1s;
}

.theme-card:nth-child(3) {
  animation-delay: 0.2s;
}

.theme-card:nth-child(4) {
  animation-delay: 0.3s;
}

.theme-card:nth-child(2)::after {
  animation-delay: 0.6s;
}

.theme-card:nth-child(3)::after {
  animation-delay: 1.2s;
}

.theme-card:nth-child(4)::after {
  animation-delay: 1.8s;
}

/*
 * Judges & Mentors Section
 */

.judges-mentors {
  background: linear-gradient(140deg, #eef8f2 0%, #ffffff 48%, #f5fbf8 100%);
  color: var(--forest);
  padding: 84px 0 90px;
  position: relative;
  overflow: hidden;
}

.judges-mentors::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 180px at 10% 16%, rgba(47, 143, 98, 0.15), rgba(255, 255, 255, 0) 70%),
    radial-gradient(380px 200px at 92% 12%, rgba(15, 45, 32, 0.1), rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.judges-mentors::after {
  content: '';
  position: absolute;
  left: -120px;
  bottom: -160px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(31, 111, 74, 0.2), rgba(31, 111, 74, 0));
  filter: blur(6px);
  pointer-events: none;
}

.judges-mentors .container {
  position: relative;
}

.judges-intro {
  max-width: 700px;
  margin: 0 auto 28px;
}

.judges-mentors .eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--leaf);
  margin-bottom: 12px;
}

.judges-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--forest);
}

.judges-intro .lead {
  font-size: 17px;
  color: var(--pine);
}

.judges-mentors-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.jm-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 14px 14px;
  box-shadow: 0 12px 28px rgba(10, 30, 20, 0.1);
  overflow: hidden;
  animation: fade-up 0.9s ease both;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  text-align: center;
}

.jm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--leaf), rgba(47, 143, 98, 0));
}

.jm-card::after {
  content: '';
  position: absolute;
  top: -36%;
  left: -62%;
  width: 74%;
  height: 170%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(10deg);
  animation: mentor-sheen 5.2s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.35;
}

.jm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 64px rgba(10, 30, 20, 0.18);
  border-color: rgba(47, 143, 98, 0.42);
}

.jm-role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(47, 143, 98, 0.12);
  color: var(--leaf);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.jm-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #ffffff;
  background: linear-gradient(145deg, #1f6f4a 0%, #0f2d20 100%);
  box-shadow: 0 16px 30px rgba(12, 42, 29, 0.28);
  animation: pulse-soft 3s ease-in-out infinite;
}

.jm-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
  color: var(--forest);
}

.jm-title {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(15, 45, 32, 0.64);
}

.jm-summary {
  margin: 0;
  font-size: 13px;
  line-height: 1.4em;
  color: var(--pine);
}

.jm-card--judge {
  border-color: rgba(31, 111, 74, 0.26);
}

.jm-card--mentor {
  border-color: rgba(47, 143, 98, 0.3);
}

.jm-card:nth-child(2) {
  animation-delay: 0.08s;
}

.jm-card:nth-child(3) {
  animation-delay: 0.16s;
}

.jm-card:nth-child(4) {
  animation-delay: 0.24s;
}

.jm-card:nth-child(2)::after {
  animation-delay: 0.5s;
}

.jm-card:nth-child(3)::after {
  animation-delay: 1s;
}

.jm-card:nth-child(4)::after {
  animation-delay: 1.5s;
}

/*
 * Partners Section
 */

.partners {
  background: linear-gradient(130deg, #f7fcf9 0%, #ffffff 55%, #f1f8f4 100%);
  color: var(--forest);
  padding: 80px 0 86px;
  position: relative;
}

.partners::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 180px at 15% 15%, rgba(47, 143, 98, 0.12), rgba(255, 255, 255, 0) 70%),
    radial-gradient(360px 180px at 90% 10%, rgba(31, 111, 74, 0.1), rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.partners .container {
  position: relative;
}

.partners-intro {
  max-width: 680px;
  margin: 0 auto 32px;
}

.partners .eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--leaf);
  margin-bottom: 12px;
}

.partners-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--forest);
}

.partners-intro .lead {
  font-size: 17px;
  color: var(--pine);
}

.partners-group {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px 36px 42px;
  box-shadow: 0 22px 50px rgba(9, 28, 19, 0.08);
  margin-bottom: 22px;
}

.partners-group-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  margin: 0 0 6px;
  color: var(--forest);
}

.partners-group-header p {
  margin: 0 0 22px;
  color: var(--pine);
  font-size: 16px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

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

.partner-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 14px 12px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(10, 30, 20, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(10, 30, 20, 0.18);
  border-color: rgba(47, 143, 98, 0.4);
}

.partner-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--leaf);
  background: rgba(47, 143, 98, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
}

.partner-logo {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(15, 45, 32, 0.06), rgba(47, 143, 98, 0.1));
}

.partner-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.partner-logo img {
  max-height: 46px;
  max-width: 130px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(10, 30, 20, 0.16));
}

.partner-card h3 {
  font-size: 17px;
  margin: 0;
  color: var(--forest);
}

.partner-note {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(15, 45, 32, 0.62);
}

/*
 * FAQ Section
 */

.faq {
  background: var(--mist);
  margin-top: 0;
  padding: 80px 0 86px;
  position: relative;
}

.faq h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin: 8px 0 16px;
  color: var(--forest);
}

.faq-intro {
  max-width: 680px;
  margin: 0 auto 18px;
}

.faq .eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--leaf);
  margin-bottom: 12px;
}

.faq-intro .lead {
  font-size: 17px;
  color: var(--pine);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.faq .question {
  padding: 11px 12px;
  margin: 0;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(10, 30, 20, 0.08);
  animation: fade-up 0.9s ease both;
  color: #0f2d20;
  color: var(--forest);
  opacity: 1;
}

.faq .question summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  padding-bottom: 0;
  color: #0f2d20;
  color: var(--forest);
  opacity: 1;
  visibility: visible;
}

.faq .question summary::-webkit-details-marker {
  display: none;
}

.faq .question summary:focus-visible {
  outline: 2px solid rgba(47, 143, 98, 0.55);
  outline-offset: 4px;
  border-radius: 8px;
}

.faq .question .faq-question {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #0f2d20;
  color: var(--forest);
  line-height: 1.35em;
  opacity: 1;
  visibility: visible;
}

.faq .faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(15, 45, 32, 0.25);
  background: rgba(47, 143, 98, 0.08);
  flex-shrink: 0;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.faq .faq-icon::before,
.faq .faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  background: var(--pine);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq .question[open] {
  border-color: rgba(47, 143, 98, 0.38);
  box-shadow: 0 16px 34px rgba(10, 30, 20, 0.12);
}

.faq .question[open] .faq-icon {
  transform: rotate(180deg);
  border-color: rgba(47, 143, 98, 0.45);
  background: rgba(47, 143, 98, 0.14);
}

.faq .question[open] .faq-icon::after {
  opacity: 0;
}

.faq .faq-answer {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(15, 45, 32, 0.1);
}

.faq .faq-answer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45em;
  color: var(--pine);
}

.faq .faq-answer p + p {
  margin-top: 8px;
}

/*
 * Footer Section
 */

.footer {
  background: linear-gradient(140deg, #0f2d20 0%, #122d22 50%, #0b1f16 100%);
  color: #f2f9f5;
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 220px at 12% 0%, rgba(47, 143, 98, 0.35), rgba(15, 45, 32, 0) 70%),
    radial-gradient(520px 260px at 90% 10%, rgba(255, 255, 255, 0.08), rgba(15, 45, 32, 0) 70%);
  pointer-events: none;
}

.footer .container {
  position: relative;
}

.footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(11, 31, 22, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 28px 30px;
  box-shadow: 0 18px 42px rgba(2, 10, 6, 0.42);
  animation: rise-in 1s ease-out;
}

.footer-brand .eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(210, 243, 224, 0.8);
  margin-bottom: 10px;
}

.footer h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
}

.footer-lead {
  margin: 0;
  font-size: 15px;
  color: rgba(242, 249, 245, 0.75);
}

.footer-links {
  display: grid;
  gap: 12px;
  min-width: 240px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(242, 249, 245, 0.92);
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus {
  transform: translateY(-2px);
  background: rgba(47, 143, 98, 0.35);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(3, 14, 9, 0.4);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
  font-size: 13px;
  color: rgba(242, 249, 245, 0.7);
}

.footer-meta a {
  color: rgba(242, 249, 245, 0.9);
}

@keyframes rise-in {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes theme-sheen {
  0% {
    opacity: 0;
    transform: translateX(-60%) rotate(12deg);
  }
  35% {
    opacity: 0.45;
  }
  70% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
    transform: translateX(160%) rotate(12deg);
  }
}

@keyframes mentor-sheen {
  0% {
    opacity: 0;
    transform: translateX(-58%) rotate(10deg);
  }
  35% {
    opacity: 0.4;
  }
  75% {
    opacity: 0.18;
  }
  100% {
    opacity: 0;
    transform: translateX(165%) rotate(10deg);
  }
}

@keyframes pulse-soft {
  0% {
    transform: scale(1);
    box-shadow: 0 16px 30px rgba(12, 42, 29, 0.22);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 18px 36px rgba(12, 42, 29, 0.3);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 16px 30px rgba(12, 42, 29, 0.22);
  }
}

@keyframes scroll-bounce {
  0%,
  100% {
    transform: rotate(45deg) translate(-1px, -1px);
  }
  50% {
    transform: rotate(45deg) translate(2px, 2px);
  }
}

@media(max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 110px 0 54px;
  }

  .hero-shell {
    max-width: 760px;
  }

  .hero-copy {
    max-width: none;
    text-align: center;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero h2 {
    font-size: 22px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-meta {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .buttons {
    justify-content: center;
  }

  .hero-countdown {
    max-width: 600px;
  }

  .about {
    padding: 80px 0;
  }

  .countdown {
    padding: 0 0 48px;
  }

  .countdown-card h2 {
    font-size: 24px;
  }

  .countdown-meta {
    font-size: 13px;
  }

  .countdown-join {
    padding: 14px;
  }

  .info {
    padding: 72px 0;
  }

  .schedule {
    padding: 76px 0 82px;
  }

  .themes {
    padding: 72px 0 78px;
  }

  .judges-mentors {
    padding: 72px 0 78px;
  }

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

  .partners {
    padding: 68px 0 74px;
  }

  .faq {
    padding: 64px 0 70px;
  }
}

@media(max-width: 768px) {
  .hero {
    padding: 96px 0 46px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero h2 {
    font-size: 18px;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    gap: 10px;
  }

  .hero .buttons {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .hero .buttons a {
    width: auto;
    max-width: none;
    flex: 1 1 0;
    min-width: 0;
    font-size: 14px;
    padding: 11px 22px;
  }

  .hero-countdown {
    max-width: 100%;
    margin-top: 22px;
  }

  .hero-scroll {
    width: 52px;
    height: 52px;
    margin-top: 20px;
  }

  .about {
    padding: 66px 0;
  }

  .about p {
    font-size: 17px;
  }

  .countdown {
    padding: 0 0 38px;
  }

  .countdown-card {
    padding: 16px 14px;
  }

  .countdown-card h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .countdown-grid {
    gap: 8px;
  }

  .countdown-value {
    font-size: 28px;
  }

  .countdown-join {
    padding: 13px;
  }

  .countdown-join-grid {
    gap: 8px;
  }

  .countdown-join-card {
    padding: 14px 10px;
  }

  .countdown-join-value {
    font-size: 24px;
  }

  .info {
    padding: 60px 0;
  }

  .info .item {
    margin-bottom: 16px;
  }

  .info .item h1 {
    font-size: 28px;
  }

  .info .item p {
    font-size: 15px;
  }

  .info .item img {
    max-width: 150px;
  }

  .schedule {
    padding: 64px 0 70px;
  }

  .schedule-intro h1 {
    font-size: 32px;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 8px 10px;
    font-size: 13px;
  }

  .schedule-table th:first-child,
  .schedule-table td:first-child {
    width: 120px;
  }

  .schedule-event {
    font-size: 14px;
  }

  .schedule-note {
    font-size: 11px;
  }

  .themes {
    padding: 60px 0 66px;
  }

  .themes-intro h1 {
    font-size: 32px;
  }

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

  .theme-card {
    padding: 20px 18px 18px;
  }

  .theme-card p {
    font-size: 14px;
  }

  .judges-mentors {
    padding: 60px 0 66px;
  }

  .judges-intro h1 {
    font-size: 32px;
  }

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

  .jm-card {
    padding: 15px 13px 14px;
  }

  .jm-avatar {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }

  .jm-summary {
    font-size: 12px;
  }

  .partners {
    padding: 56px 0 62px;
  }

  .partners-group {
    padding: 20px 16px 24px;
  }

  .partners-intro h1 {
    font-size: 32px;
  }

  .partners-grid,
  .partners-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .partner-card {
    padding: 12px 10px;
  }

  .partners-group-header h2 {
    font-size: 24px;
  }

  .partners-group-header p {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .partner-logo {
    min-height: 50px;
  }

  .partner-logo img {
    max-height: 36px;
    max-width: 100px;
  }

  .partner-card h3 {
    font-size: 15px;
  }

  .faq {
    padding: 52px 0 58px;
  }

  .faq h1 {
    font-size: 30px;
  }

  .faq-intro .lead {
    font-size: 15px;
  }

  .faq-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq .question {
    padding: 10px 11px;
  }

  .faq .question .faq-question {
    font-size: 15px;
  }

  .faq .faq-answer p {
    font-size: 13px;
  }

  .footer {
    padding: 48px 0 42px;
  }

  .footer-card {
    flex-direction: column;
    text-align: center;
    padding: 22px 20px;
  }

  .footer-links {
    width: 100%;
    max-width: 320px;
  }
}

@media(max-width: 576px) {
  .hero {
    padding: 86px 0 38px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero h2 {
    font-size: 16px;
  }

  .hero-kicker {
    padding: 7px 12px;
    font-size: 10px;
  }

  .hero .buttons {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .hero .buttons a {
    font-size: 13px;
    padding: 10px 18px;
  }

  .hero-countdown {
    margin-top: 20px;
  }

  .hero-scroll {
    width: 48px;
    height: 48px;
    margin-top: 18px;
  }

  .about {
    padding: 58px 0;
  }

  .countdown {
    padding: 0 0 30px;
  }

  .countdown-card h2 {
    font-size: 17px;
  }

  .countdown-meta {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .countdown-item {
    padding: 9px 6px;
  }

  .countdown-value {
    font-size: 24px;
  }

  .countdown-label {
    font-size: 10px;
  }

  .countdown-join {
    padding: 12px;
  }

  .countdown-join-intro {
    margin-bottom: 10px;
  }

  .countdown-join-copy {
    font-size: 13px;
  }

  .countdown-join-grid {
    grid-template-columns: 1fr;
  }

  .countdown-join-card {
    padding: 13px 12px;
  }

  .countdown-join-value {
    font-size: 22px;
  }

  .info {
    padding: 52px 0;
  }

  .schedule {
    padding: 56px 0 60px;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 7px 8px;
    font-size: 12px;
  }

  .schedule-table th:first-child,
  .schedule-table td:first-child {
    width: 96px;
  }

  .schedule-event {
    font-size: 13px;
  }

  .schedule-note {
    font-size: 11px;
  }

  .themes {
    padding: 52px 0 56px;
  }

  .judges-mentors {
    padding: 52px 0 56px;
  }

  .judges-intro h1 {
    font-size: 28px;
  }

  .judges-mentors-grid {
    grid-template-columns: 1fr;
  }

  .jm-card {
    padding: 16px 14px;
  }

  .jm-summary {
    font-size: 13px;
  }

  .themes-intro h1 {
    font-size: 28px;
  }

  .theme-card {
    padding: 18px 16px;
  }

  .theme-card p {
    font-size: 14px;
  }

  .partners {
    padding: 48px 0 52px;
  }

  .partners-group {
    padding: 16px 12px 18px;
  }

  .partners-grid {
    gap: 8px;
  }

  .partner-card {
    padding: 12px 8px;
    gap: 8px;
  }

  .partner-badge {
    font-size: 9px;
    letter-spacing: 1px;
    padding: 4px 8px;
  }

  .partner-logo {
    min-height: 48px;
    border-radius: 12px;
  }

  .partner-logo img {
    max-height: 32px;
    max-width: 92px;
  }

  .partner-card h3 {
    font-size: 14px;
  }

  .faq {
    padding: 44px 0 48px;
  }

  .faq .question {
    padding: 9px 10px;
  }

  .faq .question .faq-question {
    font-size: 15px;
  }

  .faq .faq-answer p {
    font-size: 13px;
    line-height: 1.45em;
  }

  .footer-card {
    padding: 20px 18px;
  }
}

@media(max-width: 420px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero h2 {
    font-size: 15px;
  }

  .countdown-value {
    font-size: 20px;
  }

  .schedule-table th,
  .schedule-table td {
    font-size: 12px;
  }

  .schedule-table th:first-child,
  .schedule-table td:first-child {
    width: 88px;
  }

  .theme-card {
    padding: 16px 15px;
  }

  .jm-card {
    padding: 16px 15px;
  }

  .jm-avatar {
    width: 52px;
    height: 52px;
    font-size: 16px;
  }

  .partner-card {
    padding: 10px 8px;
  }
}

@media(min-width: 1200px) {
  .hero h1 {
    font-size: 84px;
  }

  .hero h2 {
    font-size: 26px;
  }

  .about p {
    font-size: 19px;
  }

  .info .item h1 {
    font-size: 34px;
  }

  .schedule-intro h1 {
    font-size: 42px;
  }

  .themes-intro h1 {
    font-size: 42px;
  }

  .judges-intro h1 {
    font-size: 42px;
  }

  .partners-intro h1 {
    font-size: 42px;
  }
}
