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

:root {
  --green: #2e7d32;
  --green-light: #66bb6a;
  --green-dark: #1b5e20;
  --bg: #f8fcf8;
  --text: #263238;
  --muted: #607d8b;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.blob-1 {
  width: 420px;
  height: 420px;
  background: var(--green-light);
  top: -120px;
  right: -80px;
  animation: drift 12s ease-in-out infinite;
}

.blob-2 {
  width: 360px;
  height: 360px;
  background: #81c784;
  bottom: -100px;
  left: -60px;
  animation: drift 15s ease-in-out infinite reverse;
}

.leaf {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.35;
  animation: float 6s ease-in-out infinite;
}

.leaf-1 { top: 18%; left: 12%; animation-delay: 0s; }
.leaf-2 { top: 65%; right: 15%; animation-delay: 2s; font-size: 2rem; }
.leaf-3 { bottom: 20%; left: 40%; animation-delay: 4s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 30px); }
}

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

/* Layout */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 24px 32px;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(46, 125, 50, 0.12);
  padding: 10px 18px;
  border-radius: 16px;
}

.logo-icon {
  font-size: 1.6rem;
}

.logo strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.logo small {
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 500;
}

/* Hero */
.badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

h1 span {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 32px;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.countdown div {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(46, 125, 50, 0.1);
  border-radius: 18px;
  padding: 24px 28px;
  min-width: 100px;
  box-shadow: 0 8px 24px rgba(46, 125, 50, 0.06);
}

.countdown span {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.countdown small {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tags span {
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(46, 125, 50, 0.08);
  color: var(--green-dark);
  font-weight: 500;
}

/* Footer */
footer {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

footer p {
  font-size: 0.8rem;
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(46, 125, 50, 0.1);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(46, 125, 50, 0.15);
}

/* Mobile */
@media (max-width: 480px) {
  .countdown {
    gap: 10px;
  }

  .countdown div {
    min-width: 72px;
    padding: 16px 12px;
  }

  .countdown span {
    font-size: 2rem;
  }
}
