:root {
  --cream: #faf8ef;
  --cream-deep: #f1eddc;
  --paper: #fffdf5;
  --green: #82b63e;
  --green-bright: #9dcc52;
  --green-pale: #e5efc7;
  --green-soft: #c9df91;
  --green-mid: #4f8429;
  --green-dark: #183f18;
  --green-ink: #0d2f14;
  --pond: #d9edb7;
  --water: #ecf5d2;
  --yellow: #e6cf65;
  --sky: #f8f7e9;
  --line: rgba(45, 92, 30, 0.24);
  --shadow: 0 18px 50px rgba(36, 74, 27, 0.13);
  --shadow-small: 0 9px 24px rgba(36, 74, 27, 0.12);
  --radius-xl: 44px;
  --radius-lg: 30px;
  --radius-md: 21px;
  --page: min(1180px, calc(100% - 40px));
  --display: "Arial Rounded MT Bold", "Trebuchet MS", Arial, sans-serif;
  --body: "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--green-dark);
  background:
    radial-gradient(circle at 9% 5%, rgba(194, 223, 131, 0.22), transparent 18rem),
    radial-gradient(circle at 92% 34%, rgba(226, 237, 186, 0.55), transparent 22rem),
    var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.3;
  background-image: radial-gradient(rgba(35, 75, 28, 0.09) 0.7px, transparent 0.7px);
  background-size: 9px 9px;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #dbb942;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  color: var(--paper);
  background: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 100;
  width: var(--page);
  min-height: 68px;
  margin: 14px auto -82px;
  padding: 9px 14px 9px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1.5px solid rgba(76, 125, 42, 0.48);
  border-radius: 24px;
  background: rgba(255, 253, 245, 0.86);
  box-shadow: 0 8px 28px rgba(45, 77, 32, 0.08);
  backdrop-filter: blur(14px);
  transition: box-shadow 250ms ease, background 250ms ease, transform 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 245, 0.96);
  box-shadow: 0 10px 36px rgba(34, 71, 27, 0.17);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-ink);
  font-family: var(--display);
  font-weight: 1000;
  text-decoration: none;
}

.brand-name {
  font-size: 1.7rem;
  letter-spacing: -0.055em;
}

.brand-frog {
  position: relative;
  width: 44px;
  height: 44px;
  overflow: hidden;
  flex: 0 0 44px;
  border: 2px solid var(--green-dark);
  border-radius: 50%;
  background: #faf8f5;
}

.brand-frog img {
  position: absolute;
  top: -5px;
  left: -4px;
  width: 51px;
  max-width: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  min-height: 40px;
  padding: 10px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(76, 125, 42, 0.52);
  border-radius: 14px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.nav-link:hover {
  transform: translateY(-2px);
  color: var(--paper);
  background: var(--green-dark);
}

[data-blub-link][aria-disabled="true"] {
  cursor: not-allowed;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 156px 0 96px;
  overflow: hidden;
  isolation: isolate;
  border-bottom-right-radius: 76px;
  border-bottom-left-radius: 76px;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.32) 0 50%, transparent 50%),
    linear-gradient(to bottom, transparent 0 53%, var(--water) 53% 100%);
}

.hero::before {
  position: absolute;
  inset: 53% 0 auto;
  z-index: -1;
  height: 12px;
  content: "";
  opacity: 0.8;
  background: linear-gradient(90deg, transparent 3%, rgba(129, 179, 62, 0.35) 18%, transparent 34%, rgba(129, 179, 62, 0.27) 66%, transparent 92%);
  filter: blur(7px);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
  align-items: center;
  gap: 22px;
}

.hero-copy {
  padding-top: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.75rem;
  font-weight: 1000;
  letter-spacing: 0.18em;
}

.eyebrow span {
  width: 27px;
  height: 3px;
  border-radius: 99px;
  background: var(--green);
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 1000;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero h1 {
  max-width: 8ch;
  color: var(--green-bright);
  font-size: clamp(6.2rem, 11.5vw, 10.5rem);
  -webkit-text-stroke: clamp(2px, 0.28vw, 5px) var(--green-dark);
  text-shadow: 0 9px 0 rgba(72, 115, 37, 0.12);
}

.hero-kicker {
  width: fit-content;
  margin: 10px 0 22px 12px;
  padding: 7px 15px;
  border: 1px solid rgba(83, 133, 46, 0.35);
  border-radius: 999px;
  color: var(--green-ink);
  background: var(--green-pale);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 900;
}

.hero-description {
  max-width: 470px;
  margin: 0 0 26px;
  color: #31592b;
  font-size: clamp(1rem, 1.4vw, 1.17rem);
  line-height: 1.65;
}

.hero-actions,
.final-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 50px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--green-mid);
  border-radius: 16px;
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.025em;
  text-decoration: none;
  box-shadow: 0 6px 0 rgba(49, 89, 36, 0.14);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 0 rgba(49, 89, 36, 0.12);
}

.button:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 2px 0 rgba(49, 89, 36, 0.14);
}

.button-primary {
  color: var(--paper);
  background: var(--green-mid);
}

.button-secondary {
  color: var(--green-dark);
  background: rgba(255, 253, 245, 0.72);
}

.button-secondary:hover {
  color: var(--paper);
  background: var(--green-dark);
}

.contract-card {
  width: min(100%, 510px);
  min-height: 55px;
  margin-top: 18px;
  padding: 7px 8px 7px 12px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 1px dashed rgba(60, 108, 39, 0.55);
  border-radius: 15px;
  background: rgba(255, 253, 245, 0.68);
}

.contract-label {
  padding: 5px 8px;
  border-radius: 8px;
  color: var(--paper);
  background: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
}

.contract-value {
  min-width: 0;
  overflow: hidden;
  color: #3a6232;
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-button {
  min-width: 70px;
  min-height: 39px;
  border: 0;
  border-radius: 10px;
  color: var(--green-dark);
  background: var(--green-pale);
  font-size: 0.73rem;
  font-weight: 1000;
  cursor: pointer;
  transition: transform 160ms ease, color 160ms ease, background 160ms ease;
}

.copy-button:hover {
  color: var(--paper);
  background: var(--green-dark);
}

.copy-button:active {
  transform: scale(0.95);
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.hero-blub {
  position: relative;
  z-index: 4;
  width: min(630px, 110%);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  animation: lazy-float 7s ease-in-out infinite;
}

.hero-blub img {
  width: 100%;
  border-radius: 46%;
}

.hero-blub:hover img {
  transform: rotate(-1deg) translateY(-3px);
}

.hero-blub img {
  transition: transform 350ms ease;
}

.hero-blub.is-poked {
  animation: blub-poke 560ms ease;
}

.sun-spot {
  position: absolute;
  top: 4%;
  right: 3%;
  width: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(225, 237, 178, 0.65);
  filter: blur(2px);
}

.hero-ripple {
  position: absolute;
  z-index: 1;
  bottom: 12%;
  height: 19px;
  border: 3px solid rgba(86, 137, 48, 0.2);
  border-top: 0;
  border-bottom: 0;
  border-radius: 50%;
}

.ripple-one {
  width: 88%;
}

.ripple-two {
  bottom: 9%;
  width: 62%;
}

.lily,
.final-lily {
  position: absolute;
  z-index: 2;
  width: 87px;
  aspect-ratio: 1.7;
  border-radius: 100% 40% 100% 46%;
  background: var(--green-soft);
  box-shadow: inset -10px -7px 0 rgba(77, 125, 42, 0.12), 0 7px 0 rgba(69, 112, 37, 0.08);
  animation: lily-drift 9s ease-in-out infinite;
}

.lily::after,
.final-lily::after {
  position: absolute;
  top: -2px;
  right: 28%;
  width: 25px;
  height: 29px;
  content: "";
  background: var(--water);
  clip-path: polygon(50% 50%, 100% 0, 100% 100%);
}

.lily-one {
  right: 0;
  bottom: 18%;
  transform: rotate(8deg);
}

.lily-two {
  bottom: 4%;
  left: 3%;
  width: 58px;
  animation-delay: -3s;
}

.bubble {
  position: absolute;
  z-index: 3;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(73, 123, 43, 0.45);
  border-radius: 50%;
  opacity: 0;
  animation: bubble-up 6s ease-in infinite;
}

.bubble-one {
  right: 18%;
  bottom: 15%;
}

.bubble-two {
  right: 14%;
  bottom: 16%;
  width: 7px;
  height: 7px;
  animation-delay: -2.4s;
}

.hero-cloud {
  position: absolute;
  z-index: 0;
  width: 160px;
  height: 50px;
  border-radius: 999px;
  background: rgba(223, 237, 183, 0.65);
}

.hero-cloud::before,
.hero-cloud::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  background: inherit;
}

.hero-cloud::before {
  top: -28px;
  left: 22px;
  width: 72px;
  height: 72px;
}

.hero-cloud::after {
  top: -16px;
  right: 15px;
  width: 54px;
  height: 54px;
}

.hero-cloud-one {
  top: 18%;
  left: -33px;
  transform: scale(0.65);
}

.hero-cloud-two {
  top: 14%;
  right: 8%;
  transform: scale(0.5);
}

.reeds {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 120px;
  height: 220px;
}

.reeds-left {
  left: 1%;
}

.reeds-right {
  right: 2%;
  transform: scaleX(-1);
}

.reeds i {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 10px;
  height: 165px;
  border-radius: 100% 0;
  background: var(--green-soft);
  transform-origin: bottom;
  animation: reed-sway 7s ease-in-out infinite;
}

.reeds i::before {
  position: absolute;
  top: -27px;
  left: -6px;
  width: 22px;
  height: 45px;
  border-radius: 50%;
  content: "";
  background: #b59a51;
}

.reeds i:nth-child(2) {
  left: 24%;
  height: 125px;
  transform: rotate(-12deg);
  animation-delay: -2s;
}

.reeds i:nth-child(3) {
  left: 78%;
  height: 115px;
  transform: rotate(13deg);
  animation-delay: -4s;
}

.fly {
  position: absolute;
  z-index: 6;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-ink);
  box-shadow: 7px -4px 0 -2px rgba(24, 63, 24, 0.7), 7px 4px 0 -2px rgba(24, 63, 24, 0.7);
}

.hero-fly {
  top: 28%;
  left: 52%;
  animation: fly-lazy 9s ease-in-out infinite;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 118px 0;
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-tag {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-mid);
  background: var(--green-pale);
  font-size: 0.7rem;
  font-weight: 1000;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  color: var(--green-dark);
  font-size: clamp(3.25rem, 7vw, 6rem);
}

.section-heading > p:last-child {
  margin: 18px 0 0;
  color: #42643a;
  font-size: 1.1rem;
}

.trait-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.trait-card {
  position: relative;
  min-height: 420px;
  padding: 25px 24px 14px;
  overflow: hidden;
  border: 1.5px solid rgba(75, 127, 43, 0.32);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-small);
  transition: transform 340ms ease, box-shadow 340ms ease;
}

.trait-card::after {
  position: absolute;
  right: 14%;
  bottom: 21px;
  left: 14%;
  height: 28px;
  border-radius: 50%;
  content: "";
  background: rgba(123, 173, 63, 0.19);
  filter: blur(8px);
}

.trait-card:hover {
  z-index: 2;
  transform: translateY(-9px) rotate(-0.6deg);
  box-shadow: 0 26px 50px rgba(36, 74, 27, 0.17);
}

.trait-card:nth-child(even):hover {
  transform: translateY(-9px) rotate(0.6deg);
}

.trait-card img {
  position: absolute;
  z-index: 1;
  right: -3%;
  bottom: -2%;
  width: 98%;
  border-radius: 44%;
  transition: transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.trait-card:hover img {
  transform: translateY(-5px) rotate(1deg) scale(1.02);
}

.trait-copy {
  position: relative;
  z-index: 3;
}

.trait-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 1000;
  letter-spacing: -0.04em;
}

.trait-card .trait-copy > p:last-child {
  margin: 3px 0 0;
  color: #527047;
  font-size: 0.88rem;
}

.trait-note {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 16px;
  padding: 5px 9px;
  transform: rotate(-3deg);
  border: 1px solid rgba(75, 127, 43, 0.28);
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(255, 253, 245, 0.9);
  font-size: 0.66rem;
  font-weight: 900;
}

.trait-eats {
  background: linear-gradient(160deg, #fffdf5 30%, #f2eac9 100%);
}

.trait-thinks {
  background: linear-gradient(160deg, #ecf3d8 20%, #fffdf5 76%);
}

.trait-sits {
  background: linear-gradient(160deg, #fffdf5 18%, #e2efc6 100%);
}

.trait-chills {
  background: linear-gradient(160deg, #dcecbc 15%, #fffdf5 76%);
}

.trait-thinks img {
  right: -7%;
  width: 103%;
}

.trait-sits img {
  bottom: -5%;
  width: 103%;
}

.banner-break {
  position: relative;
  width: min(1240px, calc(100% - 28px));
  margin: 8px auto;
  overflow: hidden;
  border: 1.5px solid rgba(75, 127, 43, 0.36);
  border-radius: var(--radius-xl);
  background: var(--green-pale);
  box-shadow: var(--shadow);
}

.banner-break img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.banner-break p {
  position: absolute;
  right: 28px;
  bottom: 21px;
  margin: 0;
  padding: 7px 12px;
  border: 1px solid rgba(75, 127, 43, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 245, 0.86);
  font-size: 0.7rem;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.life {
  padding-bottom: 132px;
}

.life-heading {
  margin-bottom: 66px;
}

.life-story {
  display: grid;
  gap: 28px;
}

.story-panel {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.85fr);
  overflow: hidden;
  border: 1.5px solid rgba(75, 127, 43, 0.34);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.story-art {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 75%, rgba(100, 154, 53, 0.24) 0 12%, transparent 12.5%),
    var(--green-pale);
}

.story-art::after {
  position: absolute;
  right: 12%;
  bottom: 8%;
  left: 12%;
  height: 35px;
  border-radius: 50%;
  content: "";
  background: rgba(80, 132, 42, 0.16);
  filter: blur(10px);
}

.story-art img {
  position: relative;
  z-index: 2;
  width: min(610px, 100%);
  border-radius: 45%;
  transition: transform 600ms ease;
}

.story-panel:hover .story-art img {
  transform: translateY(-6px) rotate(-0.6deg);
}

.story-copy {
  position: relative;
  padding: clamp(38px, 7vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-step {
  width: fit-content;
  margin: 0 0 18px !important;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--paper) !important;
  background: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.1em;
}

.story-copy h3 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 1000;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.story-copy > p:not(.story-step) {
  margin: 0 0 4px;
  color: #4b6b43;
  font-size: 1.05rem;
}

.status-dot {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-mid);
  box-shadow: 0 0 0 7px rgba(88, 142, 47, 0.14);
  animation: blink-dot 3s step-end infinite;
}

.scribble {
  width: 100px;
  height: 14px;
  margin-top: 28px;
  border-top: 3px solid var(--green-mid);
  border-radius: 50%;
  transform: rotate(-3deg);
}

.story-rain {
  grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr);
  background: #f7f8ef;
}

.rain-art {
  order: 2;
  background:
    linear-gradient(155deg, rgba(209, 229, 190, 0.9), rgba(235, 243, 224, 0.7)),
    var(--green-pale);
}

.rain-line {
  position: absolute;
  z-index: 3;
  width: 2px;
  height: 34px;
  border-radius: 99px;
  background: rgba(123, 176, 182, 0.4);
  animation: soft-rain 2.8s linear infinite;
}

.rain-a {
  top: 12%;
  left: 13%;
}

.rain-b {
  top: 23%;
  right: 18%;
  height: 24px;
  animation-delay: -1.1s;
}

.rain-c {
  top: 58%;
  left: 24%;
  height: 30px;
  animation-delay: -2.1s;
}

.weather-pill {
  width: fit-content;
  margin-top: 24px;
  padding: 9px 13px;
  border: 1px solid rgba(75, 127, 43, 0.25);
  border-radius: 12px;
  background: var(--green-pale);
  font-size: 0.78rem;
  font-weight: 900;
}

.weather-pill span {
  margin-right: 7px;
  color: #8fbcc0;
}

.slow-strip {
  min-height: 110px;
  padding: 22px 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border: 1.5px solid rgba(75, 127, 43, 0.3);
  border-radius: 28px;
  background: var(--green-pale);
  box-shadow: var(--shadow-small);
}

.slow-strip p {
  margin: 0;
  text-align: center;
  font-family: var(--display);
  font-weight: 900;
}

.slow-strip p span {
  display: block;
  margin-bottom: 4px;
  color: var(--green-mid);
  font-family: var(--body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.slow-strip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-mid);
  box-shadow: 11px 0 0 var(--green-soft), -11px 0 0 var(--green-soft);
}

.final-cta {
  position: relative;
  width: min(1240px, calc(100% - 28px));
  min-height: 520px;
  margin: 0 auto 28px;
  padding: 82px 40px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--green-dark);
  border-radius: var(--radius-xl);
  color: var(--paper);
  background:
    radial-gradient(circle at 20% 110%, rgba(177, 210, 104, 0.32), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(151, 195, 77, 0.18), transparent 26%),
    var(--green-dark);
  box-shadow: var(--shadow);
}

.final-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.eyebrow-light {
  justify-content: center;
  color: var(--green-pale);
}

.eyebrow-light span {
  background: var(--green-bright);
}

.final-cta h2 {
  max-width: 900px;
  color: var(--paper);
  font-size: clamp(4.1rem, 9vw, 8rem);
}

.final-content > p:not(.eyebrow) {
  margin: 24px 0 29px;
  color: var(--green-pale);
  font-size: 1.05rem;
}

.final-links {
  justify-content: center;
}

.button-cream {
  min-width: 112px;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--green-dark);
  background: var(--cream);
}

.button-cream:hover {
  color: var(--green-dark);
  background: var(--green-bright);
}

.final-pond {
  position: absolute;
  inset: 0;
}

.final-lily {
  background: rgba(154, 196, 80, 0.55);
}

.final-lily::after {
  background: var(--green-dark);
}

.final-lily-one {
  bottom: 8%;
  left: 7%;
  width: 120px;
}

.final-lily-two {
  top: 14%;
  right: 8%;
  width: 70px;
  animation-delay: -4s;
}

.final-bubble {
  position: absolute;
  right: 18%;
  bottom: 17%;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(229, 239, 199, 0.45);
  border-radius: 50%;
  animation: bubble-up 6s ease-in infinite;
}

.frog-eyes {
  position: absolute;
  right: 4%;
  bottom: -20px;
  display: flex;
  gap: 4px;
  opacity: 0.24;
}

.frog-eyes i {
  position: relative;
  width: 67px;
  height: 79px;
  border-radius: 50% 50% 38% 38%;
  background: var(--green-bright);
}

.frog-eyes i::after {
  position: absolute;
  top: 34px;
  left: 12px;
  width: 43px;
  height: 17px;
  border-radius: 50%;
  content: "";
  background: var(--green-dark);
}

.site-footer {
  width: var(--page);
  min-height: 94px;
  margin: 0 auto;
  padding: 24px 4px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  font-size: 1.28rem;
}

.footer-brand span {
  color: var(--green-mid);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.site-footer p {
  margin: 0;
  color: #55724e;
  font-size: 0.78rem;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 22px;
  bottom: 22px;
  max-width: min(320px, calc(100% - 44px));
  padding: 12px 16px;
  transform: translateY(25px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  color: var(--paper);
  background: var(--green-dark);
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

[data-reveal] {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 750ms ease, transform 750ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

[data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes lazy-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-7px) rotate(0.3deg); }
}

@keyframes blub-poke {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  32% { transform: translate(-5px, 2px) rotate(-1deg); }
  66% { transform: translate(4px, 1px) rotate(0.7deg); }
}

@keyframes lily-drift {
  0%, 100% { transform: translateX(0) rotate(-1deg); }
  50% { transform: translateX(8px) rotate(1deg); }
}

@keyframes bubble-up {
  0%, 24% { transform: translateY(0) scale(0.7); opacity: 0; }
  32% { opacity: 0.7; }
  68% { opacity: 0.4; }
  78%, 100% { transform: translateY(-70px) scale(1.1); opacity: 0; }
}

@keyframes reed-sway {
  0%, 100% { rotate: -1deg; }
  50% { rotate: 2deg; }
}

@keyframes fly-lazy {
  0%, 14%, 100% { transform: translate(0, 0); }
  28%, 42% { transform: translate(42px, -18px); }
  56%, 70% { transform: translate(23px, 18px); }
  84% { transform: translate(-15px, 8px); }
}

@keyframes blink-dot {
  0%, 86%, 100% { opacity: 1; }
  88%, 96% { opacity: 0.3; }
}

@keyframes soft-rain {
  from { transform: translateY(-12px); opacity: 0; }
  20% { opacity: 0.55; }
  to { transform: translateY(70px); opacity: 0; }
}

@media (max-width: 1040px) {
  :root {
    --page: min(100% - 32px, 920px);
  }

  .site-header {
    margin-bottom: -78px;
  }

  .hero {
    min-height: 720px;
    padding-top: 144px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero h1 {
    font-size: clamp(5.7rem, 13vw, 8.5rem);
  }

  .trait-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trait-card {
    min-height: 460px;
  }

  .trait-card img {
    width: min(100%, 390px);
  }

  .story-panel {
    grid-template-columns: minmax(0, 1.08fr) minmax(290px, 0.92fr);
  }

  .story-rain {
    grid-template-columns: minmax(290px, 0.92fr) minmax(0, 1.08fr);
  }
}

@media (max-width: 780px) {
  :root {
    --page: calc(100% - 28px);
    --radius-xl: 34px;
  }

  html {
    scroll-padding-top: 90px;
  }

  .site-header {
    top: 8px;
    min-height: 58px;
    margin-top: 8px;
    margin-bottom: -66px;
    padding: 7px 9px 7px 11px;
    gap: 8px;
    border-radius: 18px;
  }

  .brand {
    gap: 6px;
  }

  .brand-frog {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-frog img {
    top: -4px;
    left: -3px;
    width: 44px;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .main-nav {
    gap: 4px;
  }

  .nav-link {
    min-height: 36px;
    padding: 8px 10px;
    border-radius: 11px;
    font-size: 0.64rem;
  }

  .hero {
    min-height: auto;
    padding: 118px 0 64px;
    border-bottom-right-radius: 46px;
    border-bottom-left-radius: 46px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.28) 0 57%, var(--water) 57% 100%);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-copy {
    padding-top: 18px;
    text-align: center;
  }

  .eyebrow,
  .hero-kicker {
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }

  .hero h1 {
    margin-inline: auto;
    font-size: clamp(5.3rem, 25vw, 8.4rem);
  }

  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .contract-card {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .hero-visual {
    min-height: 410px;
    margin-top: 6px;
  }

  .hero-blub {
    width: min(540px, 100%);
  }

  .reeds {
    transform: scale(0.7);
    transform-origin: bottom;
  }

  .reeds-right {
    transform: scale(-0.7, 0.7);
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2 {
    font-size: clamp(3.2rem, 14vw, 5.1rem);
  }

  .trait-card {
    min-height: 390px;
  }

  .banner-break {
    border-radius: 30px;
  }

  .banner-break img {
    min-height: 240px;
    object-position: center;
  }

  .banner-break p {
    right: 15px;
    bottom: 14px;
  }

  .story-panel,
  .story-rain {
    grid-template-columns: 1fr;
  }

  .story-art,
  .rain-art {
    min-height: 430px;
    order: initial;
  }

  .story-copy {
    min-height: 330px;
    padding: 46px;
  }

  .story-rain .story-copy {
    order: 2;
  }

  .slow-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 20px;
  }

  .slow-strip i {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .final-cta {
    min-height: 470px;
    padding: 72px 24px;
  }

  .final-cta h2 {
    font-size: clamp(4rem, 16vw, 6.4rem);
  }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100% - 22px);
  }

  .brand-name {
    font-size: 1.12rem;
  }

  .brand-frog {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand-frog img {
    width: 40px;
  }

  .nav-link {
    min-height: 34px;
    padding: 7px 7px;
    font-size: 0.57rem;
  }

  .hero {
    padding-top: 105px;
  }

  .hero-copy {
    padding-inline: 4px;
  }

  .hero h1 {
    font-size: clamp(5.3rem, 28vw, 7.5rem);
  }

  .hero-kicker {
    margin-top: 5px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 12px 15px;
    font-size: 0.72rem;
  }

  .contract-card {
    gap: 7px;
  }

  .contract-value {
    font-size: 0.68rem;
  }

  .hero-visual {
    min-height: 340px;
  }

  .trait-grid {
    gap: 12px;
  }

  .trait-card {
    min-height: 340px;
    padding: 20px 17px 12px;
    border-radius: 24px;
  }

  .trait-card .trait-copy > p:last-child {
    font-size: 0.78rem;
  }

  .trait-note {
    right: 11px;
    bottom: 11px;
    font-size: 0.58rem;
  }

  .banner-break {
    width: calc(100% - 16px);
  }

  .banner-break img {
    min-height: 215px;
  }

  .banner-break p {
    max-width: calc(100% - 30px);
    font-size: 0.61rem;
  }

  .story-art,
  .rain-art {
    min-height: 350px;
  }

  .story-copy {
    min-height: 300px;
    padding: 38px 28px;
  }

  .story-copy h3 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .final-cta {
    width: calc(100% - 16px);
  }

  .final-links {
    gap: 8px;
  }

  .button-cream {
    min-width: 0;
    padding-inline: 15px;
  }

  .site-footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .site-header {
    width: calc(100% - 12px);
  }

  .brand-name {
    display: none;
  }

  .main-nav {
    flex: 1;
    justify-content: flex-end;
  }

  .nav-link {
    padding-inline: 8px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .button:first-child {
    grid-column: 1 / -1;
  }

  .contract-card {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .copy-button {
    min-width: 62px;
  }

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

  .trait-card {
    min-height: 430px;
  }

  .trait-card img {
    right: 0;
    width: 100%;
  }

  .banner-break img {
    min-height: 190px;
    object-position: 40% center;
  }

  .banner-break p {
    display: none;
  }

  .final-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
