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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  width: 100%;
  padding: 3rem 1.5rem;
}

.container {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 0.8s ease-out both;
}

.logo {
  display: block;
  margin: 0 auto 3.5rem;
  width: min(80vw, 420px);
  height: auto;
}

.message {
  margin-bottom: 2.5rem;
}

h1 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

.subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: #555;
}

.divider {
  border: none;
  height: 1px;
  background: #e0e0e0;
  width: 60px;
  margin: 0 auto 2.5rem;
}

.social {
  margin-bottom: 2rem;
}

.social p {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.75rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.instagram-link:hover {
  color: #c13584;
}

.contact p {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.4rem;
}

.contact a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 300;
  transition: color 0.2s ease;
}

.contact a:hover {
  color: #555;
}

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

@media (max-width: 480px) {
  h1 {
    font-size: 1.25rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .logo {
    margin-bottom: 2.5rem;
  }
}
