:root {
  color-scheme: dark;
  --bg: #070b14;
  --panel: rgba(17, 24, 39, 0.92);
  --text: #f8f8fb;
  --muted: #cbd5e1;
  --accent: #ff6b3d;
  --accent-2: #3db4ff;
  --border: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, var(--bg), #14213d 60%, #1f2947);
  color: var(--text);
  min-height: 100vh;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
}

.content {
  width: min(100%, 720px);
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 1.75rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

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

.logo {
  width: min(100%, 260px);
  height: auto;
  display: block;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--accent-2);
  font-size: 0.8rem;
  margin: 0 0 0.7rem;
}

h1 {
  font-family: 'Luckiest Guy', cursive, Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin: 0 0 0.8rem;
  letter-spacing: 0.06em;
}

.lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 auto 1.5rem;
  max-width: 600px;
}

.socials {
  display: grid;
  grid-template-columns: repeat(5, minmax(96px, 1fr));
  gap: 1rem;
  justify-content: center;
  margin: 1.2rem auto 0;
  max-width: 620px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 96px;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 220ms ease, filter 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.socials a:hover,
.socials a:focus-visible {
  animation: social-pop 0.55s ease-in-out;
  transform: translateY(-3px) scale(1.14);
  filter: brightness(1.12);
}

.socials img {
  width: min(64%, 76px);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.3));
}

@keyframes social-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.14) rotate(-3deg); }
  70% { transform: scale(1.1) rotate(2deg); }
  100% { transform: scale(1.14) rotate(0deg); }
}

@media (max-width: 640px) {
  .socials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    max-width: min(100%, 320px);
  }

  .socials a {
    min-height: 84px;
  }

  .socials img {
    width: min(62%, 44px);
  }
}

@media (max-width: 480px) {
  .content {
    padding: 1.6rem 1rem;
  }
}
