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

html,
body {
  min-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #ffffff;
  background: linear-gradient(135deg, #000000 0%, #18181b 50%, #7f1d1d 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.container {
  width: 100%;
  max-width: 48rem;
  text-align: center;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.logo {
  width: 140px;
  max-width: 28rem;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.5));
}

.badge {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.1);
  border-radius: 9999px;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.brand {
  color: #fb923c;
}

.lead {
  color: #d4d4d8;
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}

.actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background-color: #dc2626;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background-color: #b91c1c;
}

.btn-outline {
  border: 1px solid #3f3f46;
}

.btn-outline:hover {
  border-color: #ef4444;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}

.feature {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.feature h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature p {
  color: #a1a1aa;
  font-size: 0.875rem;
}

.contact {
  margin-top: 3rem;
  color: #a1a1aa;
  font-size: 0.875rem;
}

.contact p {
  margin-bottom: 0.5rem;
}

.copyright {
  margin-top: 2rem;
  color: #71717a;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .actions {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .title {
    font-size: 3.75rem;
  }

  .lead {
    font-size: 1.25rem;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .features {
    grid-template-columns: repeat(3, 1fr);
  }
}