:root {
  --bg: #071418;
  --bg-soft: #0d1f24;
  --text: #f0f4f2;
  --muted: #b8c7c2;
  --line: rgba(240, 244, 242, 0.14);
  --accent: #ffbf00;
  --accent-2: #00d084;
  --card: rgba(13, 31, 36, 0.76);
  --danger: #ff5f4a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 208, 132, 0.20), transparent 38%),
    radial-gradient(circle at 85% 15%, rgba(255, 191, 0, 0.16), transparent 35%),
    linear-gradient(140deg, var(--bg) 15%, #0b1b20 60%, #132930 100%);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  position: relative;
  overflow-x: hidden;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.10;
  background-image: radial-gradient(#ffffff 0.4px, transparent 0.4px);
  background-size: 3px 3px;
}

.topbar {
  width: min(1120px, 92vw);
  margin: 1.2rem auto 0;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(8, 22, 27, 0.6);
  position: sticky;
  top: 1rem;
  z-index: 20;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1.4px;
  font-size: 1.7rem;
}

nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--text);
}

.btn-mini {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
}

.btn-mini-primary {
  background: linear-gradient(90deg, var(--accent), #ffd34a);
  color: #152126;
  border-color: transparent;
}

main {
  width: min(1120px, 92vw);
  margin: 2.8rem auto 4rem;
}

.hero h1 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 8vw, 6.4rem);
  letter-spacing: 1.6px;
  line-height: 0.95;
  max-width: 13ch;
}

.kicker {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.84rem;
}

.subtitle {
  max-width: 54ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  min-height: 44px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), #ffd34a);
  color: #152126;
  box-shadow: 0 8px 25px rgba(255, 191, 0, 0.24);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.score-ticker {
  margin-top: 1.8rem;
  display: inline-flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  color: var(--muted);
}

.pill {
  font-size: 0.8rem;
  color: #0c1d22;
  font-weight: 700;
  background: var(--accent-2);
  border-radius: 999px;
  padding: 0.16rem 0.5rem;
}

.countdown-wrap {
  margin-top: 1.8rem;
}

.countdown-wrap p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(75px, 120px));
  gap: 0.7rem;
}

.countdown div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  padding: 0.7rem 0.6rem;
  text-align: center;
}

.countdown strong {
  display: block;
  font-size: 1.4rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.countdown span {
  color: var(--muted);
  font-size: 0.82rem;
}

.cards {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.cards article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.1rem;
  background: var(--card);
}

.cards h2 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
}

.cards p {
  margin: 0;
  color: var(--muted);
}

.highlight {
  margin-top: 2.2rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  padding: 1.5rem;
  background:
    linear-gradient(120deg, rgba(0, 208, 132, 0.12), rgba(255, 191, 0, 0.08)),
    var(--card);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.highlight h2 {
  margin: 0.25rem 0 0.65rem;
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
}

.highlight p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.faq {
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.2rem;
  background: var(--card);
}

.faq h2 {
  margin-top: 0;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
}

.faq details:first-of-type {
  border-top: none;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  color: var(--muted);
  margin: 0.55rem 0 0;
}

footer {
  width: min(1120px, 92vw);
  margin: 0 auto 2.5rem;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.34s;
}

.delay-3 {
  animation-delay: 0.48s;
}

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

@media (max-width: 960px) {
  nav a:not(.btn-mini) {
    display: none;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .highlight {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .topbar {
    width: 94vw;
    margin-top: 0.7rem;
    padding: 0.65rem 0.75rem;
  }

  .brand {
    font-size: 1.45rem;
  }

  .btn-mini {
    padding: 0.5rem 0.9rem;
  }

  .btn-mini-primary {
    white-space: nowrap;
  }

  main {
    margin-top: 1.8rem;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 15vw, 3.8rem);
    line-height: 0.96;
  }

  .subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .score-ticker {
    border-radius: 16px;
    padding: 0.6rem 0.7rem;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(60px, 1fr));
  }

  footer {
    margin-bottom: 1.4rem;
  }
}
