* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Helvetica,
    sans-serif;
  background: #0b0719;
  color: #f1edfc;
  scroll-behavior: smooth;
  line-height: 1.45;
}

/* white-tinted background + dark purple semi-transparent gradient overlay */
.bg-wall {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("https://images.pexels.com/photos/325185/pexels-photo-325185.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: brightness(0.94) contrast(1.02);
}

.purple-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    125deg,
    rgba(88, 28, 185, 0.45) 0%,
    rgba(0, 0, 0, 0.78) 100%
  );
  backdrop-filter: blur(2px);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.8rem 2rem 2rem;
}

/* header nav */
.main-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 1.2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 245, 255, 0.2);
}

.brand h1 {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(145deg, #ffffff, #cfabff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

.brand span {
  font-size: 0.75rem;
  font-weight: 400;
  color: #c7afff;
  display: block;
  margin-top: 0.2rem;
}

.nav-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-list a {
  color: #f0eaff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.2s;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
}

.nav-list a:hover {
  border-bottom-color: #bf8eff;
  color: white;
}

/* banner area */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 2rem 0 3rem;
}

.hero-content {
  flex: 1.2;
}

.hero-badge {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d9b6ff;
  margin-bottom: 0.75rem;
}

.hero-content h2 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #ffffff, #e3caff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-content p {
  font-size: 1.15rem;
  color: #e8defa;
  max-width: 550px;
  margin: 1rem 0 0.5rem;
}

.hero-mock {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.phone-frame {
  max-width: 260px;
  background: rgba(18, 10, 38, 0.45);
  backdrop-filter: blur(12px);
  border-radius: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 225, 255, 0.3);
  box-shadow: 0 25px 35px -12px black;
}

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 34px;
  display: block;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* section spacing */
section {
  scroll-margin-top: 5.5rem;
  margin: 4.5rem 0;
}

.section-head {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #f2e9ff, #c3a2ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* multi-block product description — creative split layout */
.description-loom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.row-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.info-card {
  flex: 1;
  background: rgba(25, 15, 48, 0.55);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  padding: 1.8rem;
  border-left: 4px solid #aa7aff;
  transition: 0.2s;
}

.info-card h3 {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.info-card p {
  color: #e2d2ff;
  margin-bottom: 0.5rem;
}

.grid-feature-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin: 2rem 0;
}

.feature-item {
  background: rgba(20, 12, 44, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 1.8rem;
  padding: 1.6rem;
  text-align: left;
  border: 1px solid rgba(210, 180, 255, 0.25);
}

.feature-item .emoji {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-item h4 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

/* horizontal scroll gallery for 5 screenshots */
.screenshot-showcase {
  margin: 2rem 0 1rem;
}

.gallery-scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0.5rem 1.5rem 0.5rem;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.gallery-scroll::-webkit-scrollbar {
  height: 5px;
}

.gallery-scroll::-webkit-scrollbar-track {
  background: #2a1f4a;
  border-radius: 10px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: #b07eff;
  border-radius: 10px;
}

.shot-card {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border-radius: 34px;
  padding: 8px;
  transition: all 0.2s;
  border: 1px solid rgba(255, 220, 255, 0.3);
}

.shot-card img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
  box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.5);
}

.shot-card:hover {
  transform: translateY(-6px);
  border-color: #c48eff;
}

/* additional storytelling split */
.community-slice {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  background: rgba(15, 8, 35, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 2.5rem;
  padding: 2rem;
  margin-top: 2rem;
}

.community-text {
  flex: 1.4;
}

.community-text h3 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.community-text p {
  margin-bottom: 0.8rem;
  color: #f0e5ff;
}

.community-icon {
  flex: 1;
  text-align: center;
}

.community-icon img {
  max-width: 200px;
  border-radius: 42px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* footer */
.footer-area {
  margin-top: 5rem;
  padding: 2rem 0 1.2rem;
  border-top: 1px solid rgba(255, 250, 255, 0.2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

.email-link a {
  color: #dcc5ff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dotted #b48eff;
}

.copyright-note {
  font-size: 0.8rem;
  color: #c7b0ec;
}

/* responsive */
@media (max-width: 780px) {
  .container {
    padding: 1rem 1.2rem;
  }
  .main-header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h2 {
    font-size: 2.4rem;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .row-cards {
    flex-direction: column;
  }
  .section-head {
    font-size: 1.9rem;
  }
  .community-slice {
    flex-direction: column;
    text-align: center;
  }
  .footer-area {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .gallery-scroll {
    padding-bottom: 1rem;
  }
  .shot-card {
    width: 170px;
  }
}

@media (min-width: 1200px) {
  .shot-card {
    width: 220px;
  }
}
