* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary-purple: #8a2be2;
  --primary-pink: #ff69b4;
  --light-pink: #ffb6c1;
  --dark-bg: #1a1a2e;
  --text-light: #ffffff;
  --text-gray: #cccccc;
}

body {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 100%);
  color: var(--text-light);
  overflow-x: hidden;
}

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header Styles */
header {
  padding: 30px 0;
  position: relative;
  z-index: 10;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    45deg,
    var(--primary-purple),
    var(--primary-pink)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(
    45deg,
    var(--primary-purple),
    var(--primary-pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--text-light);
}

.cta-button {
  background: linear-gradient(
    45deg,
    var(--primary-purple),
    var(--primary-pink)
  );
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

/* Hero Section - Asymmetric Layout */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 90vh;
  position: relative;
  padding: 60px 0;
}

.hero-content {
  padding-right: 50px;
}

.hero-subtitle {
  font-size: 24px;
  color: var(--primary-pink);
  margin-bottom: 20px;
}

.hero-title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  background: linear-gradient(
    45deg,
    var(--primary-purple),
    var(--primary-pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-image {
  position: relative;
  transform: translateY(40px);
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #2d2d4a, #1a1a2e);
  border-radius: 40px;
  padding: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  margin-left: auto;
  transform: rotate(-5deg);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--primary-purple),
    var(--primary-pink)
  );
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
  position: relative;
}

.phone-screen::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="rgba(138, 43, 226, 0.2)"/><path d="M30,30 L70,70 M70,30 L30,70" stroke="rgba(255, 255, 255, 0.3)" stroke-width="8"/></svg>');
  background-size: cover;
  opacity: 0.2;
}

.floating-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(
    45deg,
    var(--primary-purple),
    var(--primary-pink)
  );
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(50px);
  z-index: -1;
  top: -50px;
  right: -50px;
}

/* Asymmetric Features Section */
.features {
  padding: 120px 0;
}

.section-title {
  font-size: 40px;
  margin-bottom: 80px;
  font-weight: 700;
  text-align: right;
  padding-right: 100px;
}

.gradient-text {
  background: linear-gradient(
    45deg,
    var(--primary-purple),
    var(--primary-pink)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-card:nth-child(odd) {
  transform: translateX(-40px);
}

.feature-card:nth-child(even) {
  transform: translateX(40px);
}

.feature-card:hover {
  transform: translateY(-10px) !important;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    45deg,
    var(--primary-purple),
    var(--primary-pink)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 30px;
}

.feature-title {
  font-size: 24px;
  margin-bottom: 15px;
}

.feature-description {
  color: var(--text-gray);
  line-height: 1.6;
}

/* Asymmetric Screenshots */
.screenshots {
  padding: 100px 0;
}

.screenshot-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.screenshot {
  width: 250px;
  height: 500px;
  background: linear-gradient(145deg, #2d2d4a, #1a1a2e);
  border-radius: 40px;
  padding: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
}

.screenshot:nth-child(1) {
  transform: rotate(5deg) translateX(60px);
}

.screenshot:nth-child(2) {
  transform: rotate(-2deg) translateY(40px);
}

.screenshot:nth-child(3) {
  transform: rotate(-7deg) translateX(-60px);
}

.screenshot-content {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}

/* Asymmetric CTA Section */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(
    45deg,
    rgba(138, 43, 226, 0.1),
    rgba(255, 105, 180, 0.1)
  );
  border-radius: 40px;
  margin: 80px 40px;
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  margin: 0 auto 40px;
  line-height: 1.6;
  max-width: 600px;
}

.cta-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(
    45deg,
    var(--primary-purple),
    var(--primary-pink)
  );
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(60px);
  z-index: 1;
}

.cta-shape-1 {
  top: -100px;
  left: -100px;
}

.cta-shape-2 {
  bottom: -100px;
  right: -100px;
}

/* Footer */
footer {
  padding: 60px 0 30px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-email {
  color: var(--primary-pink);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-email:hover {
  color: var(--text-light);
}

.copyright {
  color: var(--text-gray);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-description {
    margin: 0 auto 40px;
  }

  .phone-mockup {
    margin: 0 auto;
  }

  .feature-card:nth-child(odd),
  .feature-card:nth-child(even) {
    transform: translateX(0);
  }

  .screenshot:nth-child(1),
  .screenshot:nth-child(2),
  .screenshot:nth-child(3) {
    transform: rotate(0) translateX(0) translateY(0);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 40px;
  }

  .section-title {
    font-size: 32px;
    text-align: center;
    padding-right: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    text-align: center;
  }

  .screenshot {
    width: 200px;
    height: 400px;
  }

  .cta-section {
    margin: 40px 20px;
  }
}

/* Animation */
@keyframes float {
  0% {
    transform: translateY(0px) rotate(-5deg);
  }
  50% {
    transform: translateY(-20px) rotate(-5deg);
  }
  100% {
    transform: translateY(0px) rotate(-5deg);
  }
}

.floating {
  animation: float 5s ease-in-out infinite;
}
