:root {
  --bg-green: #d7f87f;
  --bg-gradient-start: #fff6a8;
  --bg-gradient-end: #d5ffd0;
  --text-dark: #342a1f;
  --accent-orange: #ff9d2e;
  --accent-green: #2ecb76;
  --feature-green: #e2ffd8;
  --feature-yellow: #fff1c4;
  --feature-pink: #ffe2f3;
  font-size: 16px;
}

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

body {
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Baloo 2', cursive;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}

.bg-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -2;
}

.sun {
  position: absolute;
  top: 5vh;
  right: 10vw;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #ffe66c 0%, #ffcf33 70%, rgba(255, 207, 51, 0) 100%);
  border-radius: 50%;
  filter: blur(0.5px);
}

.cloud {
  position: absolute;
  top: 12vh;
  width: 220px;
  height: 80px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 40px;
  box-shadow:
    -60px 10px 0 rgba(255, 255, 255, 0.8),
    60px 15px 0 rgba(255, 255, 255, 0.75);
}

.cloud-left {
  left: 5vw;
  animation: drift-left 40s ease-in-out infinite;
}

.cloud-right {
  right: 8vw;
  animation: drift-right 50s ease-in-out infinite;
}

@keyframes drift-left {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(30px); }
}

@keyframes drift-right {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-40px); }
}

.hill {
  position: absolute;
  bottom: -40vh;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle at 50% 50%, rgba(46, 203, 118, 0.85) 0%, rgba(46, 203, 118, 0) 70%);
  border-radius: 50%;
  z-index: -1;
}

.hill-left {
  left: -20vw;
}

.hill-right {
  right: -25vw;
}

.hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 96px 24px 48px;
  text-align: center;
  animation: hero-pop 0.95s ease-out 0.12s both;
}

.logo {
  width: 200px;
  max-width: 60%;
  margin: 0 auto 32px;
  display: block;
  animation: logo-bob 4.5s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-button {
  background: linear-gradient(135deg, var(--accent-orange), #ffb347);
  color: #3f2a10;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(255, 157, 46, 0.35);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(255, 157, 46, 0.42);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-note {
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  padding: 6px 16px;
}

main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 120px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 30px rgba(34, 79, 52, 0.12);
  transform-origin: center;
  animation: card-rise 0.9s ease-out both;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(34, 79, 52, 0.16);
}

.feature-card:nth-child(1) {
  background: linear-gradient(160deg, var(--feature-green), rgba(255, 255, 255, 0.9));
}

.feature-card:nth-child(2) {
  background: linear-gradient(160deg, var(--feature-yellow), rgba(255, 255, 255, 0.9));
  animation-delay: 0.12s;
}

.feature-card:nth-child(3) {
  background: linear-gradient(160deg, var(--feature-pink), rgba(255, 255, 255, 0.9));
  animation-delay: 0.24s;
}

.video-section {
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  padding: 48px 32px;
  box-shadow: 0 16px 36px rgba(40, 90, 52, 0.14);
}

.video-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.video-section p {
  margin: 0 auto 28px;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(25, 58, 35, 0.22);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.feature-card h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.feature-card p {
  line-height: 1.55;
}

.pillars {
  text-align: center;
}

.pillars h2 {
  font-size: 2.1rem;
  margin-bottom: 32px;
}

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

.pillars-grid article {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 24px rgba(36, 114, 67, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.pillars-grid h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.pillars-grid p {
  line-height: 1.6;
}

.partners {
  text-align: center;
  padding: 24px 0 8px;
}

.partners-title {
  text-transform: uppercase;
  letter-spacing: 2.8px;
  font-size: 0.95rem;
  color: rgba(52, 42, 31, 0.6);
  margin-bottom: 18px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 6vw, 64px);
  flex-wrap: wrap;
}

.partner-logos figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(32, 35, 60, 0.9);
  padding: 32px 32px;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(18, 40, 28, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 240px;
  min-height: 160px;
  text-align: center;
}

.partner-logos img {
  width: clamp(140px, 20vw, 200px);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.partner-logos figcaption {
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}

.callout {
  background: linear-gradient(140deg, var(--accent-green) 0%, #7bffa8 100%);
  color: #0f3d25;
  border-radius: 32px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(46, 203, 118, 0.3);
  position: relative;
  animation: callout-pulse 6s ease-in-out infinite;
}

.callout h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.callout p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.callout .cta-button.secondary {
  background: #fff;
  color: var(--accent-green);
  box-shadow: 0 10px 24px rgba(15, 61, 37, 0.18);
}

.callout .cta-button.secondary:hover {
  box-shadow: 0 16px 30px rgba(15, 61, 37, 0.24);
}

footer {
  text-align: center;
  padding: 32px 16px 48px;
  font-size: 0.95rem;
  color: rgba(52, 42, 31, 0.8);
}

@media (max-width: 768px) {
  .hero {
    padding-top: 72px;
  }

  .logo {
    width: 150px;
  }

  .callout {
    padding: 40px 20px;
  }

  footer {
    padding-bottom: 32px;
  }

  .video-section {
    padding: 40px 20px;
  }

  .partner-logos figure {
    min-width: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes hero-pop {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }
  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logo-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes card-rise {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes callout-pulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 18px 40px rgba(46, 203, 118, 0.26);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 26px 52px rgba(46, 203, 118, 0.38);
  }
}
