@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --accent: #00ffc3;
  --accent-dim: rgba(0, 255, 195, 0.10);
  --accent-glow: rgba(0, 255, 195, 0.35);
  --accent-hover: #00d9a8;
  --bg-deep: #070d12;
  --text-primary: #eef2f5;
  --text-secondary: #7a96a8;
}

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

body {
  background-color: var(--bg-deep);
  background-image:
    linear-gradient(rgba(0, 255, 195, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 195, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Animated background orbs */
body::before {
  content: '';
  position: fixed;
  width: 800px;
  height: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 255, 195, 0.055) 0%, transparent 65%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite alternate;
}

@keyframes pulse {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  to {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
}

/* Logo */
.logo {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(0, 255, 195, 0.3);
  box-shadow: 0 0 40px rgba(0, 255, 195, 0.25), 0 0 80px rgba(0, 255, 195, 0.1);
  margin-bottom: 1.5rem;
  animation: fadeDown 0.7s ease both;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.logo:hover {
  box-shadow: 0 0 60px rgba(0, 255, 195, 0.45), 0 0 120px rgba(0, 255, 195, 0.15);
  transform: scale(1.04);
}

/* Heading */
h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  animation: fadeDown 0.7s 0.1s ease both;
  position: relative;
  z-index: 1;
}

/* Tagline */
p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
  animation: fadeDown 0.7s 0.2s ease both;
  position: relative;
  z-index: 1;
}

/* Buttons row */
.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 820px;
  padding: 0 1.5rem;
  animation: fadeDown 0.7s 0.3s ease both;
  position: relative;
  z-index: 1;
}

.buttons>div {
  display: flex;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50px;
}

.button:hover::before {
  opacity: 1;
}

.button:hover {
  color: #000;
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-2px);
}

.button span,
.button {
  position: relative;
  z-index: 1;
}

/* Center button — slightly more prominent */
.buttons>div:nth-child(2) .button {
  background: var(--accent);
  color: #000;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 255, 195, 0.3);
  padding: 1rem 2.1rem;
  font-size: 1rem;
}

.buttons>div:nth-child(2) .button::before {
  background: #fff;
}

.buttons>div:nth-child(2) .button:hover {
  box-shadow: 0 0 36px rgba(0, 255, 195, 0.5);
  color: #000;
}

/* Animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 640px) {
  body {
    height: auto;
    min-height: 100vh;
    padding: 3rem 1.25rem;
  }

  .buttons {
    grid-template-columns: 1fr;
    max-width: 380px;
    gap: 0.85rem;
  }

  .buttons>div {
    justify-content: center !important;
  }

  .button {
    width: 100%;
    max-width: 320px;
  }

  .buttons>div:nth-child(2) .button {
    padding: 0.9rem 1.75rem;
  }
}