
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  color: #1d1d1f;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

header {
  text-align: center;
  padding: 120px 20px 60px;
  animation: fadeIn 1s ease-in-out;
}

.logo {
  height: 100px;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

h1 {
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.tagline {
  font-size: 1.4rem;
  color: #6e6e73;
  margin-top: 10px;
}

main {
  text-align: center;
  padding: 40px 20px 80px;
  animation: fadeInUp 1.2s ease-in-out;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #1d1d1f;
  margin-bottom: 20px;
}

.subtext {
  font-size: 1.15rem;
  color: #6e6e73;
  max-width: 600px;
  margin: 0 auto;
}

footer {
  font-size: 0.9rem;
  color: #6e6e73;
  text-align: center;
  padding: 40px 20px 20px;
  border-top: 1px solid #e5e5ea;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
