/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  color: #f0e6dc;
  line-height: 1.6;
  background: #1a0f0a;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(26, 15, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,107,53,0.1);
}
.navbar-brand {
  font-size: 22px; font-weight: 800; color: #fff;
  display: flex; align-items: center; gap: 10px;
}
.navbar-icon {
  width: 36px; height: 36px; border-radius: 10px;
}
.brand-spice { color: #FF6B35; }
.navbar-links { display: flex; gap: 28px; }
.navbar-links a {
  color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.navbar-links a:hover { color: #FF6B35; }

/* Mobile toggle */
.navbar-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.navbar-toggle span {
  display: block; width: 22px; height: 2px; background: #fff;
  transition: all 0.3s;
}
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.5;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,15,10,0.6) 0%, rgba(26,15,10,0.3) 40%, rgba(26,15,10,0.8) 100%);
}
.hero-content {
  max-width: 1100px; width: 100%;
  display: flex; align-items: center; gap: 60px;
  position: relative; z-index: 1;
}
.hero-text { flex: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,107,53,0.2); color: #FF6B35;
  padding: 8px 20px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  margin-bottom: 20px; letter-spacing: 2px;
  border: 1px solid rgba(255,107,53,0.3);
}
.hero-title {
  font-size: 64px; font-weight: 800; color: #fff;
  line-height: 1.05; margin-bottom: 8px;
}
.hero-title span { color: #FF6B35; }
.hero-tagline {
  font-size: 20px; color: rgba(255,255,255,0.65);
  margin-bottom: 24px; font-weight: 400;
  letter-spacing: 0.5px;
}
.hero-description {
  font-size: 16px; color: rgba(255,255,255,0.5);
  margin-bottom: 36px; max-width: 480px; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FF6B35; color: #fff;
  padding: 14px 28px; border-radius: 14px;
  font-size: 15px; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.4);
}
.btn-store svg { width: 22px; height: 22px; }

/* Phone frame */
.hero-phone { flex: 0 0 300px; text-align: center; }
.phone-frame {
  width: 260px; height: 520px;
  background: #2d1810;
  border-radius: 36px;
  padding: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
  display: inline-block;
  overflow: hidden;
}
.phone-screen {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

/* ===== SECTION SHARED ===== */
.section-header {
  text-align: center; margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  background: rgba(255,107,53,0.15); color: #FF6B35;
  padding: 6px 18px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  margin-bottom: 16px; letter-spacing: 1.5px;
}
.section-title {
  font-size: 40px; font-weight: 800; color: #fff;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.5); max-width: 550px; margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 40px;
  background: #1a0f0a;
  position: relative;
}
.features::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,53,0.3), transparent);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.2s, background 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255,107,53,0.06);
  border-color: rgba(255,107,53,0.15);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
  background: rgba(255,107,53,0.12);
}
.feature-card h3 {
  font-size: 19px; font-weight: 700; color: #fff;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7;
}

/* ===== SCREENSHOTS ===== */
.screenshots {
  padding: 100px 40px;
  background: linear-gradient(180deg, #1a0f0a 0%, #2d1810 50%, #1a0f0a 100%);
  overflow: hidden;
}
.screenshots-scroll {
  display: flex; gap: 32px;
  justify-content: center; flex-wrap: wrap;
  max-width: 1400px; margin: 0 auto;
}
.screenshot-item {
  text-align: center;
}
.screenshot-item .phone-frame {
  width: 220px; height: 440px;
  transition: transform 0.3s;
}
.screenshot-item:hover .phone-frame {
  transform: translateY(-8px);
}
.screenshot-label {
  margin-top: 16px; font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 40px;
  background: #1a0f0a;
}
.steps {
  display: flex; gap: 20px; max-width: 1100px; margin: 0 auto;
  align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 220px; max-width: 300px; text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
}
.step-connector {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, rgba(255,107,53,0.3), rgba(255,107,53,0.6));
  flex-shrink: 0;
}
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, #FF6B35, #e85d26);
  color: #fff; font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(255,107,53,0.3);
}
.step h3 {
  font-size: 18px; font-weight: 700; color: #fff;
  margin-bottom: 8px;
}
.step p { font-size: 14px; color: rgba(255,255,255,0.5); }

/* ===== PROTEINS ===== */
.proteins {
  padding: 100px 40px;
  background: linear-gradient(180deg, #1a0f0a, #2d1810);
  position: relative;
}
.proteins::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,107,53,0.3), transparent);
}
.protein-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px; max-width: 900px; margin: 0 auto;
}
.protein-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s;
}
.protein-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,107,53,0.3);
}
.protein-emoji {
  font-size: 36px; display: block; margin-bottom: 8px;
}
.protein-name {
  display: block; font-size: 16px; font-weight: 700; color: #fff;
  margin-bottom: 4px;
}
.protein-info {
  display: block; font-size: 13px; color: #FF6B35; font-weight: 600;
}
.protein-card.nonveg { border-left: 3px solid #e85d26; }
.protein-card.veg { border-left: 3px solid #4CAF50; }

/* ===== CTA ===== */
.cta {
  padding: 100px 40px;
  background: #1a0f0a;
  text-align: center;
}
.cta-content {
  max-width: 700px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,107,53,0.05));
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 28px; padding: 60px 40px;
}
.cta-icon {
  width: 80px; height: 80px; border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(255,107,53,0.2);
}
.cta-content h2 {
  font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 12px;
}
.cta-content p {
  font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 32px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FF6B35; color: #fff;
  padding: 14px 28px; border-radius: 14px;
  font-size: 15px; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.4);
}
.btn-cta svg { width: 20px; height: 20px; }

/* ===== FOOTER ===== */
.footer {
  background: rgba(0,0,0,0.3); padding: 48px 40px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-brand {
  font-size: 20px; font-weight: 800; color: #fff;
  margin-bottom: 8px;
}
.footer-brand span { color: #FF6B35; }
.footer-links {
  display: flex; gap: 24px; justify-content: center;
  margin: 16px 0;
}
.footer-links a {
  color: rgba(255,255,255,0.5); font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: #FF6B35; }
.footer-copy {
  color: rgba(255,255,255,0.25); font-size: 13px; margin-top: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar { padding: 12px 20px; }
  .navbar-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(26,15,10,0.98);
    flex-direction: column; padding: 20px;
    gap: 16px; text-align: center;
    border-bottom: 1px solid rgba(255,107,53,0.1);
  }
  .navbar-links.open { display: flex; }
  .navbar-toggle { display: flex; }
  .hero { padding: 100px 20px 60px; }
  .hero-content { flex-direction: column; text-align: center; gap: 40px; }
  .hero-title { font-size: 42px; }
  .hero-tagline { font-size: 17px; }
  .hero-description { margin: 0 auto 30px; }
  .hero-buttons { justify-content: center; }
  .hero-phone { flex: none; }
  .features, .how-it-works, .proteins, .cta, .screenshots { padding: 60px 20px; }
  .section-title { font-size: 30px; }
  .steps { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 30px;
    background: linear-gradient(180deg, rgba(255,107,53,0.3), rgba(255,107,53,0.6)); }
  .cta-content { padding: 40px 24px; }
  .cta-content h2 { font-size: 28px; }
  .screenshots-scroll { gap: 20px; }
  .screenshot-item .phone-frame { width: 180px; height: 360px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .screenshot-item .phone-frame { width: 150px; height: 300px; }
  .protein-grid { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); }
}
