*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0c0c0c;
  color: #f0f0f0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

body::before {
  content: '';
  display: block;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 30%,
    rgba(255, 255, 255, 0.22) 70%,
    transparent 100%
  );
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  user-select: none;
}

.wordmark img {
  object-fit: contain;
}

.wordmark-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}

.wordmark-top {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.14em;
  color: #f0f0f0;
}

.wordmark-bot {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 9.5px;
  letter-spacing: 0.20em;
  color: rgba(255, 255, 255, 0.35);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f0f0f0;
  opacity: 0.7;
  animation: pulse 2.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 0.08; }
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
  animation: fadein 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 560px;
  padding: 0 24px;
}

.overline {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 20px;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(62px, 11vw, 96px);
  letter-spacing: 0.025em;
  line-height: 0.9;
  color: #f0f0f0;
  margin-bottom: 32px;
}

.divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.22), transparent);
  margin-bottom: 26px;
}

.copy {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.46);
  line-height: 1.9;
}

.copy strong {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 52px;
  height: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.footer-r {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  header {
    padding: 0 20px;
  }

  footer {
    padding: 0 20px;
    justify-content: center;
  }
}
