@font-face {
  font-family: 'Amazing Grotesk';
  src: url('Amazing Grotesk Demi.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #58595b;
  font-family: 'Amazing Grotesk', 'Segoe UI', Verdana, Arial, sans-serif;
  text-align: center;
  padding: 40px 20px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 900px;
}

.logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 32px;
}

.title {
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 800;
  color: #c9c9c9;
  line-height: 1.3;
}

.title .accent {
  color: #ffa066;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #d6d6d6;
  letter-spacing: 1px;
}

.contact {
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #d6d6d6;
}

.email-link {
  color: #d6d6d6;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.email-link:hover {
  color: #ffa066;
}

@media (max-width: 768px) {
  .container {
    gap: 24px;
  }

  .logo {
    max-width: 360px;
    border-radius: 24px;
  }

  .contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 24px 16px;
  }

  .container {
    gap: 18px;
  }

  .logo {
    max-width: 260px;
    border-radius: 16px;
  }

  .subtitle {
    letter-spacing: 0.5px;
  }

  .email-link {
    word-break: break-all;
  }
}
