* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: #FFFBF4;
  color: #1E1814;
}

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #FFFBF4;
  border-bottom: 1px solid rgba(30,24,20,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: bold;
  font-style: italic;
  color: #E4568B;
  text-decoration: none;
}
.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 14px;
  color: rgba(30,24,20,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #E4568B; }

/* Hero */
.hero {
  background: linear-gradient(135deg, #E4568B, #C03070);
  color: white;
  text-align: center;
  padding: 100px 24px 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-style: italic;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero p {
  font-size: 18px;
  opacity: 0.88;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-family: 'Helvetica Neue', sans-serif;
}
.app-store-btn {
  display: inline-block;
  background: white;
  color: #1E1814;
  border-radius: 14px;
  padding: 14px 32px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.app-store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Features */
.section {
  padding: 80px 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: #E4568B;
  text-align: center;
  margin-bottom: 12px;
}
.section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-style: italic;
  text-align: center;
  margin-bottom: 16px;
  color: #1E1814;
}
.section-sub {
  text-align: center;
  font-size: 16px;
  color: rgba(30,24,20,0.6);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
  font-family: 'Helvetica Neue', sans-serif;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(30,24,20,0.08);
  box-shadow: 0 2px 12px rgba(30,24,20,0.06);
}
.feature-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: #E4568B;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1E1814;
}
.feature-card p {
  font-size: 14px;
  color: rgba(30,24,20,0.6);
  line-height: 1.65;
  font-family: 'Helvetica Neue', sans-serif;
}

/* Premium */
.premium-section {
  background: linear-gradient(160deg, #FDE8F0, #FFFBF4 60%);
  padding: 80px 24px;
  text-align: center;
  border-top: 1px solid rgba(228,86,139,0.15);
  border-bottom: 1px solid rgba(228,86,139,0.15);
}
.premium-section .section-label { color: #E4568B; }
.premium-section h2 { color: #1E1814; }
.premium-section .section-sub { color: rgba(30,24,20,0.6); }
.premium-price {
  display: inline-block;
  background: #E4568B;
  color: white;
  border-radius: 20px;
  padding: 8px 20px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 48px;
}
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.premium-item {
  background: white;
  border: 1px solid rgba(228,86,139,0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
}
.premium-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: #E4568B;
  margin-bottom: 14px;
}
.premium-item h4 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #1E1814;
}
.premium-item p {
  font-size: 13px;
  color: rgba(30,24,20,0.6);
  line-height: 1.55;
  font-family: 'Helvetica Neue', sans-serif;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 80px 24px;
  background: #FFFBF4;
}
.cta-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-style: italic;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 16px;
  color: rgba(30,24,20,0.6);
  margin-bottom: 36px;
  font-family: 'Helvetica Neue', sans-serif;
}
.cta-btn {
  display: inline-block;
  background: #E4568B;
  color: white;
  border-radius: 14px;
  padding: 16px 40px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228,86,139,0.35);
}

/* Footer */
footer {
  background: #1E1814;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 40px 24px;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: 13px;
}
footer a { color: rgba(255,255,255,0.5); text-decoration: none; margin: 0 12px; }
footer a:hover { color: #E4568B; }
.footer-logo {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: #E4568B;
  margin-bottom: 16px;
}
.footer-links { margin-bottom: 16px; }

@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .hero { padding: 70px 20px 60px; }
}
