* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    "Helvetica Neue",
    sans-serif;
  line-height: 1.5;
  color: #1a2c3c;
  background: linear-gradient(
    135deg,
    #f97316 0%,
    #f43f5e 25%,
    #fde047 50%,
    #4338ca 75%,
    #0891b2 100%
  );
  background-attachment: fixed;
  min-height: 100vh;
}

/* main container */
.site-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ========= NAVIGATION ========= */
.nav-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
}

.logo {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #fff9e8, #fff2d0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: white;
  font-size: 1rem;
  transition: 0.2s;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #ffe484;
  color: #fff5cf;
}

/* sections */
section {
  scroll-margin-top: 90px;
  padding: 3rem 0 4rem;
}

/* Banner (hero) */
.hero-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 2rem 0 1rem;
}

.hero-text {
  flex: 1.2;
}

.hero-tag {
  background: rgba(255, 240, 200, 0.2);
  backdrop-filter: blur(8px);
  display: inline-flex;
  padding: 0.4rem 1.2rem;
  border-radius: 60px;
  font-weight: 500;
  font-size: 0.85rem;
  color: #fff7e8;
  border: 1px solid rgba(255, 245, 190, 0.6);
  margin-bottom: 1.5rem;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.2;
  color: white;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.2rem;
  color: rgba(255, 255, 245, 0.95);
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.stat-item {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  font-weight: 500;
  color: #fffbea;
}

.hero-visual {
  flex: 0.9;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* 5 app screenshot showcase (inline across layout) */
.screenshot-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.phone-mock {
  background: #0f1722;
  border-radius: 34px;
  padding: 8px 6px;
  box-shadow: 0 25px 35px -15px rgba(0, 0, 0, 0.4);
  width: 170px;
  transition:
    transform 0.25s ease,
    box-shadow 0.2s;
}

.phone-mock:hover {
  transform: translateY(-8px);
}

.mock-screen {
  background: #f7f3ee;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 19;
  width: 100%;
}

.mock-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Intro + features dispersed modular layout */
.discovery-section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.card-block {
  background: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(12px);
  border-radius: 3rem;
  overflow: hidden;
  transition: all 0.2s;
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.2);
}

.dual-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
}

.dual-text {
  flex: 1.5;
}

.dual-text h2 {
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(130deg, #c2410c, #e07a2c);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}

.dual-text p {
  font-size: 1.05rem;
  color: #2d3e50;
  margin-bottom: 1rem;
}

.insight-quote {
  background: #fce9da;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  border-left: 5px solid #f97316;
  margin: 1rem 0;
}

.dual-media {
  flex: 0.9;
  text-align: center;
}

.mini-screenshot {
  width: 180px;
  border-radius: 32px;
  box-shadow: 0 20px 28px -10px rgba(0, 0, 0, 0.3);
  transition: 0.2s;
}

/* feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
  margin: 2rem 0 1rem;
}

.feature-tile {
  background: rgba(255, 248, 235, 0.95);
  backdrop-filter: blur(4px);
  padding: 1.8rem 1.5rem;
  border-radius: 2rem;
  transition: all 0.2s;
  border: 1px solid rgba(255, 180, 80, 0.4);
}

.feature-tile:hover {
  background: #fffdf5;
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.feature-tile h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #b4410e;
  margin-bottom: 0.75rem;
}

.feature-tile p {
  color: #2c3f4f;
}

.text-divider {
  text-align: center;
  margin: 1rem 0;
  font-weight: 600;
  color: white;
  font-size: 1.1rem;
}

/* footer */
.footer-area {
  background: rgba(8, 28, 36, 0.75);
  backdrop-filter: blur(16px);
  border-radius: 2rem 2rem 0 0;
  margin-top: 3rem;
  padding: 2rem 1rem 1.8rem;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
}

.contact-email {
  background: rgba(255, 255, 220, 0.12);
  padding: 0.5rem 1.2rem;
  border-radius: 3rem;
  font-size: 0.95rem;
  color: #ffefcf;
}

.footer-links a {
  color: #ffe2b5;
  text-decoration: none;
  margin: 0 0.8rem;
  font-size: 0.9rem;
}

.copyright {
  font-size: 0.8rem;
  opacity: 0.8;
  color: #fffae5;
}

@media (max-width: 800px) {
  .site-wrapper {
    padding: 0 1.2rem;
  }
  .nav-header {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-banner {
    flex-direction: column;
    text-align: center;
  }
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-stats {
    justify-content: center;
  }
  .dual-layout {
    flex-direction: column;
    text-align: center;
    padding: 1.8rem;
  }
  .insight-quote {
    text-align: left;
  }
  .phone-mock {
    width: 140px;
  }
  .footer-flex {
    flex-direction: column;
    text-align: center;
  }
}

/* additional polish */
.soft-glow {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.btn-subtle {
  display: inline-block;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  color: white;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
