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

:root {
  --black: #030303;
  --yellow: #ffe436;
  --gold: #d6a700;
  --white: #ffffff;
  --muted: #b8b8b8;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: radial-gradient(circle at center, #101010 0%, var(--black) 55%, #000 100%);
  color: var(--white);
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 228, 54, 0.18);
  filter: blur(90px);
  animation: float 7s ease-in-out infinite;
  pointer-events: none;
}

.glow-one {
  top: 12%;
  left: 8%;
}

.glow-two {
  bottom: 10%;
  right: 10%;
  animation-delay: 2s;
}

.card {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  text-align: center;
  padding: 48px 28px;
  border: 1px solid rgba(255, 228, 54, 0.22);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 70px rgba(255, 228, 54, 0.08);
  backdrop-filter: blur(12px);
}

.logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 24px;
  box-shadow: 0 0 32px rgba(255, 228, 54, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logo:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 0 46px rgba(255, 228, 54, 0.55);
}

.eyebrow {
  color: var(--yellow);
  letter-spacing: 0.28em;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

h1 {
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 1;
  margin-bottom: 16px;
}

.subtext {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 410px;
  margin: 0 auto 32px;
}

.socials {
  display: grid;
  gap: 14px;
}

.socials a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  padding: 16px 20px;
  border: 1px solid rgba(255, 228, 54, 0.32);
  border-radius: 999px;
  background: rgba(255, 228, 54, 0.06);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.socials a:hover {
  transform: translateY(-4px);
  color: #000;
  background: var(--yellow);
  box-shadow: 0 0 30px rgba(255, 228, 54, 0.32);
}


.socials a.contact-link {
  border-color: rgba(255, 228, 54, 0.7);
  background: linear-gradient(135deg, rgba(255, 228, 54, 0.18), rgba(214, 167, 0, 0.08));
}

.email-note {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
}

.fade-in {
  animation: fadeIn 900ms ease both;
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-24px) scale(1.08);
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 20px;
  }

  .card {
    padding: 38px 22px;
    border-radius: 26px;
  }

  .logo {
    width: 130px;
    height: 130px;
  }
}
