/* Variables */
:root {
  --primary: #e91e63;
  --primary-dark: #c2185b;
  --primary-light: #f8bbd9;
  --secondary: #9c27b0;
  --dark: #1a1a2e;
  --darker: #0f0f1a;
  --white: #ffffff;
  --gray: rgba(255, 255, 255, 0.7);
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--darker);
  color: var(--white);
  overflow-x: hidden;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(233, 30, 99, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(156, 39, 176, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(233, 30, 99, 0.2) 0%, transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.logo-icon {
  font-size: 2.5rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.logo-text {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Typography */
h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(233, 30, 99, 0.3);
}

h1 .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Features */
.features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--gray);
}

.feature-icon {
  font-size: 1.25rem;
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: var(--gradient);
  color: var(--white);
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(233, 30, 99, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(233, 30, 99, 0.5);
}

.cta-button .arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(5px);
}

.hint {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--gray);
}

/* Floating Hearts */
.hearts {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.heart {
  position: absolute;
  color: var(--primary);
  opacity: 0.15;
  font-size: 2rem;
  animation: float 15s infinite ease-in-out;
}

.heart:nth-child(1) { left: 10%; animation-delay: 0s; font-size: 1.5rem; }
.heart:nth-child(2) { left: 30%; animation-delay: 3s; font-size: 2rem; }
.heart:nth-child(3) { left: 50%; animation-delay: 6s; font-size: 1rem; }
.heart:nth-child(4) { left: 70%; animation-delay: 9s; font-size: 2.5rem; }
.heart:nth-child(5) { left: 90%; animation-delay: 12s; font-size: 1.5rem; }

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.15;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Network Section */
.network-section {
  padding: 40px 24px;
  background: rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.network-section > div h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}

.network-section > div ul {
  list-style: none;
}

.network-section > div ul li {
  margin-bottom: 6px;
}

.network-section > div ul li a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.3s;
}

.network-section > div ul li a:hover {
  color: var(--primary);
}

@media (max-width: 900px) {
  .network-section {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .network-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Footer */
footer {
  padding: 40px 24px;
  text-align: center;
  background: var(--darker);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links .divider {
  color: rgba(255, 255, 255, 0.2);
}

.copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.copyright a {
  color: var(--primary);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
  .features {
    flex-direction: column;
    gap: 16px;
  }

  .feature {
    justify-content: center;
  }

  .cta-button {
    padding: 16px 36px;
    font-size: 1rem;
  }
}
