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

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(180deg, #5B9A8B 0%, #4A7C6F 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
  padding: 2rem;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.logo {
  width: 160px;
  height: 160px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.brand-name {
  font-size: 3rem;
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
}

.coming-soon {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .logo {
    width: 200px;
    height: 200px;
  }

  .brand-name {
    font-size: 4rem;
  }

  .coming-soon {
    font-size: 1.5rem;
  }
}
