* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background: #f8fafc;
}

.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 64px 24px 24px;
}

.logo {
  width: 96px;
  height: 96px;
}

.content {
  max-width: 520px;
}

h1 {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.6;
  color: #334155;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  background: #0f172a;
  color: #f8fafc;
  font-weight: 600;
}

.btn:hover {
  background: #1e293b;
}

.footer {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: #64748b;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  color: #0f172a;
}

.divider {
  color: #94a3b8;
}

@media (max-width: 720px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
}
