html {
  scroll-behavior: smooth;
}

body {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-variation-settings: 'wght' 400;
  margin: 0;
  background: #f6f8fb;
  color: #23272f;
}

a, a:visited {
  color: #fc5c7d;
}

a:hover, a:focus {
  color: #84162c;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #000000 0%, #212121 100%);
  box-shadow: 0 2px 8px rgba(106,130,251,0.04);
  padding: 0;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-links a {
  margin: 0 0.7rem;
  color: #fff;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.4rem 1.1rem;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
}
.nav-links a:hover, .nav-links a:focus, .nav-links a.active {
  background: rgba(255,255,255,0.18);
  color: #fc5c7d;
}
.nav-apps {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.btn.nav-btn {
  padding: 0.45rem 1.1rem;
  font-size: 0.98rem;
  border-radius: 20px;
  margin-top: 0;
  margin-bottom: 0;
  background: #fff;
  color: #fc5c7d;
  font-weight: 600;
  font-family: Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0.03em;
  box-shadow: 0 1px 4px rgba(252,92,125,0.04);
  border: none;
  transition: background 0.18s, color 0.18s;
  display: flex;
  align-items: center;
}
.btn.nav-btn:hover, .btn.nav-btn:focus {
  background: #fc5c7d;
  color: #fff;
}

header#home {
  background: linear-gradient(90deg, #d3d3d3 0%, #eff0f0 100%);
  color: #222222;
  padding: 5rem 1rem 4rem 1rem;
  text-align: center;
  border-radius: 0 0 2.5rem 2.5rem;
  box-shadow: 0 4px 24px rgba(106,130,251,0.08);
}
header#home h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -0.03em;
}
header#home p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-weight: 400;
}
.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(90deg, #fc5c7d 0%, #6a82fb 100%);
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(106,130,251,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  border: none;
}
.btn:hover, .btn:focus {
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(252,92,125,0.12);
}

section {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 3.5rem 1.5rem;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 16px rgba(106,130,251,0.06);
}
section.cta {
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  color: #fff;
  text-align: center;
  border-radius: 2rem;
  box-shadow: 0 2px 16px rgba(252,92,125,0.10);
}
section.cta .btn {
  background: #fff;
  color: #fc5c7d;
  margin-top: 2rem;
  box-shadow: 0 2px 8px rgba(252,92,125,0.08);
}
section.cta .btn:hover, section.cta .btn:focus {
  background: #fc5c7d;
  color: #fff;
}

.features {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2.5rem;
}
.feature {
  background: #f6f8fb;
  padding: 2.2rem 1.5rem;
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(106,130,251,0.04);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature:hover {
  box-shadow: 0 6px 24px rgba(252,92,125,0.10);
  transform: translateY(-4px) scale(1.03);
}
.feature h3 {
  color: #2c2c2c;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.feature p {
  color: #555;
  font-size: 1.05rem;
}

.container {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(106,130,251,0.05);
}

/* Privacy Policy Section - visually distinct card style */
#privacy.container {
  background: linear-gradient(120deg, #f6f8fb 60%, #eaf0fb 100%);
  border: 1.5px solid #e0e7ff;
  box-shadow: 0 4px 32px rgba(106,130,251,0.10);
  padding: 3rem 2rem;
}
#privacy h1, #privacy h2 {
  color: #fc5c7d;
}
#privacy ul, #privacy p {
  color: #23272f;
}
#privacy ul {
  background: #fff;
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 1px 4px rgba(106,130,251,0.04);
}
#privacy h2 {
  margin-top: 2.5rem;
  font-size: 1.3rem;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-weight: 800;
  color: #23272f;
  margin-bottom: 1.2rem;
}
h2 {
  color: #fc5c7d;
  font-size: 2rem;
  margin-top: 0;
}
h3 {
  color: #fc5c7d;
  font-size: 1.2rem;
}

ul {
  padding-left: 1.5rem;
  margin: 1.2rem 0;
}
li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}
p {
  margin: 1.1rem 0;
  line-height: 1.7;
}

footer {
  text-align: center;
  font-size: 1rem;
  color: #888;
  padding: 2.5rem 1rem 1.5rem 1rem;
  background: none;
}

@media (max-width: 900px) {
  .nav-container {
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0.7rem;
  }
  .nav-links {
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
  }
  .nav-apps {
    justify-content: center;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 700px) {
  .nav-links a {
    margin: 0 0.3rem;
    font-size: 0.98rem;
    padding: 0.4rem 0.7rem;
  }
  .btn.nav-btn {
    font-size: 0.95rem;
    padding: 0.4rem 0.8rem;
  }
  header#home h1 {
    font-size: 2rem;
  }
  section, .container {
    padding: 1.5rem 0.7rem;
    border-radius: 1rem;
  }
  .features {
    gap: 1.2rem;
  }
  #privacy.container {
    padding: 1.5rem 0.7rem;
  }
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}
.btn.store-btn {
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  background: linear-gradient(90deg, #fc5c7d 0%, #6a82fb 100%);
  color: #fff;
  font-weight: 600;
  font-family:  Roboto, Helvetica, Arial, sans-serif;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(106,130,251,0.06);
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin: 0;
  display: flex;
  align-items: center;
}
.btn.store-btn:hover, .btn.store-btn:focus {
  background: linear-gradient(90deg, #6a82fb 0%, #fc5c7d 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(252,92,125,0.10);
}

.icon-ios, .icon-android {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

header#home h1, h1, h2, h3 {
  font-weight: 500;
  font-variation-settings: 'wght' 500;
}