:root {
  --cass-green: #2C4233;
  --cass-pink: #F1979B;
  --cass-purple: #6D2D59;
  --cass-yellow: #F0D24B;
  --cass-orange: #F97C00;
  --cream-050: #FBF6EE;
  --font-display: "Bagel Fat One", system-ui, sans-serif;
  --font-sans: "Roboto", system-ui, -apple-system, sans-serif;
  --gutter: 32px;
  --shadow-md: 0 14px 30px rgba(44,66,51,0.28);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: var(--font-sans); background: var(--cass-green); color: #fff; -webkit-font-smoothing: antialiased; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--cass-green);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* decorative blobs */
.blob { position: absolute; z-index: 1; }
.blob--purple {
  top: -90px; right: -70px; width: 320px; height: 320px;
  border-radius: 50%; background: var(--cass-purple); opacity: 0.55;
  animation: floaty 9s var(--ease-out) infinite;
}
.blob--orange {
  bottom: -120px; left: -80px; width: 380px; height: 380px;
  border-radius: 46% 54% 60% 40% / 55% 45% 55% 45%;
  background: var(--cass-orange); opacity: 0.28;
  animation: floaty 11s var(--ease-out) infinite;
}
.blob--yellow {
  top: 38%; left: 8%; width: 70px; height: 70px;
  border-radius: 50%; background: var(--cass-yellow); opacity: 0.9;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* top bar */
.topbar {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 28px var(--gutter);
}
.logo { height: 52px; display: block; }

.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
}
.eyebrow--pink { color: var(--cass-pink); }

/* hero */
.hero__inner {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 24px;
  padding: 40px var(--gutter) 24px;
}
.pill {
  display: inline-block; background: var(--cass-pink); color: var(--cass-green);
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 999px;
}
.display {
  margin: 0; max-width: 14ch;
  font-family: var(--font-display); font-weight: 400; color: #fff;
  font-size: clamp(3.25rem, 1.5rem + 8vw, 8rem); line-height: 0.92; letter-spacing: 0.01em;
}
.accent { color: var(--cass-yellow); }
.lead {
  margin: 0; max-width: 560px; font-size: 19px; line-height: 1.7; color: var(--cream-050);
}
.cta {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 8px;
  background: var(--cass-orange); color: var(--cass-green);
  font-size: 18px; font-weight: 700; text-decoration: none;
  padding: 16px 30px; border-radius: 999px; box-shadow: var(--shadow-md);
  transition: transform 180ms var(--ease-out), filter 180ms var(--ease-out);
}
.cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
.cta:active { transform: translateY(0) scale(0.98); }

/* footer info */
.info {
  position: relative; z-index: 2;
  border-top: 1.5px solid rgba(241,151,155,0.35);
  padding: 24px var(--gutter) 34px;
  display: flex; flex-wrap: wrap; gap: 32px 64px; justify-content: center; text-align: center;
}
.info__col { display: flex; flex-direction: column; gap: 6px; }
.info__text { font-size: 16px; line-height: 1.5; color: #fff; }

a { color: var(--cass-yellow); }
a:hover { color: #fff; }
.info__text a { color: #fff; }
.info__text a:hover { color: var(--cass-yellow); }

@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
  .cta { transition: none; }
}
