:root {
  --green: #f59e0b;
  --green-light: #fbbf24;
  --dark: #0b1410;
  --text-light: #f3f7f4;
  --text-muted: #d7e3db;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-light);
  background: url('background.jpeg') center center / cover no-repeat fixed;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.72) 55%, rgba(15, 23, 42, 0.88) 100%);
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 24px;
}

.header {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  padding: 12px 0 24px;
}

.logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.35));
}

.hero {
  flex: 1;
  width: 100%;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 28px;
  padding: 40px 0;
  animation: fadeUp 0.9s ease both;
}

h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.25;
  font-weight: 800;
  text-wrap: balance;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

h1 span {
  display: block;
  background: linear-gradient(90deg, var(--green-light), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 6px;
}

.lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 700px;
  font-weight: 400;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.pillar {
  padding: 12px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform 0.25s ease, background 0.25s ease;
}

.pillar:hover {
  transform: translateY(-3px);
  background: rgba(245, 158, 11, 0.18);
}

.footer {
  width: 100%;
  text-align: center;
  padding: 20px 0 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  opacity: 0.75;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .logo {
    height: 42px;
  }

  .hero {
    gap: 20px;
    padding: 20px 0;
  }

  .pillars {
    gap: 10px;
  }

  .pillar {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}
