* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #046a38 0%, #0a8a4a 50%, #046a38 100%);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
}

/* Floating background shapes representing the "5 pillars" */
.bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pillar {
  position: absolute;
  bottom: -10%;
  width: 6vw;
  min-width: 36px;
  max-width: 70px;
  height: 40vh;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  animation: float 9s ease-in-out infinite;
}

.p1 { left: 8%;  height: 34vh; animation-delay: 0s;   }
.p2 { left: 26%; height: 46vh; animation-delay: 1.2s; }
.p3 { left: 48%; height: 30vh; animation-delay: 2.4s; }
.p4 { left: 68%; height: 42vh; animation-delay: 0.6s; }
.p5 { left: 86%; height: 38vh; animation-delay: 1.8s; }

@keyframes float {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50%      { transform: translateY(-3vh) scaleY(1.03); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 2rem;
  max-width: 42rem;
  animation: riseIn 0.8s ease-out both;
}

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

.eyebrow {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
}

.emoji {
  display: inline-block;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  margin-bottom: 0.5rem;
  animation: bounce 2.4s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-6px) rotate(-4deg); }
  75%      { transform: translateY(-2px) rotate(4deg); }
}

h1 {
  margin: 0 0 0.75rem;
  color: #ffffff;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.highlight {
  background: linear-gradient(90deg, #ffffff, #d7ffe9, #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.tagline {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
}

.contact {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(0.85rem, 1.6vw, 0.95rem);
}

.contact a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.contact a:hover,
.contact a:focus-visible {
  border-color: #ffffff;
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  body,
  .pillar,
  .wrap,
  .emoji,
  .highlight {
    animation: none !important;
  }
}
