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

:root {
  --blue-dark: #1a2769;
  --blue-mid: #1b75bc;
  --blue-light: #29abe2;
  --blue-bg: #eaf4fb;
  --white: #ffffff;
  --text-muted: #5a7a9a;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  background: linear-gradient(160deg, #deeef8 0%, #f0f7fd 50%, #e2f0f9 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(26, 39, 105, 0.12), 0 2px 12px rgba(26, 117, 188, 0.08);
  padding: 48px 56px;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.logo {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blue-light), transparent);
  margin: 24px 0;
}

.slogan {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-mid);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.coords {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.coord-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--blue-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue-light);
}

.coord-row a {
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.coord-row a:hover {
  color: var(--blue-light);
}

.construction {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 520px) {
  .card {
    padding: 36px 28px;
  }

  .slogan {
    font-size: 0.9rem;
  }
}
