:root {
  --sky: #d6ecf7;
  --parchment: #faf2d9;
  --parchment-dark: #edddb5;
  --forest: #2c7f57;
  --moss: #8cb94a;
  --berry: #99402b;
  --sunshine: #ed9e2b;
  --lagoon: #389bd1;
  --mint: #52b386;
  --ink: #2e332f;
  --paper: #fffdf8;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", "Avenir Next", sans-serif;
  color: var(--ink);
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(56, 155, 209, 0.28), transparent 46%),
    radial-gradient(circle at 82% 24%, rgba(237, 158, 43, 0.25), transparent 40%),
    linear-gradient(145deg, var(--sky), var(--parchment) 50%, var(--parchment-dark));
  line-height: 1.5;
}

.sky-glow {
  position: fixed;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.sky-glow-1 {
  width: 300px;
  height: 300px;
  border-radius: 45% 55% 64% 36% / 45% 33% 67% 55%;
  background: rgba(82, 179, 134, 0.34);
  top: -90px;
  left: -40px;
}

.sky-glow-2 {
  width: 340px;
  height: 340px;
  border-radius: 62% 38% 39% 61% / 53% 44% 56% 47%;
  background: rgba(153, 64, 43, 0.2);
  bottom: -120px;
  right: -60px;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--berry);
  font-family: "Baloo 2", "Marker Felt", cursive;
  font-size: 1.7rem;
  font-weight: 800;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 2px solid rgba(44, 127, 87, 0.2);
  box-shadow: 0 8px 18px rgba(44, 127, 87, 0.2);
}

.top-nav {
  display: flex;
  gap: 1rem;
}

.top-nav a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 800;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(44, 127, 87, 0.14);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.5rem 1.2rem 3rem;
}

.hero {
  padding: 1rem 0 1.5rem;
}

.eyebrow {
  font-weight: 800;
  color: var(--lagoon);
  margin: 0;
  letter-spacing: 0.03em;
}

h1,
h2,
h3 {
  font-family: "Baloo 2", "Marker Felt", cursive;
  margin: 0;
  line-height: 1.08;
}

h1 {
  margin-top: 0.35rem;
  font-size: clamp(2.1rem, 6vw, 4rem);
  color: var(--berry);
  max-width: 15ch;
}

.hero-copy {
  margin-top: 0.9rem;
  max-width: 58ch;
  font-size: clamp(1.02rem, 2.1vw, 1.2rem);
}

.hero-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 800;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 0.72rem 1.1rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--sunshine), #f6be52);
  color: #3a2b11;
  box-shadow: 0 8px 16px rgba(237, 158, 43, 0.32);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.55);
  color: var(--forest);
  border-color: rgba(44, 127, 87, 0.3);
}

.section {
  margin-top: 2.1rem;
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: var(--forest);
}

.section-head p {
  margin: 0.35rem 0 0;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.screen-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(44, 127, 87, 0.2);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(44, 127, 87, 0.13);
  transition: transform 0.22s ease;
}

.screen-card:hover {
  transform: translateY(-4px);
}

.screen-card img {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.screen-card h3 {
  font-size: 1.45rem;
  padding: 0.7rem 0.9rem 1rem;
  color: var(--berry);
}

.tilt-1 {
  transform: rotate(-1.3deg);
}

.tilt-2 {
  transform: rotate(0.8deg);
}

.tilt-3 {
  transform: rotate(-0.6deg);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature {
  border-radius: 20px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(153, 64, 43, 0.15);
}

.feature h3 {
  font-size: 1.35rem;
  color: var(--berry);
}

.feature p {
  margin: 0.45rem 0 0;
}

.cta-banner {
  margin-top: 2.2rem;
  border-radius: 24px;
  padding: 1.4rem;
  background:
    linear-gradient(120deg, rgba(44, 127, 87, 0.95), rgba(56, 155, 209, 0.95)),
    var(--forest);
  color: #f6fbff;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(44, 127, 87, 0.25);
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  max-width: 22ch;
}

.cta-banner .btn-primary {
  box-shadow: none;
}

.site-footer {
  max-width: 1120px;
  margin: 2rem auto 0;
  padding: 1.1rem 1.2rem 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4d5e56;
  gap: 0.8rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 700;
}

.privacy-page {
  background:
    radial-gradient(circle at 88% 8%, rgba(82, 179, 134, 0.16), transparent 34%),
    radial-gradient(circle at 6% 62%, rgba(56, 155, 209, 0.14), transparent 34%),
    linear-gradient(160deg, var(--parchment), #fffef9);
}

.policy-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.2rem 1.2rem 2.4rem;
}

.policy-card {
  background: var(--paper);
  border-radius: 24px;
  padding: clamp(1.1rem, 2.8vw, 2rem);
  border: 1px solid rgba(44, 127, 87, 0.17);
  box-shadow: 0 12px 26px rgba(44, 127, 87, 0.12);
}

.policy-card h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--berry);
}

.policy-meta {
  margin: 0.4rem 0 1.1rem;
  font-weight: 700;
  color: #617469;
}

.policy-card h2 {
  margin-top: 1.25rem;
  color: var(--forest);
  font-size: 1.4rem;
}

.policy-card p {
  margin: 0.45rem 0 0;
}

.policy-card a {
  color: #24618f;
}

.policy-back {
  margin-top: 1.4rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .screen-grid,
  .features {
    grid-template-columns: 1fr;
  }

  .tilt-1,
  .tilt-2,
  .tilt-3 {
    transform: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .top-nav {
    flex-wrap: wrap;
  }

  .cta-banner {
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
