@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --green:       #1a7a35;
  --green-dark:  #145e28;
  --yellow:      #f5c400;
  --gray-50:     #f8faf8;
  --gray-200:    #e2e8e2;
  --gray-500:    #6b7c6b;
  --gray-700:    #374237;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-700);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Decorative background circles */
body::before {
  content: '';
  position: fixed;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,122,53,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,196,0,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Construction stripes */
.stripes-top,
.stripes-bottom {
  height: 10px;
  flex-shrink: 0;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow)    0px,
    var(--yellow)    12px,
    #1a1a1a          12px,
    #1a1a1a          24px
  );
  position: relative;
  z-index: 1;
}

/* Main container */
.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Logo */
.logo-wrap {
  margin-bottom: 36px;
  animation: floatIn 0.7s ease-out both;
}

.logo {
  width: 420px;
  height: 420px;
  object-fit: contain;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  animation: floatIn 0.7s 0.1s ease-out both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245,196,0,0.25);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Title */
.title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-700);
  margin-bottom: 20px;
  animation: floatIn 0.7s 0.2s ease-out both;
}

.title-accent {
  color: var(--green);
}

/* Subtitle */
.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--gray-500);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: floatIn 0.7s 0.3s ease-out both;
}

/* Divider */
.divider {
  width: 60px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), var(--yellow));
  margin: 0 auto 24px;
  animation: floatIn 0.7s 0.35s ease-out both;
}

/* Slogan */
.slogan {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-dark);
  animation: floatIn 0.7s 0.4s ease-out both;
}

.bullet {
  color: var(--yellow);
  margin: 0 10px;
  font-size: 16px;
}

/* Footer */
.footer {
  padding: 20px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  border-top: 1px solid var(--gray-200);
  background: #ffffff;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(245,196,0,0.25); }
  50%       { box-shadow: 0 0 0 7px rgba(245,196,0,0.08); }
}

/* Responsive */
@media (max-width: 480px) {
  .logo {
    width: 240px;
    height: 240px;
  }
}
