:root {
  --green: #B1C900;
  --gray: #3E4250;
  --black: #231F20;
  --red: #E30016;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
}

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

html, body {
  min-height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(ellipse at top, #2a2628 0%, var(--black) 60%);
}

/* Decorative background */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}
.bg-glow--green {
  width: 500px; height: 500px;
  background: var(--green);
  top: -150px; left: -150px;
}
.bg-glow--red {
  width: 450px; height: 450px;
  background: var(--red);
  bottom: -150px; right: -150px;
  animation-delay: -6s;
  opacity: 0.25;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.1); }
}

/* Layout */
.container {
  position: relative;
  z-index: 1;
  flex: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.logo-wrap {
  background: var(--white);
  padding: 20px 32px;
  border-radius: 16px;
  box-shadow: 0 20px 60px -20px rgba(177, 201, 0, 0.4);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease both;
}
.logo {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(177, 201, 0, 0.4);
  background: rgba(177, 201, 0, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.accent-green { color: var(--green); }
.accent-red { color: var(--red); }

.subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.subtitle strong { color: var(--white); font-weight: 700; }

.about-brief {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--white);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s 0.5s ease both;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 32px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
}
.about-brief strong {
  color: var(--green);
  font-weight: 600;
}

/* Helper Classes */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Countdown */
.countdown {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s 0.5s ease both;
}
.count-box {
  min-width: 80px;
  padding: 16px 12px;
  background: rgba(62, 66, 80, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.count-box span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.count-box small {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* Contact */
.contact {
  width: 100%;
  max-width: 852px;
  animation: fadeInUp 0.8s 0.6s ease both;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  width: 100%;
}
.contact__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.contact__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 16px;
  min-height: 32px; /* keeps labels aligned if text wraps on some screens */
  display: flex;
  align-items: center;
  text-align: center;
}
.contact__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 240px;
  margin: 0 auto 16px;
}
.contact__buttons .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .contact__label {
    min-height: auto;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--green {
  background: var(--green);
  color: var(--black);
  box-shadow: 0 8px 24px -8px rgba(177, 201, 0, 0.6);
}
.btn--green:hover { box-shadow: 0 12px 32px -8px rgba(177, 201, 0, 0.8); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.btn--outline:hover {
  border-color: var(--red);
  color: var(--red);
}
.contact__note {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

@media (max-width: 480px) {
  .logo-wrap { padding: 16px 20px; }
  .logo { max-width: 240px; }
  .count-box { min-width: 68px; padding: 12px 8px; }
  .count-box span { font-size: 1.6rem; }
  .btn { padding: 12px 20px; font-size: 0.9rem; }
}
