/* nutrimacro.in — India landing page
 * Dark gold theme — matches the main Nutri Macro app design language.
 * Mobile-first (95% of Indian traffic is mobile).
 */

/* ─── Reset & Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Devanagari", Roboto, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0A0A0B;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #C9A84C; text-decoration: none; }
a:hover { color: #E2BF5A; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ─── Nav ─────────────────────────────────────────────────── */
.nav {
  background: rgba(10,10,11,0.95);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.9rem 0;
  backdrop-filter: blur(12px);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #C9A84C;
  letter-spacing: -0.5px;
}
.logo span { color: #ffffff; font-weight: 400; }
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.70);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #C9A84C; }
.nav-cta {
  background: linear-gradient(135deg, #C9A84C, #E2BF5A) !important;
  color: #0A0A0B !important;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.88; color: #0A0A0B !important; }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  background: #0A0A0B;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 5rem;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,153,0,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-label {
  display: inline-block;
  background: rgba(255,153,0,0.12);
  color: #FF9900;
  border: 1px solid rgba(255,153,0,0.25);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
  line-height: 1.18;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.hero h1 .accent { color: #C9A84C; }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.60);
  max-width: 620px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #C9A84C 0%, #E2BF5A 50%, #C9A84C 100%);
  color: #0A0A0B;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  transition: opacity 0.2s;
}
.hero-cta:hover { opacity: 0.88; color: #0A0A0B; }
.hero-cta.secondary {
  background: transparent;
  color: #C9A84C;
  border: 1.5px solid rgba(201,168,76,0.45);
}
.hero-cta.secondary:hover { background: rgba(201,168,76,0.10); color: #E2BF5A; }

.hero-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}
.hero-badges span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ─── Trust row ─────────────────────────────────────────────────── */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.trust-item {
  flex: 1;
  min-width: 120px;
  padding: 1.25rem 1rem;
  text-align: center;
}
.trust-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #C9A84C;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.trust-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.trust-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* ─── Sections ─────────────────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.6rem;
  color: #ffffff;
  letter-spacing: -0.5px;
}
.section-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.48);
  max-width: 580px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ─── Features Grid ─────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: #111113;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.2s, border-color 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.22);
}
.feature-icon { font-size: 2.25rem; margin-bottom: 0.85rem; }
.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 700;
}
.feature-card p { color: rgba(255,255,255,0.50); font-size: 0.9rem; line-height: 1.6; }

/* ─── Feature Mini-Phone Mockups ─────────────────────────────────────────── */
.feat-mini-phone {
  width: 145px;
  min-height: 230px;
  background: #0a0a0a;
  border: 1.5px solid #C9A84C;
  border-radius: 18px;
  padding: 10px 8px 8px;
  margin: 0 auto 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(201,168,76,0.12);
  font-size: 10px;
}
.fmp-notch {
  width: 36px; height: 5px;
  background: #C9A84C;
  border-radius: 0 0 4px 4px;
  margin: -10px auto 6px;
}
.fmp-header-sm {
  font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 6px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fmp-row { display: flex; align-items: center; }
.fmp-section-lbl {
  font-size: 8px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 5px;
}
.fmp-detected-row {
  display: flex; align-items: center;
  gap: 4px;
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fmp-emoji { font-size: 11px; flex-shrink: 0; }
.fmp-item { flex: 1; font-size: 9px; color: rgba(255,255,255,0.75); }
.fmp-cal { color: rgba(255,255,255,0.38); font-size: 8px; }
.fmp-p { font-size: 8px; color: #5CC98A; font-weight: 700; }
.fmp-total-bar {
  margin-top: 7px;
  background: rgba(201,168,76,0.12);
  border-radius: 5px;
  padding: 4px 6px;
  font-size: 8px;
  color: #C9A84C;
  text-align: center;
  font-weight: 600;
}
.free-badge { background: rgba(92,201,138,0.12); color: #5CC98A; }
.fmp-warn { color: #E87070 !important; }
.fmp-warn-bar { background: rgba(232,112,112,0.12) !important; color: #E87070 !important; }

/* Meal plan mini */
.fmp-day-tabs-sm {
  display: flex; gap: 3px; margin-bottom: 6px;
}
.fmp-day {
  font-size: 8px; padding: 2px 5px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.45);
}
.fmp-day.active { background: #C9A84C; color: #000; font-weight: 700; }
.fmp-meal-row {
  display: flex; align-items: flex-start;
  gap: 5px; padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fmp-meal-row.fmp-hl { background: rgba(201,168,76,0.07); border-radius: 5px; padding: 3px 4px; border: none; }
.fmp-meal-icon { font-size: 10px; flex-shrink: 0; }
.fmp-meal-name { font-size: 9px; color: rgba(255,255,255,0.85); font-weight: 600; }
.fmp-meal-mac { font-size: 7.5px; color: rgba(255,255,255,0.35); }
.fmp-regen-sm {
  margin-top: 7px;
  text-align: center;
  font-size: 8.5px;
  color: #C9A84C;
  font-weight: 700;
  background: rgba(201,168,76,0.1);
  border-radius: 5px;
  padding: 4px;
}

/* Recipe cards mini */
.fmp-recipe-card {
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 4px 6px;
  margin-bottom: 3px;
}
.fmp-recipe-card.fmp-hl { background: rgba(201,168,76,0.1); }
.fmp-recipe-name { font-size: 9px; color: rgba(255,255,255,0.85); font-weight: 600; }
.fmp-recipe-meta { font-size: 7.5px; color: rgba(255,255,255,0.35); }

/* Remix mini */
.fmp-why-box {
  font-size: 7.5px;
  color: rgba(255,255,255,0.4);
  margin: 5px 0;
  padding: 4px 5px;
  background: rgba(255,255,255,0.03);
  border-radius: 5px;
  line-height: 1.5;
}
.fmp-macro-chips {
  display: flex; gap: 3px; flex-wrap: wrap;
}
.fmp-macro-chips span {
  font-size: 7.5px;
  background: rgba(201,168,76,0.12);
  color: #C9A84C;
  padding: 2px 4px;
  border-radius: 4px;
  font-weight: 600;
}

/* Family mini */
.fmp-family-row {
  display: flex; align-items: center; gap: 6px;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.fmp-avatar {
  width: 22px; height: 22px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: #000;
  flex-shrink: 0;
}
.fmp-fam-name { font-size: 9px; color: rgba(255,255,255,0.85); font-weight: 600; }
.fmp-fam-cal { font-size: 7.5px; color: rgba(255,255,255,0.35); }

/* Macro ring mini */
.fmp-ring-sm {
  position: relative; display: flex;
  justify-content: center; align-items: center;
  margin: 4px auto;
}
.fmp-ring-inner-sm {
  position: absolute;
  text-align: center;
}
.fmp-ring-val { font-size: 13px; font-weight: 800; color: #C9A84C; }
.fmp-ring-of { font-size: 7px; color: rgba(255,255,255,0.35); }
.fmp-bar-row-sm {
  display: flex; align-items: center; gap: 4px;
  font-size: 8px; color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}
.fmp-bar-row-sm .fmp-bar-t {
  flex: 1; height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px; overflow: hidden;
}
.fmp-bar-row-sm .fmp-bar-f { height: 100%; border-radius: 2px; }

/* Wellness mini */
.fmp-wellness-row {
  display: flex; align-items: center; gap: 4px;
  font-size: 8px; color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.fmp-wellness-row .fmp-bar-t {
  flex: 1; height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px; overflow: hidden;
}
.fmp-wellness-row .fmp-bar-f { height: 100%; border-radius: 2px; }

/* Shopping list mini */
.fmp-list-item {
  font-size: 9px;
  color: rgba(255,255,255,0.65);
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 4px;
}
.fmp-list-item.checked { color: rgba(255,255,255,0.3); text-decoration: line-through; }
.fmp-list-item.checked::first-letter { color: #5CC98A; }

/* Progress chart mini */
.fmp-chart-area {
  display: flex; align-items: flex-end;
  gap: 3px; height: 56px;
  padding: 0 2px; margin-bottom: 4px;
}
.fmp-chart-bar {
  flex: 1;
  background: rgba(201,168,76,0.25);
  border-radius: 2px 2px 0 0;
  min-height: 2px;
}
.fmp-chart-bar.fmp-bar-today { background: #C9A84C; }
.fmp-chart-labels {
  display: flex; gap: 3px; padding: 0 2px;
  margin-bottom: 6px;
}
.fmp-chart-labels span { flex: 1; text-align: center; font-size: 7px; color: rgba(255,255,255,0.3); }
.fmp-stat-row {
  display: flex; justify-content: space-between;
  font-size: 8.5px;
  padding: 2px 0;
}
.fmp-stat-label { color: rgba(255,255,255,0.4); }
.fmp-stat-val { color: rgba(255,255,255,0.85); font-weight: 700; }

/* ─── Comparison Table ─────────────────────────────────────────────────── */
.compare-section { background: #0D0D0F; }
.compare-table {
  width: 100%;
  background: #111113;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 0.85rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}
.compare-table th {
  background: #1A1A1D;
  color: rgba(255,255,255,0.80);
  font-weight: 700;
  font-size: 0.85rem;
}
.compare-table th:first-child,
.compare-table td:first-child { text-align: left; color: rgba(255,255,255,0.60); }
.compare-table .yes  { color: #5CC98A; font-weight: 700; }
.compare-table .no   { color: rgba(255,255,255,0.28); }
.compare-table .highlight-col { background: rgba(201,168,76,0.06); color: #C9A84C; }
.compare-table th.highlight-col { background: rgba(201,168,76,0.14); color: #C9A84C; }

/* ─── Pricing ─────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.price-card {
  background: #111113;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.price-card:hover { border-color: rgba(201,168,76,0.20); }
.price-card.featured {
  border-color: rgba(201,168,76,0.50);
  transform: scale(1.03);
  background: #18181B;
  position: relative;
}
.price-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C9A84C, #E2BF5A);
  color: #0A0A0B;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.price-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
  margin-bottom: 0.5rem;
}
.price-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: #C9A84C;
  margin: 0.75rem 0 0.25rem;
  line-height: 1;
}
.price-amount .currency { font-size: 1.5rem; font-weight: 600; vertical-align: super; font-size: 1.2rem; }
.price-amount .period { font-size: 1rem; color: rgba(255,255,255,0.35); font-weight: 400; }
.price-annual {
  display: inline-block;
  background: rgba(201,168,76,0.10);
  color: #C9A84C;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(201,168,76,0.18);
}
.price-features {
  list-style: none;
  text-align: left;
  margin: 0.75rem 0 1.25rem;
  flex: 1;
}
.price-features li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
  line-height: 1.4;
}
.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #5CC98A;
  font-weight: 700;
}
.price-cta {
  display: block;
  background: linear-gradient(135deg, #C9A84C, #E2BF5A);
  color: #0A0A0B;
  padding: 0.75rem;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.88rem;
  text-align: center;
  transition: opacity 0.2s;
  margin-top: auto;
}
.price-cta:hover { opacity: 0.88; color: #0A0A0B; }

/* ─── States ─────────────────────────────────────────────────── */
.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.state-card {
  background: #111113;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
}
.state-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201,168,76,0.18);
}
.state-card .emoji { font-size: 2.25rem; margin-bottom: 0.5rem; }
.state-card .name { font-weight: 700; color: #ffffff; font-size: 0.9rem; }
.state-card .dishes { font-size: 0.75rem; color: rgba(255,255,255,0.38); margin-top: 0.2rem; }
.state-card.coming-soon { cursor: default; }
.state-card.coming-soon:hover { transform: none; border-color: rgba(255,255,255,0.07); }
.state-card.coming-soon::after {
  content: 'Coming Soon';
  position: absolute;
  top: 0.4rem;
  right: 0.5rem;
  background: rgba(201,168,76,0.15);
  color: #C9A84C;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(201,168,76,0.28);
}
.states-footer {
  text-align: center;
  margin-top: 2rem;
  color: rgba(255,255,255,0.38);
  font-size: 0.9rem;
  font-style: italic;
}
.states-footer a { color: #C9A84C; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq-card {
  background: #111113;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.faq-card:hover { border-color: rgba(201,168,76,0.18); }
.faq-card h3 { margin-bottom: 0.5rem; color: #ffffff; font-size: 0.95rem; font-weight: 700; }
.faq-card p { color: rgba(255,255,255,0.50); font-size: 0.88rem; line-height: 1.6; }
.faq-card a { color: #C9A84C; }

/* ─── Download CTA ─────────────────────────────────────────────────── */
.download-cta {
  background: linear-gradient(135deg, #111113 0%, #1A1A1D 100%);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #0A0A0B;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.42);
  padding: 3rem 0 2rem;
  margin-top: 0;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer h4 { color: #ffffff; font-size: 0.88rem; font-weight: 700; margin-bottom: 1rem; }
.footer a {
  color: rgba(255,255,255,0.45);
  display: block;
  padding: 0.2rem 0;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer a:hover { color: #C9A84C; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.28);
}

/* ─── Mobile ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 3.5rem 0 4rem; }
  .hero h1 { font-size: 1.9rem; letter-spacing: -0.5px; }
  .hero p { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-cta { width: 100%; max-width: 320px; justify-content: center; }
  .section { padding: 3.5rem 0; }
  .section-title { font-size: 1.6rem; }
  .price-card.featured { transform: none; }
  .nav-links { display: none; }
  .compare-table table { font-size: 0.78rem; }
  .compare-table th, .compare-table td { padding: 0.5rem 0.6rem; }
  .trust-row { border-radius: 12px; }
  .trust-item { padding: 1rem 0.75rem; }
  .trust-num { font-size: 1.3rem; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ─── Hero two-column layout ─────────────────────────────────────────────────── */
.hero { text-align: left; }
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-copy { position: relative; z-index: 1; }
.hero-copy .hero-label { display: inline-block; }
.hero-copy .trust-row { max-width: 100%; }

/* ─── Phone mockup container ─────────────────────────────────────────────────── */
.hero-phones {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Phone frame ─────────────────────────────────────────────────── */
.phone {
  position: absolute;
  width: 210px;
}
.phone-front {
  right: 20px;
  top: 0;
  z-index: 2;
}
.phone-back {
  left: 0px;
  top: 40px;
  z-index: 1;
  transform: rotate(-4deg);
  opacity: 0.88;
}
.phone-frame {
  background: #111113;
  border-radius: 36px;
  border: 2px solid rgba(201,168,76,0.35);
  box-shadow:
    0 0 0 6px #1A1A1D,
    0 32px 64px rgba(0,0,0,0.7),
    0 0 0 7px rgba(201,168,76,0.10);
  overflow: hidden;
  position: relative;
}
.phone-notch {
  width: 70px;
  height: 20px;
  background: #111113;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-bottom: 1.5px solid rgba(255,255,255,0.06);
}
.phone-screen {
  background: #0A0A0B;
  padding: 8px 12px 16px;
  min-height: 420px;
}

/* ─── App UI inside phone ─────────────────────────────────────────────────── */
.app-statusbar {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: rgba(255,255,255,0.40);
  margin-bottom: 10px;
  padding: 0 2px;
}
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.app-header-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.40);
  margin-bottom: 2px;
}
.app-header-title {
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
}
.app-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #E2BF5A);
  color: #0A0A0B;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-badge {
  font-size: 10px;
  font-weight: 700;
  color: #C9A84C;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 999px;
  padding: 2px 8px;
}

/* ─── Macro ring ─────────────────────────────────────────────────── */
.macro-ring-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 12px;
}
.macro-ring { width: 90px; height: 90px; }
.macro-ring-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.macro-kcal {
  font-size: 14px;
  font-weight: 800;
  color: #C9A84C;
  line-height: 1;
}
.macro-of {
  font-size: 7px;
  color: rgba(255,255,255,0.40);
  margin-top: 2px;
}

/* ─── Macro bars ─────────────────────────────────────────────────── */
.macro-bars { margin-bottom: 10px; }
.macro-bar-row {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.macro-bar-label {
  font-size: 8px;
  color: rgba(255,255,255,0.45);
  width: 34px;
  flex-shrink: 0;
}
.macro-bar-track {
  flex: 1;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}
.macro-bar-fill {
  height: 100%;
  border-radius: 999px;
}
.macro-bar-val {
  font-size: 8px;
  color: rgba(255,255,255,0.55);
  width: 24px;
  text-align: right;
  flex-shrink: 0;
}

/* ─── Food log ─────────────────────────────────────────────────── */
.app-section-title {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.food-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background: #111113;
  border-radius: 8px;
  margin-bottom: 4px;
  border: 1px solid rgba(255,255,255,0.05);
}
.food-emoji { font-size: 16px; flex-shrink: 0; }
.food-info { flex: 1; min-width: 0; }
.food-name {
  font-size: 9px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.food-macro { font-size: 7.5px; color: rgba(255,255,255,0.38); margin-top: 1px; }
.food-p {
  font-size: 8px;
  font-weight: 700;
  color: #5CC98A;
  flex-shrink: 0;
}

/* ─── Meal plan screen ─────────────────────────────────────────────────── */
.day-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}
.day-tab {
  flex: 1;
  text-align: center;
  font-size: 8px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  padding: 4px 0;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
}
.day-tab.active {
  background: rgba(201,168,76,0.18);
  color: #C9A84C;
  font-weight: 800;
}
.meal-slot {
  background: #111113;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 5px;
}
.meal-slot.highlight-slot {
  border-color: rgba(201,168,76,0.30);
  background: rgba(201,168,76,0.05);
}
.meal-slot-label {
  font-size: 7.5px;
  color: rgba(255,255,255,0.38);
  font-weight: 600;
  margin-bottom: 2px;
}
.meal-slot-name {
  font-size: 9.5px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}
.meal-slot-macro {
  font-size: 7.5px;
  color: rgba(255,255,255,0.38);
}
.regen-btn {
  text-align: center;
  font-size: 8.5px;
  font-weight: 700;
  color: #C9A84C;
  background: rgba(201,168,76,0.10);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 8px;
  padding: 6px;
  margin-top: 8px;
}

/* ─── Floating pills ─────────────────────────────────────────────────── */
.phone-pill {
  position: absolute;
  background: #18181B;
  border: 1px solid rgba(201,168,76,0.35);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  z-index: 10;
}
.pill-1 { top: 10px; left: -10px; }
.pill-2 { bottom: 80px; right: -10px; }
.pill-3 { bottom: 30px; left: 20px; }

/* ─── Mobile: stack phones below copy ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { text-align: center; }
  .hero-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy .trust-row { margin: 0 auto; }
  .hero-phones { height: 400px; max-width: 380px; margin: 0 auto; }
  .phone { width: 165px; }
  .phone-front { right: 10px; top: 0; }
  .phone-back { left: 10px; top: 30px; }
  .pill-1 { left: 0; }
  .pill-2 { right: 0; }
}
@media (max-width: 480px) {
  .hero-phones { height: 320px; max-width: 300px; }
  .phone { width: 135px; }
  .phone-screen { padding: 6px 8px 12px; min-height: 320px; }
  .phone-pill { font-size: 9px; padding: 4px 9px; }
  .pill-2 { display: none; }
}

/* ─── Hindi / Tamil text support ─────────────────────────────────────────────────── */
.hi { font-family: "Noto Sans Devanagari", sans-serif; }

/* ─── Recipes hub / index — card grid (generated pages) ───────────── */
main.container > h1 { font-size: 1.85rem; line-height: 1.2; margin: 0.25rem 0 0.5rem; color: #fff; }
main.container > p.lead { color: rgba(255,255,255,0.62); font-size: 1rem; max-width: 70ch; margin-bottom: 1.5rem; }

.recipe-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0 2.5rem;
}
.recipe-list .rcard { margin: 0; }
.recipe-list .rcard > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  transition: border-color .15s ease, transform .12s ease, box-shadow .15s ease;
}
.recipe-list .rcard > a:hover {
  border-color: rgba(201,168,76,0.55);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}
/* Emoji "thumbnail" tile (stands in for a photo) */
.rcard-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 104px;
  font-size: 2.9rem;
  line-height: 1;
  background: radial-gradient(circle at 32% 28%, rgba(201,168,76,0.30), rgba(201,168,76,0.07));
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rcard-text { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; padding: 0.7rem 0.9rem; }
.rcard-name { font-weight: 600; font-size: 0.98rem; color: #fff; }
.rcard-sub { font-size: 0.8rem; color: rgba(255,255,255,0.50); }
.rcard-count {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  font-size: 0.74rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(2px);
  border-radius: 999px;
  padding: 0.16rem 0.55rem;
}

/* Recipe detail — hero "image" banner (large emoji on a themed gradient) */
.rhero {
  height: 190px;
  border-radius: 18px;
  margin: 0.25rem 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 28%, var(--hb, #E2BF5A), var(--ha, #C9A84C));
  box-shadow: inset 0 0 70px rgba(0,0,0,0.20);
}
.rhero-emoji { font-size: 6rem; line-height: 1; filter: drop-shadow(0 5px 12px rgba(0,0,0,0.28)); }

@media (max-width: 480px) {
  .recipe-list { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .rcard-emoji { height: 84px; font-size: 2.3rem; }
  .rcard-name { font-size: 0.9rem; }
  .rhero { height: 150px; }
  .rhero-emoji { font-size: 4.5rem; }
}

/* ─── Real CC/Public-domain dish photos (Wikimedia Commons) ──────────── */
.rcard-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rhero-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.img-credit {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin: -0.9rem 0 1.1rem;
}
.img-credit a { color: rgba(201,168,76,0.85); }

/* ─── Recipe detail — appetising reading experience ─────────────────── */
article { color: rgba(255,255,255,0.85); }
.crumbs { font-size: 0.8rem; color: rgba(255,255,255,0.42); margin-bottom: 0.75rem; }
.crumbs a { color: rgba(201,168,76,0.85); }
article h1 { font-size: 2rem; line-height: 1.2; margin: 0.3rem 0 0.5rem; color: #fff; }
article h1 small { color: rgba(255,255,255,0.5); font-weight: 400; font-size: 1.05rem; }
.meta { color: #C9A84C; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.3px; margin-bottom: 0.2rem; }
.times { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 1.1rem; }
article > p { color: rgba(255,255,255,0.74); line-height: 1.75; font-size: 1.02rem; }

article h2 {
  font-size: 1.35rem; color: #fff; font-weight: 800;
  margin: 2.2rem 0 1.1rem; padding-left: 0.75rem;
  border-left: 4px solid #C9A84C; line-height: 1.25;
}

/* Ingredients — chip grid (scannable, not a wall of bullets) */
.recipe-ing {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 0.55rem;
}
.recipe-ing li {
  position: relative; padding: 0.7rem 0.85rem 0.7rem 1.95rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 11px; color: rgba(255,255,255,0.88); font-size: 0.93rem; line-height: 1.5;
}
.recipe-ing li::before {
  content: ''; position: absolute; left: 0.8rem; top: 1.05rem;
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #E2BF5A);
}

/* Steps — numbered cards with gold badges (inviting, easy to follow) */
.recipe-steps { list-style: none; padding: 0; margin: 0; counter-reset: step; }
.recipe-steps li {
  counter-increment: step; position: relative;
  padding: 1rem 1.1rem 1rem 3.7rem; margin-bottom: 0.7rem;
  background: rgba(255,255,255,0.035); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; line-height: 1.7; color: rgba(255,255,255,0.86); font-size: 0.98rem;
}
.recipe-steps li::before {
  content: counter(step); position: absolute; left: 0.85rem; top: 0.85rem;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C, #E2BF5A); color: #0A0A0B;
  font-weight: 800; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(201,168,76,0.3);
}

/* Nutrition table */
.macro-table {
  width: 100%; border-collapse: collapse; margin: 0.4rem 0 1rem;
  background: rgba(255,255,255,0.03); border-radius: 12px; overflow: hidden;
}
.macro-table th {
  background: rgba(201,168,76,0.15); color: #E2BF5A; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.6px; padding: 0.6rem 0.4rem; font-weight: 700;
}
.macro-table td {
  text-align: center; padding: 0.75rem 0.4rem; font-weight: 700; color: #fff;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* CTA + disclaimer */
.cta {
  margin-top: 2rem; padding: 1.1rem 1.25rem;
  background: rgba(201,168,76,0.10); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 14px; color: rgba(255,255,255,0.82); line-height: 1.6;
}
.cta a { font-weight: 700; }
.disclaimer { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-style: italic; }

@media (max-width: 480px) {
  .recipe-ing { grid-template-columns: 1fr; }
  article h1 { font-size: 1.6rem; }
  .recipe-steps li { padding-left: 3.4rem; }
}

/* ─── Recipe detail v2 — meta cards, pills, checkboxes, callouts ─────── */
.lead-desc { color: rgba(255,255,255,0.78) !important; font-size: 1.05rem !important; line-height: 1.7; margin: 0.5rem 0 1.1rem; }

/* Diet / difficulty pills */
.recipe-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0 0 1.1rem; }
.pill { font-size: 0.8rem; font-weight: 700; padding: 0.28rem 0.7rem; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.pill-veg, .pill-vegan { background: rgba(16,185,129,0.14); border-color: rgba(16,185,129,0.4); color: #6EE7B7; }
.pill-nonveg { background: rgba(239,68,68,0.14); border-color: rgba(239,68,68,0.4); color: #FCA5A5; }
.pill-gf { background: rgba(234,179,8,0.14); border-color: rgba(234,179,8,0.4); color: #FDE047; }

/* Meta info cards (prep / cook / total / serves) */
.recipe-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); gap: 0.6rem; margin: 0 0 1.4rem; }
.info-card { display: flex; flex-direction: column; align-items: center; gap: 0.15rem;
  padding: 0.85rem 0.5rem; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; }
.ic-emoji { font-size: 1.35rem; }
.ic-val { font-weight: 800; color: #fff; font-size: 1rem; }
.ic-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }

/* Print / save button */
.btn-print { display: inline-flex; align-items: center; gap: 0.4rem; margin: 0 0 1.5rem;
  padding: 0.6rem 1.1rem; background: rgba(201,168,76,0.12); color: #E2BF5A;
  border: 1px solid rgba(201,168,76,0.4); border-radius: 10px; font-weight: 700; font-size: 0.88rem; cursor: pointer; }
.btn-print:hover { background: rgba(201,168,76,0.2); }

/* Ingredient checkboxes (tick off while shopping/cooking) */
.recipe-ing li { padding-left: 0.85rem !important; }
.recipe-ing li::before { display: none; }
.recipe-ing li label { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; }
.recipe-ing li input[type="checkbox"] { appearance: none; -webkit-appearance: none;
  flex: 0 0 auto; width: 1.15rem; height: 1.15rem; margin-top: 0.15rem; border-radius: 6px;
  border: 2px solid rgba(201,168,76,0.55); background: transparent; cursor: pointer; position: relative; transition: background .15s; }
.recipe-ing li input[type="checkbox"]:checked { background: linear-gradient(135deg,#C9A84C,#E2BF5A); border-color: #C9A84C; }
.recipe-ing li input[type="checkbox"]:checked::after { content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; color: #0A0A0B; font-size: 0.8rem; font-weight: 900; }
.recipe-ing li input[type="checkbox"]:checked + span { color: rgba(255,255,255,0.4); text-decoration: line-through; }

/* Tips / cultural-notes callout cards */
.callout { margin: 1.6rem 0; padding: 0.4rem 1.2rem 1rem; border-radius: 14px; border: 1px solid; }
.callout h2 { border: 0 !important; padding: 0 !important; margin: 1rem 0 0.4rem !important; font-size: 1.15rem !important; }
.callout p { color: rgba(255,255,255,0.8); line-height: 1.65; }
.callout-tip { background: rgba(234,179,8,0.07); border-color: rgba(234,179,8,0.28); }
.callout-culture { background: rgba(201,168,76,0.07); border-color: rgba(201,168,76,0.25); }

/* Print: clean white sheet, hide chrome/ads */
@media print {
  body { background: #fff !important; color: #111 !important; }
  .nav, .footer, .btn-print, .adsbygoogle, .crumbs, .cta, .img-credit { display: none !important; }
  .rhero { height: 220px; }
  article, article p, .recipe-steps li, .recipe-ing li, .info-card { color: #111 !important; background: #fff !important; border-color: #ddd !important; }
  article h1, article h2, .ic-val { color: #111 !important; }
}
