:root {
  --cream: #fff8e8;
  --cream-deep: #f6ebcf;
  --ink: #2b2418;
  --muted: #6b604c;
  --green-dark: #2f6f43;
  --green: #4f9f59;
  --green-soft: #a7d875;
  --green-pale: #dcefb4;
  --yellow: #ffc857;
  --orange: #f09c45;
  --rose: #ffb7a6;
  --white: #fffdf5;
  --shadow: 0 22px 70px rgba(84, 64, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 10% 12%, rgba(255, 200, 87, 0.22) 0 13rem, transparent 13.2rem),
    radial-gradient(circle at 92% 18%, rgba(167, 216, 117, 0.3) 0 11rem, transparent 11.2rem),
    linear-gradient(135deg, var(--cream), #fffdf4 52%, var(--cream-deep));
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  border-radius: 38% 62% 55% 45%;
  content: "";
  opacity: 0.38;
  filter: blur(2px);
}

body::before {
  top: 18%;
  left: -8rem;
  background: rgba(255, 183, 166, 0.6);
}

body::after {
  right: -7rem;
  bottom: 8%;
  background: rgba(220, 239, 180, 0.9);
}

a {
  color: inherit;
}

.page-shell {
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr auto;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--green-dark);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 900;
  text-decoration: none;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
}

/* Logo file lives at assets/budease-logo.png. Keep object-fit: contain to avoid distortion. */
.brand-logo {
  display: block;
  width: auto;
  max-width: clamp(150px, 24vw, 280px);
  max-height: clamp(72px, 10vw, 106px);
  object-fit: contain;
}

.brand-fallback {
  color: var(--green-dark);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 2px solid rgba(47, 111, 67, 0.14);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 253, 245, 0.78);
  box-shadow: 0 8px 20px rgba(84, 64, 31, 0.08);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 74px);
  padding: 8px 0 32px;
}

.hero-art {
  position: relative;
  display: grid;
  min-height: clamp(390px, 50vw, 540px);
  place-items: center;
}

.plant-stage {
  position: relative;
  width: min(100%, 400px);
  aspect-ratio: 1 / 1.04;
  border: 4px solid rgba(47, 111, 67, 0.12);
  border-radius: 34% 66% 42% 58% / 58% 43% 57% 42%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.92) 0 28%, transparent 28.5%),
    linear-gradient(165deg, rgba(220, 239, 180, 0.76), rgba(255, 253, 245, 0.94) 58%, rgba(255, 200, 87, 0.2));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.plant-stage::before {
  position: absolute;
  inset: auto -12% -14% -12%;
  height: 42%;
  border-radius: 50% 50% 0 0;
  background: rgba(167, 216, 117, 0.28);
  content: "";
}

.sun-orb {
  position: absolute;
  top: 15%;
  right: 17%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 16px rgba(255, 200, 87, 0.17);
}

.soil {
  position: absolute;
  right: 17%;
  bottom: 16%;
  left: 17%;
  height: 44px;
  border-radius: 50%;
  background: #90633b;
  box-shadow: inset 0 -10px 0 rgba(76, 49, 28, 0.13);
}

.soil span {
  position: absolute;
  top: 12px;
  width: 12px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.5);
}

.soil span:nth-child(1) {
  left: 22%;
}

.soil span:nth-child(2) {
  left: 48%;
  width: 18px;
}

.soil span:nth-child(3) {
  right: 20%;
}

.seed {
  position: absolute;
  left: calc(50% - 14px);
  bottom: 22%;
  width: 28px;
  height: 38px;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(135deg, #bb7b41, var(--orange));
  box-shadow: inset -5px -5px 0 rgba(92, 57, 30, 0.14);
  animation: seed-pop 1s ease-out both;
}

/* The plant is built from simple CSS shapes so the page stays dependency-free. */
.plant-swayer {
  position: absolute;
  inset: 0;
  transform-origin: 50% 78%;
  animation: plant-sway 5.8s 3.45s ease-in-out infinite;
}

.stem {
  position: absolute;
  left: calc(50% - 8px);
  bottom: 23%;
  width: 16px;
  height: 178px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  transform: scaleY(0);
  transform-origin: bottom;
  animation: stem-grow 1.15s 0.85s cubic-bezier(0.21, 0.85, 0.3, 1) forwards;
}

.sprout-leaf,
.finger {
  position: absolute;
  background: linear-gradient(145deg, var(--green-soft), var(--green));
  box-shadow: inset -5px -7px 0 rgba(47, 111, 67, 0.12);
}

.sprout-leaf {
  left: calc(50% - 6px);
  bottom: 45%;
  width: 64px;
  height: 38px;
  border-radius: 100% 0 100% 0;
  opacity: 0;
  transform-origin: 4px 32px;
}

.sprout-left {
  transform: rotate(-138deg) scale(0.1);
  animation: leaf-unfold-left 0.82s 1.62s cubic-bezier(0.2, 0.9, 0.25, 1.2) forwards;
}

.sprout-right {
  transform: scaleX(-1) rotate(-138deg) scale(0.1);
  animation: leaf-unfold-right 0.82s 1.76s cubic-bezier(0.2, 0.9, 0.25, 1.2) forwards;
}

.main-leaf {
  position: absolute;
  left: 50%;
  bottom: 52%;
  width: 192px;
  height: 164px;
  opacity: 0;
  transform: translateX(-50%) translateY(16px) scale(0.2);
  transform-origin: 50% 100%;
  animation: main-leaf-pop 0.9s 2.18s cubic-bezier(0.18, 0.95, 0.24, 1.25) forwards;
}

.finger {
  left: 50%;
  bottom: 0;
  width: 42px;
  height: 132px;
  border-radius: 100% 0 100% 0;
  transform-origin: 50% 100%;
}

.finger-one {
  transform: translateX(-50%) rotate(0deg);
}

.finger-two {
  height: 124px;
  transform: translateX(-50%) rotate(-24deg);
}

.finger-three {
  height: 120px;
  transform: translateX(-50%) rotate(24deg);
}

.finger-four {
  height: 104px;
  transform: translateX(-50%) rotate(-48deg);
}

.finger-five {
  height: 104px;
  transform: translateX(-50%) rotate(48deg);
}

.finger-six {
  height: 82px;
  transform: translateX(-50%) rotate(-70deg);
}

.finger-seven {
  height: 82px;
  transform: translateX(-50%) rotate(70deg);
}

.plant-face {
  position: absolute;
  left: calc(50% - 50px);
  bottom: 48%;
  z-index: 3;
  width: 100px;
  height: 54px;
  opacity: 0;
  transform: translateY(12px) scale(0.8);
  animation: face-hello 0.55s 2.82s ease-out forwards;
}

.shade {
  position: absolute;
  top: 0;
  width: 36px;
  height: 24px;
  border-radius: 8px 8px 14px 14px;
  background: #2b2418;
  box-shadow: inset 0 -5px 0 rgba(255, 255, 255, 0.12);
}

.shade-left {
  left: 9px;
}

.shade-right {
  right: 9px;
}

.shade-bridge {
  position: absolute;
  top: 10px;
  left: 43px;
  width: 14px;
  height: 5px;
  border-radius: 999px;
  background: #2b2418;
}

.smile {
  position: absolute;
  right: 35px;
  bottom: 8px;
  width: 30px;
  height: 15px;
  border-bottom: 4px solid #2b2418;
  border-radius: 0 0 999px 999px;
}

.floaty {
  position: absolute;
  z-index: 2;
  opacity: 0.72;
  pointer-events: none;
  animation: float-around 7s ease-in-out infinite;
}

.floaty-leaf {
  width: 26px;
  height: 38px;
  border-radius: 100% 0 100% 0;
  background: var(--green-soft);
  box-shadow: inset -4px -5px 0 rgba(47, 111, 67, 0.12);
}

.floaty-bubble {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(240, 156, 69, 0.42);
  border-radius: 50%;
  background: rgba(255, 253, 245, 0.42);
}

.floaty-puff {
  width: 52px;
  height: 30px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 28% 45%, rgba(255, 255, 255, 0.82) 0 34%, transparent 36%),
    radial-gradient(circle at 54% 35%, rgba(255, 255, 255, 0.72) 0 32%, transparent 34%),
    radial-gradient(circle at 73% 53%, rgba(255, 255, 255, 0.68) 0 28%, transparent 30%);
}

.floaty-one {
  top: 16%;
  left: 2%;
}

.floaty-two {
  top: 27%;
  right: 1%;
  animation-delay: -2s;
}

.floaty-three {
  right: 7%;
  bottom: 19%;
  animation-delay: -4.5s;
}

.floaty-four {
  bottom: 12%;
  left: 8%;
  transform: rotate(70deg);
  animation-delay: -3s;
}

.hero-copy {
  max-width: 595px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #774716;
  background: rgba(255, 200, 87, 0.34);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(3.25rem, 8vw, 5.85rem);
  font-weight: 900;
  line-height: 0.9;
}

.subheadline {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--green-dark);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 800;
  line-height: 1.22;
}

.supporting-text {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  font-weight: 700;
  line-height: 1.72;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 3px solid rgba(43, 36, 24, 0.14);
  border-radius: 999px;
  color: #2f291d;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 12px 0 #c46e27, 0 20px 32px rgba(240, 156, 69, 0.28);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", system-ui, sans-serif;
  font-size: 1.04rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  box-shadow: 0 12px 0 #c46e27, 0 20px 32px rgba(240, 156, 69, 0.28);
}

.button-secondary {
  color: var(--green-dark);
  background: rgba(255, 253, 245, 0.86);
  box-shadow: 0 12px 0 rgba(47, 111, 67, 0.2), 0 20px 32px rgba(47, 111, 67, 0.13);
}

.button:hover {
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 0 15px 0 #c46e27, 0 24px 34px rgba(240, 156, 69, 0.32);
}

.button-secondary:hover {
  box-shadow: 0 15px 0 rgba(47, 111, 67, 0.2), 0 24px 34px rgba(47, 111, 67, 0.16);
}

.button:active {
  transform: translateY(5px);
  box-shadow: 0 6px 0 #c46e27, 0 14px 22px rgba(240, 156, 69, 0.26);
}

.button.button-tapped {
  transform: translateY(5px) scale(0.98);
  box-shadow: 0 6px 0 #c46e27, 0 14px 22px rgba(240, 156, 69, 0.26);
}

.button-secondary:active,
.button-secondary.button-tapped {
  box-shadow: 0 6px 0 rgba(47, 111, 67, 0.2), 0 14px 22px rgba(47, 111, 67, 0.14);
}

.button:focus-visible,
.brand:focus-visible {
  outline: 4px solid rgba(79, 159, 89, 0.42);
  outline-offset: 5px;
}

.site-footer {
  padding: 18px 0 28px;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

@keyframes seed-pop {
  0% {
    opacity: 0;
    transform: translateY(18px) rotate(-18deg) scale(0.42);
  }

  58% {
    transform: translateY(-5px) rotate(8deg) scale(1.06);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@keyframes stem-grow {
  to {
    transform: scaleY(1);
  }
}

@keyframes leaf-unfold-left {
  to {
    opacity: 1;
    transform: rotate(-154deg) scale(1);
  }
}

@keyframes leaf-unfold-right {
  to {
    opacity: 1;
    transform: scaleX(-1) rotate(-154deg) scale(1);
  }
}

@keyframes main-leaf-pop {
  70% {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px) scale(1.06);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes face-hello {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes plant-sway {
  0%,
  100% {
    transform: rotate(0deg);
  }

  35% {
    transform: rotate(-1.8deg);
  }

  70% {
    transform: rotate(1.5deg);
  }
}

@keyframes float-around {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }

  50% {
    transform: translate3d(8px, -18px, 0) rotate(10deg);
  }
}

@media (max-width: 850px) {
  .page-shell {
    width: min(100% - 26px, 720px);
  }

  .site-header {
    padding: 18px 0 10px;
  }

  .brand-logo {
    max-width: min(52vw, 220px);
    max-height: 92px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 0;
    text-align: center;
  }

  .hero-art {
    min-height: clamp(330px, 82vw, 440px);
    order: 1;
  }

  .hero-copy {
    order: 2;
    margin: 0 auto;
  }

  h1,
  .subheadline,
  .supporting-text {
    margin-right: auto;
    margin-left: auto;
  }

  .button-row {
    justify-content: center;
  }

  .button {
    width: min(100%, 220px);
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
  }

  .status-pill {
    min-height: 32px;
    padding: 7px 11px;
    font-size: 0.72rem;
  }

  .brand-logo-wrap {
    min-height: 48px;
  }

  .brand-logo {
    max-width: min(52vw, 176px);
    max-height: 76px;
  }

  .plant-stage {
    width: min(100%, 340px);
    border-radius: 31% 69% 44% 56% / 55% 44% 56% 45%;
  }

  .stem {
    height: 140px;
  }

  .main-leaf {
    width: 154px;
    height: 132px;
  }

  .finger {
    width: 34px;
    height: 108px;
  }

  .finger-two,
  .finger-three {
    height: 100px;
  }

  .finger-four,
  .finger-five {
    height: 86px;
  }

  .finger-six,
  .finger-seven {
    height: 68px;
  }

  .plant-face {
    left: calc(50% - 42px);
    width: 84px;
    transform: translateY(12px) scale(0.72);
  }

  h1 {
    max-width: 8ch;
  }
}

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

  /* Motion-sensitive visitors get the final plant state without the growth sequence. */
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .seed,
  .stem,
  .sprout-leaf,
  .main-leaf,
  .plant-face {
    opacity: 1;
  }

  .plant-swayer {
    animation: none !important;
    transform: none;
  }

  .stem {
    transform: scaleY(1);
  }

  .sprout-left {
    transform: rotate(-154deg) scale(1);
  }

  .sprout-right {
    transform: scaleX(-1) rotate(-154deg) scale(1);
  }

  .main-leaf {
    transform: translateX(-50%) translateY(0) scale(1);
  }

  .plant-face {
    transform: translateY(0) scale(1);
  }
}
