
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #f8fafc;
  font-size: 18px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-family: 'Crimson Text', 'Times New Roman', serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  color: #1a202c;
  letter-spacing: -0.025em;
  font-style: italic;
}

h2 {
  font-family: 'Crimson Text', 'Times New Roman', serif;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  color: #1a202c;
  letter-spacing: -0.015em;
}

h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: #2d3748;
  letter-spacing: -0.005em;
}

p {
  margin-bottom: 1.75rem;
  color: #4a5568;
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
}

strong, b {
  font-weight: 600;
  color: #2d3748;
}

.lead {
  font-size: 1.375rem;
  line-height: 1.6;
  color: #2d3748;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

/* Emotional blockquote for special emphasis */
.quote {
  font-family: 'Crimson Text', serif;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.4;
  color: #4a5568;
  border-left: 3px solid #2b6cb0;
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* Navigation - Premium foundation style */
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.logo:hover img {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 3rem;
}

.nav-links a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #2d5016;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 1px;
  background: #2d5016;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #2c3e50;
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Main container - Premium foundation width */
.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections - Premium visual hierarchy with layered backgrounds */
.section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.section:nth-child(even) {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.section:first-child {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  padding-top: 9rem;
}

/* Hero section - Editorial foundation introduction */
.hero-section {
  padding: 9rem 0 7rem;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  text-align: center;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(45, 80, 22, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(43, 108, 176, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-section .container {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: 400;
  color: #1a202c;
  margin-bottom: 3rem;
  letter-spacing: -0.025em;
  font-style: italic;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-section .lead {
  font-size: 1.375rem;
  color: #2d3748;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-section p {
  font-size: 1.125rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2rem;
  font-weight: 400;
}

/* Process section - Story-driven emotional timeline */
.process-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 80, 22, 0.02) 0%, rgba(43, 108, 176, 0.02) 100%);
  pointer-events: none;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, rgba(45, 80, 22, 0.2) 0%, rgba(45, 80, 22, 0.4) 50%, rgba(45, 80, 22, 0.2) 100%);
  z-index: 1;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(45, 80, 22, 0.1);
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 2.5rem 1.5rem;
  margin: 0 1rem;
  border-radius: 8px;
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #2d5016 0%, #1a3520 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 auto 2rem;
  position: relative;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  font-family: 'Inter', sans-serif;
}

.step p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* CTA section - Emotional decision moment */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2d5016 0%, #1a3520 100%);
  color: white;
  text-align: center;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section .container {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: white;
  letter-spacing: -0.015em;
  font-style: italic;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cta-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 400;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons - Premium emotional design */
.btn {
  display: inline-block;
  padding: 1.5rem 3.5rem;
  background: linear-gradient(135deg, #2d5016 0%, #1a3520 100%);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.3);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover,
.btn:focus {
  background: linear-gradient(135deg, #1a3520 0%, #0f2414 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.5);
}

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

.btn-secondary {
  background: transparent;
  color: #2d5016;
  border: 2px solid #2d5016;
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #2d5016;
  color: white;
  box-shadow: 0 4px 16px rgba(45, 80, 22, 0.3);
}

/* Content blocks - Premium foundation layout */
.content-block {
  max-width: 720px;
  margin: 0 auto;
}

.content-block h2 {
  text-align: left;
  margin-bottom: 3rem;
  font-size: 2.75rem;
  font-weight: 400;
  color: #1a202c;
  letter-spacing: -0.015em;
  position: relative;
}

.content-block h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #2d5016 0%, #2b6cb0 100%);
  border-radius: 2px;
}

.content-block h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  color: #2d3748;
  letter-spacing: -0.005em;
}

.content-block p {
  margin-bottom: 2.25rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4a5568;
  font-weight: 400;
}

/* Prize cards - Premium emotional design */
.prize-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 4rem 0;
}

.prize-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.prize-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2d5016 0%, #2b6cb0 100%);
}

.prize-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.prize-card h3 {
  color: #2d5016;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.prize-card .prize-value {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 1.5rem;
  font-family: 'Crimson Text', serif;
  font-style: italic;
}

.prize-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
}

/* Lists - Premium foundation style */
.bullet-list {
  margin: 2.5rem 0;
  padding-left: 0;
}

.bullet-list li {
  margin-bottom: 1.25rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4a5568;
}

.bullet-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #2d5016;
  font-weight: bold;
  font-size: 1.2rem;
  top: 0.1rem;
}

/* Legal block - Official foundation documentation */
.legal {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 2px solid #e2e8f0;
  color: #4a5568;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  position: relative;
}

.legal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #2d5016 0%, #2b6cb0 100%);
  border-radius: 1px;
}

.legal p {
  margin: 0.5rem 0;
  color: #4a5568;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #b8c5d1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

/* Images - Local assets only, responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  filter: saturate(0.9) contrast(1.05);
}

/* Icon containers - Font Awesome icons */
.icon-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3.5rem 0;
  padding: 3rem;
}

.icon-container i {
  font-size: 5rem;
  color: #2d5016;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.icon-container:hover i {
  opacity: 1;
  transform: scale(1.1);
  color: #1a3520;
}

/* Responsive design */
@media (max-width: 768px) {
  .container, .container-wide {
    padding: 0 1.5rem;
  }

  .nav {
    padding: 0 1.5rem;
    height: 70px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 3rem;
    gap: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-section {
    padding: 6rem 0 4rem;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  .timeline {
    flex-direction: column;
    gap: 2rem;
  }

  .timeline::before {
    display: none;
  }

  .step {
    margin: 0;
    padding: 1.5rem;
  }

  .process-section {
    padding: 4rem 0;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .section, .content-section {
    padding: 4rem 0;
  }

  .content-block h2 {
    font-size: 2rem;
  }

  .prize-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .icon-container {
    padding: 2rem;
  }

  .icon-container i {
    font-size: 4rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-image img {
    height: 200px;
  }

  .section {
    padding: 2rem 0;
  }

  .icon-container {
    padding: 1.5rem;
  }

  .icon-container i {
    font-size: 3rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus states */
.nav-links a:focus,
.btn:focus {
  outline: 2px solid #2c5530;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .footer,
  .mobile-menu-btn {
    display: none;
  }

  .section {
    page-break-inside: avoid;
  }
}
