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

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #fcfcfc;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
  margin: 0 auto;
  padding: 48px 24px 24px;
}

.logo {
  width: 220px;
  height: auto;
  margin-bottom: 32px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 24px;
}

.dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

.about {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 32px;
}

.divider {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #374151;
}

.label {
  flex-shrink: 0;
  width: 56px;
  font-weight: 600;
  color: #9ca3af;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 1px;
}

.contact-item a {
  color: #1a1a1a;
  text-decoration: none;
}

.contact-item a:hover {
  color: #22c55e;
}

.footer {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.78rem;
  color: #9ca3af;
}
