@font-face {
  font-family: 'e-Ukraine';
  src: url('fonts/e-Ukraine-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'e-Ukraine';
  src: url('fonts/e-Ukraine-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colors from DESIGN_TOKENS.md */
  --color-navy:   #203A8F;
  --color-blue:   #0093C9;
  --color-yellow: #F9DC00;

  --color-bg:           #F5F5F3;
  --color-surface:      #FAFAF8;
  --color-surface-2:    #FFFFFF;
  --color-divider:      #E2E2E0;

  --color-text:         #1A1A1A;
  --color-text-muted:   #5A5A5A;
  --color-text-faint:   #9A9A9A;
  --color-text-inverse: #FFFFFF;

  --font-body: 'e-Ukraine', 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 600px;
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card {
  background-color: var(--color-surface-2);
  border: 1px solid var(--color-blue);
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(32, 58, 143, 0.05);
}

.logo {
  width: 144px;
  height: auto;
  margin-bottom: 24px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-yellow);
  color: var(--color-text);
  padding: 6px 14px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.title {
  font-size: 32px;
  color: var(--color-navy);
  margin-bottom: 8px;
  font-weight: 700;
}

.subtitle {
  font-size: 20px;
  color: var(--color-blue);
  margin-bottom: 32px;
  font-weight: 500;
  opacity: 0.8;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-divider);
  margin: 0 auto 32px;
  max-width: 400px;
}

.description {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.contact {
  font-size: 15px;
  color: var(--color-text);
}

.contact p {
  font-weight: 600;
  margin-bottom: 8px;
}

.email {
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.email:hover {
  color: var(--color-navy);
  transform: translateY(-1px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 147, 201, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 147, 201, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 147, 201, 0); }
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .card {
    padding: 40px 20px;
  }
  
  .title {
    font-size: 24px;
  }
  
  .subtitle {
    font-size: 18px;
  }
  
  .badge {
    padding: 4px 12px;
    font-size: 12px;
  }
}
