:root {
  --text-dark: #1a1a1a;
  --text-muted: #7a7a7a;
  --line: #aaaaaa;
  --bg: #fafafa;
  --bg-page: #f4f4f4;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg-page);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.card {
  background: var(--bg);
  width: 100%;
  max-width: 560px;
  padding: 56px 48px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.brand h1 {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0 0 6px 0;
  color: var(--text-dark);
}

.tagline {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 28px 0;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 48px 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  margin-bottom: 48px;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  font-size: 1.05rem;
}

.contact .name {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.footer {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 300;
}

.footer a:hover {
  color: var(--text-dark);
}

.social {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.social a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social a:hover {
  color: var(--text-muted);
}

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

  .brand h1 {
    font-size: 1.7rem;
  }

  .footer {
    flex-wrap: wrap;
  }
}
