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

:root {
  --color-bg:           #0d1117;
  --color-surface:      #161b22;
  --color-primary:      #4169e1;
  --color-primary-dark: #2d4bb8;
  --color-text:         #e6edf3;
  --color-text-muted:   #8b949e;
  --color-border:       #21262d;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  -webkit-font-smoothing: antialiased;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.wordmark-icon {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wordmark-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.wordmark-name {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.wordmark-name span {
  color: var(--color-primary);
}

.divider {
  width: 1px;
  height: 48px;
  background: var(--color-border);
  margin-bottom: 3rem;
}

.headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-align: center;
  max-width: 640px;
  margin-bottom: 1.5rem;
}

.headline em {
  font-style: normal;
  color: var(--color-primary);
}

.subline {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 400px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.badge {
  margin-top: 3.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.eu-note {
  margin-top: 3rem;
  font-size: 0.72rem;
  color: var(--color-border);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-align: center;
}

@media (min-width: 481px) {
  .eu-note {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .wordmark-name { font-size: 1.25rem; }
}
