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

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 860px;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeDown 0.7s ease both;
}

.header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 0%, #8890a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header__subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 0.5rem;
  font-weight: 300;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  width: 100%;
}

.footer {
  margin-top: 2.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1e3060;
}

.footer__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.footer__item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__item:hover {
  color: var(--text);
}

.footer__item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.footer__sep {
  color: #1e3060;
  font-size: 0.9rem;
  user-select: none;
}

.footer__copy {
  font-size: 0.75rem;
  color: #3a4260;
}

@media (max-width: 600px) {
  body {
    padding: 1.25rem;
  }

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

  .footer__sep {
    display: none;
  }
}