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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #0a0a0a;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 700px;
}

.logo {
  width: 120px;
  margin-bottom: 32px;
}

h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.subtitle {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

.cta {
  display: inline-block;
  background: #2563eb;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer {
  text-align: center;
  padding: 40px 0;
  color: #777;
  font-size: 0.9rem;
}