:root {
  --green-light: #8aba7a;
  --green-mid: #5a8a4a;
  --green-dark: #1a3d1a;
  --teal: #4aabaa;
  --bg: #f5f4ef;
  --text-muted: #7a9070;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

/* Subtle animated background circles */
body::before,
body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}

body::before {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--teal), var(--green-light));
  top: -120px;
  left: -120px;
}

body::after {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--green-mid), var(--green-dark));
  bottom: -80px;
  right: -80px;
  animation-direction: alternate-reverse;
  animation-duration: 15s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

/* Main wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: fadeUp 1.1s cubic-bezier(.22,.68,0,1.2) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo */
.logo-wrap {
  width: clamp(220px, 40vw, 380px);
  animation: fadeUp 1.1s cubic-bezier(.22,.68,0,1.2) 0.1s both;
}

.logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Divider */
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green-light));
  border-radius: 2px;
  margin: 28px 0 26px;
  animation: fadeUp 1.1s cubic-bezier(.22,.68,0,1.2) 0.25s both;
}

/* Tagline */
.tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(13px, 2.2vw, 17px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeUp 1.1s cubic-bezier(.22,.68,0,1.2) 0.38s both;
  user-select: none;
}

.tagline span {
  color: var(--green-mid);
  font-weight: 500;
}

/* Pulsing dots */
.dots {
  display: flex;
  gap: 8px;
  margin-top: 36px;
  animation: fadeUp 1.1s cubic-bezier(.22,.68,0,1.2) 0.5s both;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  animation: pulse 1.8s ease-in-out infinite;
}

.dot:nth-child(2) {
  animation-delay: 0.3s;
  background: var(--green-mid);
}

.dot:nth-child(3) {
  animation-delay: 0.6s;
  background: var(--teal);
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50%       { opacity: 1;   transform: scale(1.2); }
}
