* { 
  box-sizing: border-box; 
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  color: #1a2332;
  background: #faf8f4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(165deg, #1a2f48 0%, #2a4160 100%);
  color: #ffffff;
  padding: 100px 0 90px;
  position: relative;
  border-bottom: 3px solid #c9a961;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9a961;
  font-weight: 400;
  margin-bottom: 16px;
}

.hero h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.kicker {
  color: #d4b975;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 36px;
  font-style: italic;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.92);
  max-width: 680px;
  margin-bottom: 20px;
}

.hero strong {
  color: #d4b975;
  font-weight: 600;
}

.hero strong {
  color: #d4b975;
  font-weight: 600;
}

.win-statement {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 28px;
}

/* SECTIONS */
.section {
  padding: 80px 0;
  background: #ffffff;
  border-bottom: 1px solid #e8e4dc;
}

.section.alt {
  background: #faf8f4;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 48px;
  color: #0d1f35;
  letter-spacing: -0.01em;
  line-height: 1.2;
  position: relative;
  padding-bottom: 20px;
}

h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: #c9a961;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 12px;
  color: #0d1f35;
  letter-spacing: -0.01em;
}

p {
  max-width: 720px;
  margin-bottom: 20px;
  color: #2a3544;
  font-size: 1.05rem;
  line-height: 1.8;
}

.emphasis {
  font-weight: 600;
  color: #0d1f35;
  font-size: 1.15rem;
  border-left: 3px solid #c9a961;
  padding-left: 24px;
  margin: 36px 0;
  display: block;
}

.intro {
  font-size: 1.2rem;
  margin-bottom: 48px;
  color: #4a5568;
  font-style: italic;
}

/* PILLS */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 48px;
}

.pill-row span {
  border: 1.5px solid #c9a961;
  border-radius: 4px;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #0d1f35;
  background: rgba(201, 169, 97, 0.05);
  transition: all 0.3s ease;
}

.pill-row span:hover {
  background: rgba(201, 169, 97, 0.15);
  border-color: #b39654;
}

/* MASCOT CARDS */
.mascots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.mascot-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 32px;
  border: 1px solid #e8e4dc;
  transition: all 0.3s ease;
}

.mascot-card:hover {
  border-color: #c9a961;
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.15);
}

.mascot-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin: 0 auto 24px;
  display: block;
}

.mascot-card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.mascot-card p {
  margin-bottom: 0;
}

/* STEPS */
.steps {
  max-width: 800px;
  margin-top: 48px;
  counter-reset: step-counter;
  list-style: none;
  padding-left: 0;
}

.steps li {
  margin-bottom: 42px;
  position: relative;
  padding-left: 80px;
  counter-increment: step-counter;
}

.steps li:before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  border: 2px solid #c9a961;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #c9a961;
  background: #faf8f4;
}

.steps li strong {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: #0d1f35;
  display: block;
  margin-bottom: 8px;
}

/* CTA SECTION */
.cta {
  background: linear-gradient(165deg, #1a2f48 0%, #2a4160 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-top: 3px solid #c9a961;
}

.cta h2 {
  color: #ffffff;
}

.cta h2:after {
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
}

.cta p {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.85);
}

.button {
  display: inline-block;
  margin: 40px 0;
  padding: 16px 44px;
  background: #c9a961;
  color: #0d1f35;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  border: 2px solid #c9a961;
}

.button:hover {
  background: transparent;
  color: #c9a961;
  border-color: #c9a961;
}

.closing {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  background: #0a1420;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 32px 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  .section {
    padding: 70px 0;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  .steps li {
    padding-left: 0;
    padding-top: 60px;
  }

  .steps li:before {
    left: 0;
    top: 0;
  }
}
