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

:root {
  --bg: #FFFFFF;
  --pink: #ff2f8a;
  --pink-hot: #ff4f97;
  --orange: #ff8a2b;
}

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

body {
  min-height: 100vh;
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  padding: 40px 24px;
}

.logo-wrap {
  width: min(90vw, 900px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 100%;
  height: auto;
  display: block;

  transform: translateX(0%);

  filter:
    drop-shadow(0 0 12px rgba(255, 47, 138, 0.35))
    drop-shadow(0 0 28px rgba(255, 47, 138, 0.22))
    drop-shadow(0 0 48px rgba(255, 138, 43, 0.18));
}

.contact-btn {
  position: relative;
  z-index: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  padding: 14px 40px;
  color: white;
  text-decoration: none;

  background: linear-gradient(135deg, #400030, #FF007A);

clip-path: polygon(
 8% 0%,
  92% 0%,
  100% 15%,
  90% 100%,
  8% 100%,
  0% 85%
);

  transition: transform 0.2s ease;
}

.btn-wrap::before {
  content: "";
  position: absolute;
  inset: -14px;

  background: radial-gradient(
    circle,
    rgba(64, 0, 48, 0.6),
    rgba(255, 0, 122, 0.35),
    transparent 70%
  );

  filter: blur(20px);
  z-index: 0;
  pointer-events: none;

  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.contact-btn:hover::before {
  filter: blur(24px);
  opacity: 1;
}

.contact-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 22px rgba(255, 0, 122, 0.9),
    0 0 45px rgba(255, 122, 0, 0.6);
}

.contact-btn:active {
  transform: scale(0.97);
}

.btn-wrap {
  position: relative;
  display: inline-block;
}

@media (max-width: 700px) {
  .hero {
    gap: 90px;
  }

  .logo-wrap {
    width: min(86vw, 520px);
  }

  .logo {
    transform: translateX(1.8%);
  }

  .contact-btn {
    font-size: 15px;
    padding: 13px 28px;
  }
}