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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #FAF8F5;
  min-height: 100vh;
  color: #3a3a3a;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Header */
header {
  text-align: center;
  padding: 3rem 0 0;
}

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

/* Main */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 0;
}

.hero {
  max-width: 560px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(58, 58, 58, 0.1);
}

.tagline {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #6b6560;
  text-align: center;
  max-width: 440px;
  line-height: 1.5;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #ede8dd;
  width: 100%;
  margin-top: 2rem;
}

footer p {
  color: #a09a92;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 640px) {
  .container {
    padding: 1.5rem;
  }

  .hero {
    border-radius: 12px;
  }

  .tagline {
    font-size: 0.95rem;
  }

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