*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark: #2d5a27;
  --green-mid: #4a8c3f;
  --green-light: #8dbb41;
  --green-soft: #e8f3e0;
  --cream: #f9f7f2;
  --brown: #5c4033;
  --text: #1a2e18;
  --text-muted: #5a6b57;
  --white: #ffffff;
  --shadow: 0 24px 64px rgba(45, 90, 39, 0.12);
  --radius: 16px;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  min-height: 100dvh;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow: hidden;
}

.bg-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.shape-1 {
  width: 420px;
  height: 420px;
  background: var(--green-light);
  top: -120px;
  right: -80px;
}

.shape-2 {
  width: 320px;
  height: 320px;
  background: var(--green-mid);
  bottom: 10%;
  left: -100px;
}

.shape-3 {
  width: 240px;
  height: 240px;
  background: var(--green-soft);
  bottom: -60px;
  right: 20%;
}

.page {
  position: relative;
  z-index: 1;
  height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 3vh, 2rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
  animation: fadeUp 0.8s ease both;
}

.logo-wrap {
  margin-bottom: clamp(0.75rem, 2.5vh, 1.5rem);
  flex-shrink: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  width: min(85vw, 55vh);
  max-height: min(50vh, 85vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(45, 90, 39, 0.2));
  animation: float 4s ease-in-out infinite;
}

.badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: clamp(0.7rem, 1.6vh, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: clamp(0.5rem, 1.5vh, 1rem);
}

h1 {
  font-size: clamp(1.75rem, 6vh, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--green-dark);
  letter-spacing: -0.02em;
  margin-bottom: clamp(0.5rem, 1.5vh, 1rem);
}

.subtitle {
  font-size: clamp(0.875rem, 2.2vh, 1.125rem);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.footer {
  flex-shrink: 0;
  padding-bottom: env(safe-area-inset-bottom, 0);
  animation: fadeUp 0.8s 0.3s ease both;
}

.footer p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
