:root {
  --sky: #c9f0ff;
  --sky-deep: #87d8ff;
  --grass: #d9f4bb;
  --sun: #ffd86e;
  --ink: #1f3650;
  --muted: #4f6881;
  --card: rgba(255, 255, 255, 0.74);
  --line: rgba(34, 86, 112, 0.12);
  --shadow: 0 26px 60px rgba(74, 129, 159, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Nunito", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 255, 255, 0.72), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(255, 248, 214, 0.8), transparent 26%),
    linear-gradient(180deg, var(--sky), var(--sky-deep) 45%, #9ae0d7 100%);
}

.stage {
  min-height: 100vh;
  padding: 24px;
  display: grid;
  place-items: center;
}

.hero {
  width: min(840px, 100%);
  padding: 38px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(242, 252, 255, 0.75)),
    linear-gradient(90deg, rgba(255, 216, 110, 0.25), rgba(217, 244, 187, 0.25));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 180px;
  height: 180px;
  right: -40px;
  top: -50px;
  background: rgba(255, 216, 110, 0.45);
}

.hero::after {
  width: 240px;
  height: 240px;
  left: -80px;
  bottom: -120px;
  background: rgba(217, 244, 187, 0.54);
}

.eyebrow {
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2f7ba2;
}

h1 {
  margin: 0;
  font-family: "Baloo 2", cursive;
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.92;
}

.lead {
  margin: 18px 0 0;
  max-width: 38rem;
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--muted);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, #ffb14f, #ff8c55);
  color: #fffdf8;
  box-shadow: 0 14px 26px rgba(255, 140, 85, 0.28);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1px solid rgba(34, 86, 112, 0.12);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.tile {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(34, 86, 112, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.sun {
  background: linear-gradient(180deg, rgba(255, 245, 205, 0.95), rgba(255, 234, 165, 0.85));
}

.cloud {
  background: linear-gradient(180deg, rgba(246, 252, 255, 0.95), rgba(229, 247, 255, 0.88));
}

.meadow {
  background: linear-gradient(180deg, rgba(240, 255, 231, 0.95), rgba(217, 244, 187, 0.88));
}

.tile-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2f7ba2;
}

.tile strong {
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .stage {
    padding: 16px;
  }

  .hero {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
