* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    system-ui,
    "Inter",
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    sans-serif;
  background-color: #0b0710;
  color: #f3eefc;
  line-height: 1.4;
  scroll-behavior: smooth;
}

/* background image with dark purple translucent overlay */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("https://images.pexels.com/photos/1366957/pexels-photo-1366957.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(45, 15, 70, 0.75),
    rgba(20, 10, 40, 0.85)
  );
  backdrop-filter: brightness(0.9);
  z-index: 1;
}

/* main container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 3;
}

/* header navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(200, 170, 255, 0.2);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #e9caff, #b77eff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.logo span {
  font-size: 1rem;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #cdb5ff;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: #e9dcff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
  font-size: 1rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
}

.nav-links a:hover {
  color: #f1e2ff;
  border-bottom-color: #b77eff;
}

/* sections */
section {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(190, 150, 255, 0.15);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(120deg, #f0e6ff, #c6a0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

/* banner */
.banner {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}

.banner h1 {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #cfb0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 700px;
}

.banner p {
  font-size: 1.25rem;
  max-width: 600px;
  color: #ded0ff;
  line-height: 1.5;
}

.banner .badge {
  background: rgba(110, 60, 170, 0.35);
  backdrop-filter: blur(6px);
  border-radius: 60px;
  padding: 0.4rem 1.2rem;
  font-size: 0.9rem;
  border: 1px solid rgba(180, 130, 255, 0.6);
  color: #e5d5ff;
}

/* intro & features grid layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: rgba(20, 12, 35, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  padding: 1.8rem;
  border: 1px solid rgba(170, 120, 255, 0.25);
  transition: all 0.25s;
}

.feature-card:hover {
  border-color: #b27eff;
  background: rgba(28, 18, 48, 0.7);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 600;
  background: linear-gradient(145deg, #f1e8ff, #cdabff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-card p {
  color: #cfc5ec;
  line-height: 1.5;
}

/* split content: text + app screenshot */
.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}

.split-text {
  flex: 1;
  min-width: 260px;
}

.split-text h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(120deg, #f2e9ff, #caa9ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.split-text p {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: #e1d4ff;
}

.split-media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mockup-img {
  max-width: 280px;
  width: 100%;
  border-radius: 2.5rem;
  box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(200, 165, 255, 0.4);
  transition: transform 0.2s ease;
}

.mockup-img:hover {
  transform: scale(1.02);
}

/* screenshot optional gallery */
.screenshot-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.screenshot-item {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 2rem;
  padding: 0.75rem;
  backdrop-filter: blur(4px);
  border: 1px solid #8055c0;
  transition: all 0.2s;
}

.screenshot-item img {
  width: 200px;
  height: auto;
  border-radius: 1.4rem;
  display: block;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

/* community & inspiration block */
.community-block {
  background: rgba(35, 20, 60, 0.45);
  backdrop-filter: blur(8px);
  border-radius: 2rem;
  padding: 2rem;
  margin-top: 1rem;
  border-left: 4px solid #aa77ff;
}

/* footer */
footer {
  padding: 2.5rem 0 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  border-top: 1px solid rgba(170, 130, 255, 0.25);
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #ccbbff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #f0e2ff;
}

.contact-email {
  font-family: monospace;
  background: rgba(90, 55, 145, 0.5);
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  backdrop-filter: blur(4px);
  font-size: 0.95rem;
}

.copyright {
  font-size: 0.8rem;
  color: #b8a8e0;
}

/* responsive */
@media (max-width: 800px) {
  .container {
    padding: 0 1.5rem;
  }
  .banner h1 {
    font-size: 2.4rem;
  }
  .section-title {
    font-size: 2rem;
  }
  header {
    flex-direction: column;
    gap: 1rem;
  }
  .nav-links {
    gap: 1.2rem;
  }
  .split-section {
    flex-direction: column;
  }
  .mockup-img {
    max-width: 240px;
  }
  section {
    padding: 3rem 0;
  }
}

@media (max-width: 550px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .screenshot-item img {
    width: 150px;
  }
}

/* custom smooth */
::selection {
  background: #b77eff;
  color: #0f071a;
}
