:root {
  color-scheme: light;
  --bg: #ffffff;
  --text: #082f1f;
  --muted: #5d7067;
  --line: rgba(6, 80, 42, 0.12);
  --green: #00582d;
  --green-soft: #36c667;
  --shadow: rgba(5, 63, 33, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-shell {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(22px, 5vw, 72px);
  background:
    radial-gradient(circle at 16% 12%, rgba(54, 198, 103, 0.075), transparent 27%),
    radial-gradient(circle at 86% 84%, rgba(0, 88, 45, 0.045), transparent 31%),
    #ffffff;
}

#botanical-motion,
.soft-video {
  position: absolute;
  inset: 0;
  z-index: -3;
}

#botanical-motion {
  width: 100%;
  height: 100%;
}

.soft-video {
  z-index: -2;
  overflow: hidden;
  opacity: 0.74;
}

.soft-video::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(54, 198, 103, 0.055), transparent 58%);
  content: "";
  animation: glassSweep 9s ease-in-out infinite alternate;
}

.leaf-orbit {
  position: absolute;
  width: clamp(90px, 13vw, 170px);
  height: clamp(34px, 5vw, 64px);
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(0, 88, 45, 0.1), rgba(54, 198, 103, 0.055));
  filter: blur(0.4px);
  transform-origin: 50% 100%;
  animation: leafFloat 12s ease-in-out infinite;
}

.leaf-one {
  top: 12%;
  left: 7%;
}

.leaf-two {
  top: 18%;
  right: 8%;
  animation-delay: -3s;
  rotate: 36deg;
}

.leaf-three {
  bottom: 13%;
  left: 11%;
  animation-delay: -7s;
  rotate: -24deg;
}

.leaf-four {
  right: 13%;
  bottom: 11%;
  animation-delay: -5s;
  rotate: 18deg;
}

.hero {
  width: min(100%, 900px);
  text-align: center;
  animation: reveal 1.2s ease-out both;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 14px 45px rgba(5, 63, 33, 0.1);
  color: var(--green);
  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(20px);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-soft);
  box-shadow: 0 0 0 0 rgba(54, 198, 103, 0.4);
  animation: pulse 1.7s ease-out infinite;
}

.logo-card {
  position: relative;
  width: min(100%, 500px);
  margin: clamp(18px, 3vw, 28px) auto clamp(18px, 3vw, 24px);
  padding: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.logo-card::before {
  position: absolute;
  inset: 18% 10%;
  z-index: -1;
  background: rgba(54, 198, 103, 0.13);
  content: "";
  filter: blur(54px);
  animation: aura 4.8s ease-in-out infinite;
}

.logo-card::after {
  position: absolute;
  inset: 2% -4% 4%;
  z-index: -1;
  border-radius: 48%;
  background: rgba(255, 255, 255, 0.96);
  content: "";
  filter: blur(16px);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  animation: logoFloat 5.8s ease-in-out infinite;
}

.brand-logo.is-blended {
  mix-blend-mode: normal;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: clamp(0.86rem, 2vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.3rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.12;
  background: linear-gradient(90deg, var(--green), var(--green-soft), var(--green));
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 5s ease-in-out infinite;
  filter: drop-shadow(0 14px 28px rgba(5, 63, 33, 0.08));
}

.hero-copy {
  width: min(100%, 620px);
  margin: clamp(12px, 2vw, 18px) auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.6vw, 1.28rem);
  line-height: 1.7;
}

@keyframes glassSweep {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(0.98);
  }

  100% {
    transform: translate3d(2%, 1%, 0) scale(1.02);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(54, 198, 103, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(54, 198, 103, 0);
  }
}

@keyframes aura {
  50% {
    opacity: 0.62;
    transform: scale(1.05);
  }
}

@keyframes shine {
  50% {
    background-position: 100% center;
  }
}

@keyframes logoFloat {
  50% {
    transform: translateY(-8px);
  }
}

@keyframes leafFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
    opacity: 0.42;
  }

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

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 620px) {
  .page-shell {
    align-items: start;
    padding: 26px 18px;
  }

  .status-pill {
    max-width: 100%;
    padding: 9px 13px;
    letter-spacing: 0.05em;
  }

  .logo-card {
    width: min(100%, 360px);
    margin-top: 24px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
    letter-spacing: -0.055em;
    line-height: 1.14;
  }

  .hero-copy {
    max-width: 34rem;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
