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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1a1a1a;
  z-index: 50;
  height: 80px;
}

.logo {
  height: 32px;
}

.cta-header {
  padding: 0.75rem 1.5rem;
  background: #FF1B4E;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.cta-header:hover {
  background: #E01842;
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 120px 2rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-left {
  flex: 1;
  max-width: 600px;
}

.hero-left h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-left h1 .highlight {
  color: #FF1B4E;
}

.hero-left .sub {
  font-size: 1.25rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-main {
  display: inline-block;
  padding: 1.25rem 3rem;
  background: #FF1B4E;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 12px;
  transition: all 0.2s;
  box-shadow:
    inset 0 2px 0 0 rgba(255, 255, 255, 0.2),
    inset 0 3px 10px 0 rgba(0, 0, 0, 0.35),
    0 6px 20px 0 rgba(255, 27, 78, 0.5);
}

.cta-main:hover {
  background: #E01842;
  transform: translateY(-2px);
  box-shadow:
    inset 0 2px 0 0 rgba(255, 255, 255, 0.2),
    inset 0 3px 10px 0 rgba(0, 0, 0, 0.35),
    0 8px 25px 0 rgba(255, 27, 78, 0.6);
}

.features {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #9ca3af;
}

.hero-right {
  flex: 1;
  position: relative;
  max-width: 600px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow:
    0 0 80px rgba(255, 27, 78, 0.5),
    0 20px 40px rgba(0, 0, 0, 0.6);
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: -3rem;
  border-radius: 1rem;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 27, 78, 0.75) 0%,
    rgba(255, 27, 78, 0.55) 30%,
    rgba(255, 27, 78, 0.3) 50%,
    transparent 75%
  );
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    gap: 3rem;
    padding: 100px 1.5rem 2rem;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .hero-left .sub {
    font-size: 1.1rem;
  }

  .cta-main {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 1rem 1.5rem;
    height: 70px;
  }

  .logo {
    height: 28px;
  }

  .cta-header {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  .hero {
    padding: 90px 1.5rem 2rem;
  }

  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-left .sub {
    font-size: 1rem;
  }

  .cta-main {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .features {
    font-size: 0.85rem;
  }
}
