:root {
  --cream: #f8f1e3;
  --almond: #ddc7a2;
  --walnut: #2f1f17;
  --green: #2f6a3b;
  --green-light: #5f8f63;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--walnut);
  background:
    radial-gradient(circle at 15% 20%, rgba(95, 143, 99, 0.2), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(221, 199, 162, 0.4), transparent 35%),
    linear-gradient(135deg, #fff9ef, var(--cream));
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}

.glow {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 143, 99, 0.32), rgba(95, 143, 99, 0));
  filter: blur(12px);
  animation: drift 7s ease-in-out infinite alternate;
}

.card {
  width: min(92vw, 560px);
  padding: 1.8rem 1.2rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(47, 31, 23, 0.12);
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(47, 31, 23, 0.15);
  text-align: center;
  backdrop-filter: blur(3px);
  animation: rise 1s ease-out both;
}

.logo {
  width: min(100%, 430px);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(47, 31, 23, 0.2);
  animation: float 3.2s ease-in-out infinite;
}

h1 {
  margin: 1.25rem 0 0.5rem;
  font-size: clamp(2rem, 5.3vw, 3rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tagline {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: var(--green);
  font-weight: 700;
}

.status {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(47, 106, 59, 0.24);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.4s ease-in-out infinite;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes drift {
  from {
    transform: translate(-70px, -20px) scale(1);
  }
  to {
    transform: translate(75px, 45px) scale(1.08);
  }
}
