:root {
  --dark: #013369;
  --dark-2: #0B2A54;
  --green: #1F4E9C;
  --gold: #D50A0A;
  --orange: #D50A0A;
  --white: #FFFFFF;
  --brown: #7B4B27;
  --silver: #C9CDD3;
  --bronze: #CD7F32;
  --red: #D50A0A;
  --muted: #56636B;
  --text-dark: #013369;
  --shadow: 0 10px 24px rgba(1, 51, 105, 0.16);
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', 'Calibri', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-weight: 800;
  margin: 0 0 0.4em;
  line-height: 1.15;
}

p { margin: 0 0 1em; }

a { color: inherit; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAV ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand svg { flex: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.82);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.nav-links a.active { background: var(--red); color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 24px 18px;
    display: none;
    gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 10px; border-radius: 10px; }
}

/* ---------- HERO ---------- */
.hero {
  padding: 72px 0 56px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero .container { position: relative; z-index: 2; }

.hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }

.hero p.lead {
  font-size: 1.15rem;
  max-width: 640px;
  font-weight: 500;
  opacity: 0.95;
}

.hero-dark { background: var(--dark); color: var(--white); }
.hero-green { background: var(--green); color: var(--white); }
.hero-gold { background: var(--red); color: var(--white); }
.hero-orange { background: var(--dark); color: var(--white); }

.hero.center { text-align: center; }
.hero.center .container { display: flex; flex-direction: column; align-items: center; }
.hero.center p.lead { max-width: 560px; }

/* ---------- SECTIONS ---------- */
main section {
  padding: 56px 0;
}

main section.alt { background: #EEF2F8; }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 640px;
}

/* ---------- GRID / CARDS ---------- */
.grid {
  display: grid;
  gap: 20px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.card-dark { background: var(--dark); color: var(--white); }
.card-gold { background: var(--red); color: var(--white); }
.card-center { text-align: center; }

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  flex: none;
}

.badge-gold { background: var(--red); color: var(--white); }

.stat-item {
  text-align: center;
}

.stat-item .badge { margin: 0 auto 14px; }

.stat-item h4 { font-size: 1rem; margin: 0; }

.stat-big {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--text-dark);
}

.stat-label {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- PILLS ---------- */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.pill {
  background: var(--dark);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 1rem;
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: stretch;
  position: relative;
}

.step {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  text-align: center;
}

.step .badge { margin: 0 auto 18px; width: 60px; height: 60px; font-size: 1.3rem; }

.step h3 { font-size: 1.15rem; }

.step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- CHECKLIST ---------- */
.checklist { display: flex; flex-direction: column; gap: 14px; }

.check-row {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 24px;
  font-weight: 700;
}

.check-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  font-weight: 800;
}

/* ---------- PODIUM ---------- */
.podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.podium-col {
  width: 190px;
  border-radius: var(--radius) var(--radius) 8px 8px;
  padding: 20px 12px 24px;
  text-align: center;
  color: var(--text-dark);
}

.podium-col .place { font-weight: 700; letter-spacing: 0.12em; font-size: 0.85rem; }
.podium-col .amount { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 2.2rem; margin: 6px 0; }
.podium-col .extra { font-weight: 700; font-size: 0.85rem; }

.podium-1 { background: var(--red); color: var(--white); height: 210px; align-self: flex-end; }
.podium-2 { background: var(--silver); height: 175px; align-self: flex-end; }
.podium-3 { background: var(--bronze); height: 150px; align-self: flex-end; color: var(--white); }

.callout {
  margin: 28px auto 0;
  max-width: 720px;
  text-align: center;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  padding: 16px 24px;
  border-radius: 999px;
}

/* ---------- TABLE (standings placeholder) ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }

table { width: 100%; border-collapse: collapse; background: var(--white); }

th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid #EDEDED; }

th { background: var(--dark); color: var(--white); font-family: 'Poppins', sans-serif; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }

tr:last-child td { border-bottom: none; }

.placeholder-note {
  background: #E9EEF7;
  border: 1px dashed var(--red);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 32px 0;
  text-align: center;
  font-size: 0.9rem;
}

footer strong { color: var(--red); }

/* ---------- UTIL ---------- */
.chip {
  display: inline-block;
  background: rgba(0,0,0,0.06);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.strike { text-decoration: line-through; opacity: 0.5; }

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
