/* ═══════════════════════════════════════════════
   THAMMUDU BIRYANI — Design System
   Inspired by Herbal Export Site aesthetic
   ─ Deep smoky bg · Muted saffron-gold · Playfair
   ─ Glass panels · Film noise · Generous radii
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;400;500;600&display=swap');

:root {
  --bg: #0F0A06;
  --bg2: #140E08;
  --gold: #C3B091;
  --gold-dim: rgba(195,176,145,0.7);
  --gold-glow: rgba(195,176,145,0.15);
  --gold-faint: rgba(195,176,145,0.06);
  --gold-stroke: rgba(195,176,145,0.2);
  --text: rgba(255,255,255,0.92);
  --text2: rgba(255,255,255,0.6);
  --text3: rgba(255,255,255,0.35);
  --green: rgba(16,185,129,0.9);
  --red: rgba(239,68,68,0.85);
  --amber: rgba(251,191,36,0.9);
  --purple: rgba(167,139,250,0.9);
  --sky: rgba(56,189,248,0.9);
  --radius: 24px;
  --radius-sm: 14px;
  --bnav: 84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
em { font-style: italic; color: var(--gold); }
.hidden { display: none !important; }

/* ── NOISE TEXTURE ───────────────────────────── */
.ls-noise, .app-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
}

/* ── SCREEN SYSTEM ───────────────────────────── */
.screen { position: fixed; inset: 0; }
.screen.hidden { display: none; }
.screen.active { display: flex; }
#app-screen { flex-direction: column; overflow: hidden; }

/* ─────────────────────────────────────────────
   LOGIN SCREEN
   ───────────────────────────────────────────── */
#login-screen {
  align-items: center; justify-content: center;
  background: var(--bg); overflow: hidden;
}
.ls-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 35%, rgba(66,32,5,0.8) 0%, var(--bg) 70%);
}
.ls-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); animation: orbPulse 7s ease-in-out infinite alternate;
}
.ls-orb1 { width: 320px; height: 320px; background: rgba(195,176,145,0.06); top: 10%; left: 20%; }
.ls-orb2 { width: 200px; height: 200px; background: rgba(195,176,145,0.04); bottom: 20%; right: 20%; animation-delay: -3s; }
@keyframes orbPulse { from { opacity: 0.5; transform: scale(1); } to { opacity: 1; transform: scale(1.15); } }

.ls-inner {
  position: relative; z-index: 10; width: 100%; max-width: 400px;
  padding: 24px 20px; display: flex; flex-direction: column; align-items: center; gap: 28px;
}

.ls-brand { display: flex; align-items: center; gap: 16px; }
.ls-icon { animation: floatFire 3s ease-in-out infinite alternate; }
@keyframes floatFire {
  from { transform: translateY(0); filter: drop-shadow(0 0 12px rgba(195,176,145,0.2)); }
  to   { transform: translateY(-6px); filter: drop-shadow(0 0 24px rgba(195,176,145,0.45)); }
}
.ls-brand-text { display: flex; flex-direction: column; gap: 3px; }
.ls-eyebrow { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text3); font-weight: 500; }
.ls-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.9rem; font-weight: 600; color: var(--gold); line-height: 1; }
.ls-sub { font-size: 0.68rem; color: var(--text3); letter-spacing: 0.04em; }

.ls-card {
  width: 100%; position: relative; overflow: hidden;
  background: rgba(195,176,145,0.03);
  border: 1px solid rgba(195,176,145,0.12);
  border-radius: var(--radius); padding: 32px 28px;
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}
.ls-card-glow {
  position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 120px;
  background: radial-gradient(ellipse, rgba(195,176,145,0.15), transparent 70%);
  pointer-events: none;
}
.ls-card-label {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text3);
  text-align: center; margin-bottom: 20px; font-weight: 600;
}

.ls-field { margin-bottom: 12px; }
.ls-field input {
  width: 100%; padding: 13px 18px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--text); outline: none; transition: all 0.2s; letter-spacing: 0.01em;
}
.ls-field input::placeholder { color: var(--text3); }
.ls-field input:focus { border-color: rgba(195,176,145,0.35); background: rgba(195,176,145,0.03); }
.ls-err { font-size: 0.78rem; color: rgba(239,68,68,0.85); text-align: center; padding: 8px 12px; background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.15); border-radius: 8px; margin-bottom: 12px; line-height: 1.45; }

.ls-btn {
  width: 100%; padding: 14px; margin-top: 4px;
  background: var(--gold); color: #0F0A06;
  border: none; border-radius: var(--radius-sm);
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600;
  letter-spacing: 0.05em; cursor: pointer; transition: all 0.25s; position: relative; overflow: hidden;
}
.ls-btn::after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15); opacity: 0; transition: 0.2s; }
.ls-btn:hover::after { opacity: 1; }
.ls-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(195,176,145,0.3); }
.ls-hint { font-size: 0.68rem; color: var(--text3); text-align: center; margin-top: 12px; font-style: italic; }
.ls-footer { font-size: 0.62rem; color: var(--text3); opacity: 0.45; text-align: center; }

/* ─────────────────────────────────────────────
   APP SHELL
   ───────────────────────────────────────────── */
#app-screen { background: var(--bg); }
.app-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(60,35,8,0.9) 0%, var(--bg) 70%);
}
.app-orb {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
  filter: blur(120px); animation: orbPulse 9s ease-in-out infinite alternate;
}
.app-orb1 { width: 500px; height: 500px; background: rgba(195,176,145,0.04); top: -150px; left: 50%; transform: translateX(-50%); }
.app-orb2 { width: 300px; height: 300px; background: rgba(195,176,145,0.03); bottom: 100px; right: -80px; animation-delay: -4s; }

.app-content {
  position: relative; z-index: 10; flex: 1; overflow-y: auto;
  overflow-x: hidden; padding-bottom: var(--bnav);
  scroll-behavior: smooth;
}
.app-content::-webkit-scrollbar { width: 4px; }
.app-content::-webkit-scrollbar-track { background: transparent; }
.app-content::-webkit-scrollbar-thumb { background: rgba(195,176,145,0.15); border-radius: 4px; }
.app-content::-webkit-scrollbar-thumb:hover { background: rgba(195,176,145,0.3); }

/* ── PAGE SYSTEM ─────────────────────────────── */
.page { display: none; animation: pgFadeIn 0.4s ease; min-height: 100vh; }
.page.active { display: block; }
@keyframes pgFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.section { max-width: 800px; margin: 0 auto; padding: 28px 20px; }

.pg-header {
  padding: 40px 24px 28px; text-align: center; max-width: 660px; margin: 0 auto;
}
.pg-eyebrow { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--gold); font-weight: 600; margin-bottom: 12px; opacity: 0.85; }
.pg-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem,6vw,2.8rem); font-weight: 600; color: var(--text); line-height: 1.1; margin-bottom: 12px; }
.pg-desc { font-size: 0.9rem; color: var(--text2); font-weight: 300; line-height: 1.7; }

/* ── GLASS CARD ──────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.3s;
}
.glass-card:hover { border-color: rgba(195,176,145,0.18); }
.cc-header {
  padding: 18px 22px 14px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gold); border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; gap: 8px;
}
.card-body-p { padding: 14px 22px; font-size: 0.85rem; color: var(--text2); line-height: 1.7; font-weight: 300; }

/* ─────────────────────────────────────────────
   HOME PAGE
   ───────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero-img-wrap { position: relative; height: 420px; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-img-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,10,6,0.98) 0%, rgba(15,10,6,0.7) 50%, rgba(15,10,6,0.3) 100%),
              linear-gradient(to top, rgba(15,10,6,0.7) 0%, transparent 50%);
}
.hero-body {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: center; padding: 36px 28px; max-width: 520px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
  padding: 5px 14px; border: 1px solid rgba(195,176,145,0.25); border-radius: 20px;
  background: rgba(195,176,145,0.06); backdrop-filter: blur(8px);
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold);
  width: fit-content;
}
.hero-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.4;transform:scale(0.8)} }

.hero-h {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 8vw, 3.5rem); font-weight: 600; color: var(--text);
  line-height: 1.03; margin-bottom: 16px;
}
.hero-p { font-size: 0.88rem; color: var(--text2); line-height: 1.7; font-weight: 300; margin-bottom: 24px; max-width: 380px; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--gold); color: #0F0A06;
  border: none; border-radius: var(--radius-sm);
  font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em; cursor: pointer; transition: all 0.25s; width: fit-content;
}
.hero-cta:hover { background: #D4C5A9; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(195,176,145,0.25); }

/* Stats Strip */
.stats-strip {
  display: flex; align-items: center;
  background: rgba(195,176,145,0.04); border-top: 1px solid rgba(195,176,145,0.1);
  border-bottom: 1px solid rgba(195,176,145,0.1);
}
.stat-block { flex: 1; padding: 20px 16px; text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 0.7rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; line-height: 1.3; }
.stat-div { width: 1px; height: 40px; background: rgba(195,176,145,0.12); flex-shrink: 0; }

/* Why win grid */
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px;
}
.why-card {
  display: flex; align-items: flex-start; gap: 12px; padding: 16px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm); transition: border-color 0.2s;
}
.why-card:hover { border-color: rgba(195,176,145,0.15); }
.why-icon {
  width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; border: 1px solid;
}
.wc-gold { background: rgba(195,176,145,0.08); border-color: rgba(195,176,145,0.18); }
.wc-green { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.18); }
.wc-purple { background: rgba(167,139,250,0.08); border-color: rgba(167,139,250,0.18); }
.wc-amber { background: rgba(251,191,36,0.08); border-color: rgba(251,191,36,0.18); }
.wc-sky { background: rgba(56,189,248,0.08); border-color: rgba(56,189,248,0.18); }
.why-text { font-size: 0.82rem; color: var(--text2); line-height: 1.55; }
.why-text strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 4px; }

/* Competitor table */
.comp-card { margin-top: 0; }
.comp-table { font-size: 0.82rem; }
.ct-row { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; padding: 10px 22px; border-top: 1px solid rgba(255,255,255,0.04); }
.ct-head { padding: 8px 22px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); border-top: none; background: rgba(255,255,255,0.02); }
.ct-name { color: var(--text2); }
.ct-y { color: rgba(16,185,129,0.9); font-weight: 700; }
.ct-n { color: rgba(239,68,68,0.7); }
.ct-m { color: rgba(251,146,60,0.8); font-weight: 600; }
.ct-us { background: rgba(195,176,145,0.05); border-top: 1px solid rgba(195,176,145,0.15); border-bottom-left-radius: var(--radius); border-bottom-right-radius: var(--radius); }
.ct-name-us { color: var(--gold); font-weight: 700; font-family: 'Playfair Display', serif; }
.ct-us-y { font-weight: 700; }
.section-eyebrow { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); font-weight: 600; margin-bottom: 10px; opacity: 0.85; }
.section-h { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.6rem,5vw,2.2rem); font-weight: 600; color: var(--text); line-height: 1.1; margin-bottom: 20px; }

/* ─────────────────────────────────────────────
   OPPORTUNITY
   ───────────────────────────────────────────── */
.opp-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0; }
.osc { padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.osc-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; border: 1px solid; }
.osc-gold { background: rgba(195,176,145,0.08); border-color: rgba(195,176,145,0.2); }
.osc-green { background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); }
.osc-purple { background: rgba(167,139,250,0.08); border-color: rgba(167,139,250,0.2); }
.osc-amber { background: rgba(251,191,36,0.08); border-color: rgba(251,191,36,0.2); }
.osc-num { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 600; color: var(--gold); line-height: 1; }
.osc-lbl { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.osc-note { font-size: 0.76rem; color: var(--text3); line-height: 1.5; font-weight: 300; }

/* Neighborhoods */
.nbh-list { display: flex; flex-direction: column; }
.nbh-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 22px; border-top: 1px solid rgba(255,255,255,0.04); }
.nbh-item:first-child { border-top: none; }
.nbh-rank { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: rgba(195,176,145,0.25); flex-shrink: 0; width: 24px; padding-top: 2px; }
.nbh-info { flex: 1; }
.nbh-name { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.nbh-desc { font-size: 0.8rem; color: var(--text2); line-height: 1.6; font-weight: 300; }
.nbh-badge { padding: 3px 10px; border-radius: 20px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; flex-shrink: 0; margin-top: 4px; border: 1px solid; }
.nbh-gold { background: rgba(195,176,145,0.1); color: var(--gold); border-color: rgba(195,176,145,0.25); }
.nbh-green { background: rgba(16,185,129,0.08); color: rgba(16,185,129,0.9); border-color: rgba(16,185,129,0.2); }
.nbh-purple { background: rgba(167,139,250,0.08); color: rgba(167,139,250,0.9); border-color: rgba(167,139,250,0.2); }

/* Quote */
.opp-quote {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  margin-top: 20px; padding: 32px 28px; text-align: center;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
}
.oq-line { width: 48px; height: 1px; background: rgba(195,176,145,0.25); }
.opp-quote blockquote { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: var(--text2); line-height: 1.75; max-width: 580px; font-weight: 400; }
.oq-attr { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text3); }

/* ─────────────────────────────────────────────
   BUSINESS PLAN
   ───────────────────────────────────────────── */
.mission-block {
  padding: 28px 26px; display: flex; gap: 12px; align-items: flex-start;
  border-color: rgba(195,176,145,0.16);
  background: linear-gradient(135deg, rgba(195,176,145,0.04), rgba(195,176,145,0.01));
  position: relative; overflow: hidden;
}
.mission-block::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(195,176,145,0.2)); }
.mission-q { font-family: 'Playfair Display', serif; font-size: 5rem; line-height: 0.8; color: rgba(195,176,145,0.12); flex-shrink: 0; }
.mission-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-style: italic; color: var(--text); line-height: 1.6; padding-top: 8px; font-weight: 400; }

/* Pre-batch */
.pbs-row {
  display: flex; gap: 0; overflow-x: auto; margin: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pbs-step { flex: 1; min-width: 90px; display: flex; flex-direction: column; align-items: center; padding: 16px 10px; gap: 8px; border-right: 1px solid rgba(255,255,255,0.04); text-align: center; }
.pbs-step:last-child { border-right: none; }
.pbs-time { font-size: 0.68rem; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; }
.pbs-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.14); background: transparent; }
.pbs-active { border-color: var(--gold); background: var(--gold); box-shadow: 0 0 12px rgba(195,176,145,0.4); }
.pbs-label { font-size: 0.72rem; color: var(--text2); line-height: 1.4; font-weight: 300; }
.pbs-note { font-size: 0.8rem; color: rgba(16,185,129,0.8); padding: 10px 22px 18px; font-weight: 300; }

/* Menu */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; padding: 14px 22px 0; margin-bottom: 10px; }
.menu-card {
  padding: 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm); display: flex; flex-direction: column; gap: 4px; transition: border-color 0.2s;
}
.menu-card:hover { border-color: rgba(195,176,145,0.2); }
.mc-featured { background: rgba(195,176,145,0.06); border-color: rgba(195,176,145,0.18); }
.mc-family { grid-column: 1 / -1; background: rgba(167,139,250,0.04); border-color: rgba(167,139,250,0.14); }
.mc-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); font-weight: 700; }
.mc-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 500; color: var(--text); }
.mc-price { font-size: 1.3rem; font-family: 'Playfair Display', serif; font-weight: 600; color: var(--gold); }
.mc-margin { font-size: 0.68rem; color: var(--text3); }
.mc-addons { display: flex; gap: 8px; flex-wrap: wrap; padding: 0 22px 18px; }
.addon { padding: 4px 12px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; font-size: 0.74rem; color: var(--text2); }

/* ─────────────────────────────────────────────
   FINANCIALS
   ───────────────────────────────────────────── */
.fin-hero-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 0; }
.fh-card { padding: 24px; text-align: center; }
.fhc-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text3); font-weight: 600; margin-bottom: 10px; }
.fhc-val { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.fhc-sub { font-size: 0.74rem; color: var(--text3); line-height: 1.45; font-weight: 300; }

/* Cost bars */
.cost-bars { padding: 18px 22px; display: flex; flex-direction: column; gap: 14px; }
.cb-item { display: flex; flex-direction: column; gap: 6px; }
.cb-label { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text2); }
.cb-amt { font-weight: 600; color: var(--text); }
.cb-track { height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
.cb-bar { height: 100%; border-radius: 4px; width: 0; transition: width 1.2s cubic-bezier(.2,.8,.3,1); }

/* Unit econ */
.ue-flow { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 20px 22px; justify-content: center; }
.ue-box { text-align: center; padding: 12px 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-sm); min-width: 90px; }
.ue-profit { background: rgba(16,185,129,0.07); border-color: rgba(16,185,129,0.2); }
.ue-red { background: rgba(239,68,68,0.04); border-color: rgba(239,68,68,0.1); }
.ue-val { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--gold); margin-bottom: 4px; }
.ue-profit .ue-val { color: rgba(16,185,129,0.9); }
.ue-red .ue-val { color: rgba(239,68,68,0.75); }
.ue-lbl { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); }
.ue-arr { color: var(--text3); font-weight: 300; font-size: 1.2rem; }
.ue-insight { margin: 0 22px 18px; padding: 12px 16px; font-size: 0.83rem; color: var(--text2); line-height: 1.6; background: rgba(195,176,145,0.05); border: 1px solid rgba(195,176,145,0.14); border-radius: var(--radius-sm); font-weight: 300; }
.ue-insight strong { color: var(--text); font-weight: 600; }

/* Revenue bars */
.rev-bars { padding: 18px 22px 22px; display: flex; flex-direction: column; gap: 16px; }
.rv-year { display: flex; flex-direction: column; gap: 6px; }
.rv-head { font-size: 0.8rem; color: var(--text2); font-weight: 500; }
.rv-track { height: 36px; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); overflow: hidden; }
.rv-bar { height: 100%; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: flex-end; padding-right: 14px; font-size: 0.78rem; font-weight: 700; width: 0; transition: width 1.2s cubic-bezier(.2,.8,.3,1); }
.rv-y1 { background: linear-gradient(90deg, rgba(195,176,145,0.6), rgba(195,176,145,0.25)); color: #0a0806; }
.rv-y2 { background: linear-gradient(90deg, rgba(16,185,129,0.7), rgba(16,185,129,0.25)); color: rgba(0,0,0,0.7); }
.rv-y3 { background: linear-gradient(90deg, var(--gold), rgba(195,176,145,0.5)); color: #0a0806; }

/* ─────────────────────────────────────────────
   PITCH DECK
   ───────────────────────────────────────────── */
.pitch-area { padding: 0 16px 24px; max-width: 800px; margin: 0 auto; }
.pitch-slides { display: flex; overflow: hidden; border-radius: var(--radius); }
.ps-slide {
  min-width: 100%; padding: 36px 32px; display: flex; flex-direction: column; gap: 20px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); transition: transform 0.5s cubic-bezier(.4,0,.2,1); position: relative; overflow: hidden; min-height: 440px;
}
.ps-dark { background: rgba(0,0,0,0.3); }
.ps-tag { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--text3); font-weight: 700; display: flex; align-items: center; gap: 10px; }
.ps-tag::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--text3); }
.ps-tag-gold { color: var(--gold-dim); }
.ps-tag-gold::before { background: var(--gold-dim); }
.ps-h { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.5rem,4vw,2rem); font-weight: 600; color: var(--text); line-height: 1.15; }
.ps-sub { font-size: 0.87rem; color: var(--text2); line-height: 1.65; font-weight: 300; max-width: 540px; }

/* Cover */
.ps-cover { align-items: center; justify-content: center; text-align: center; background: var(--bg); border-color: rgba(195,176,145,0.14); }
.ps-cover-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%, rgba(195,176,145,0.07), transparent 65%); pointer-events: none; }
.ps-cover-icon { animation: floatFire 3s ease-in-out infinite alternate; }
.ps-cover-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem,6vw,2.8rem); font-weight: 600; color: var(--text); line-height: 1.05; }
.ps-cover-tag { font-size: 0.88rem; color: var(--text2); font-style: italic; font-family: 'Playfair Display', serif; }
.ps-cover-meta { font-size: 0.75rem; color: var(--text2); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 20px; padding: 7px 20px; }
.ps-cover-founder { font-size: 0.72rem; color: var(--text3); }

/* Problem */
.ps-problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ps-prob { padding: 18px; background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.1); border-radius: var(--radius-sm); display: flex; flex-direction: column; gap: 8px; }
.ps-prob-icon { color: rgba(239,68,68,0.8); }
.ps-prob strong { font-size: 0.88rem; color: var(--text); font-weight: 600; }
.ps-prob p { font-size: 0.8rem; color: var(--text2); line-height: 1.55; font-weight: 300; }

/* Solution */
.ps-sol-list { display: flex; flex-direction: column; gap: 14px; }
.ps-sol { display: flex; gap: 16px; padding: 16px; background: rgba(16,185,129,0.04); border: 1px solid rgba(16,185,129,0.1); border-radius: var(--radius-sm); font-size: 0.84rem; color: var(--text2); line-height: 1.6; font-weight: 300; }
.ps-sol strong { color: var(--text); font-weight: 600; }
.ps-sol-num { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: rgba(16,185,129,0.3); flex-shrink: 0; width: 24px; }

/* Market */
.ps-mkt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ps-mkt-card { padding: 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); display: flex; flex-direction: column; gap: 8px; }
.ps-mkt-featured { background: rgba(195,176,145,0.06); border-color: rgba(195,176,145,0.2); }
.ps-mkt-num { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 600; color: var(--gold); line-height: 1; }
.ps-mkt-lbl { font-size: 0.82rem; color: var(--text2); line-height: 1.4; font-weight: 300; }
.ps-mkt-g { font-size: 0.72rem; color: rgba(16,185,129,0.8); font-weight: 600; }

/* Model */
.ps-model-flow { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; padding: 12px 0; }
.ps-mf-item { text-align: center; padding: 18px 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-sm); min-width: 110px; }
.ps-mf-hl { background: rgba(195,176,145,0.07); border-color: rgba(195,176,145,0.2); }
.ps-mf-lbl { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text3); margin-bottom: 8px; font-weight: 600; }
.ps-mf-val { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.ps-mf-sub { font-size: 0.68rem; color: var(--text3); }
.ps-mf-arr { font-size: 1.1rem; color: var(--text3); }

/* Fin slide */
.ps-fin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ps-fin-col { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-sm); overflow: hidden; }
.ps-fin-title { padding: 10px 16px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); background: rgba(195,176,145,0.04); border-bottom: 1px solid rgba(255,255,255,0.06); }
.ps-fin-row { display: flex; justify-content: space-between; padding: 9px 16px; font-size: 0.8rem; color: var(--text2); border-bottom: 1px solid rgba(255,255,255,0.04); }
.ps-fin-row:last-child { border-bottom: none; }
.ps-fin-total { background: rgba(195,176,145,0.04); font-weight: 600; color: var(--text); border-top: 1px solid rgba(195,176,145,0.12); }

/* Team */
.ps-team-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.ps-team-card { padding: 22px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-sm); display: flex; flex-direction: column; gap: 8px; }
.ps-tcard-open { border-style: dashed; opacity: 0.75; }
.ps-av { width: 48px; height: 48px; background: linear-gradient(135deg, var(--gold), #a08060); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: #0F0A06; }
.ps-av-open { background: rgba(195,176,145,0.08); border: 1.5px dashed rgba(195,176,145,0.3); }
.ps-tname { font-size: 0.9rem; font-weight: 600; color: var(--text); font-family: 'Playfair Display', serif; }
.ps-trole { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; }
.ps-tbio { font-size: 0.78rem; color: var(--text2); line-height: 1.6; font-weight: 300; }

/* Ask slide */
.ps-ask { align-items: center; justify-content: center; text-align: center; background: var(--bg); border-color: rgba(195,176,145,0.14); }
.ps-ask-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(195,176,145,0.08), transparent 65%); pointer-events: none; }
.ps-ask-inner { max-width: 520px; display: flex; flex-direction: column; align-items: center; gap: 18px; position: relative; z-index: 2; }
.ps-ask-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem,7vw,3rem); font-weight: 600; color: var(--gold); line-height: 1.05; }
.ps-ask-sub { font-size: 0.88rem; color: var(--text2); line-height: 1.7; font-weight: 300; }
.ps-ask-sub strong { color: var(--text); font-weight: 600; }
.ps-milestones { display: flex; flex-direction: column; gap: 10px; width: 100%; text-align: left; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.07); }
.ps-ms { display: flex; gap: 12px; align-items: flex-start; font-size: 0.82rem; color: var(--text2); font-weight: 300; line-height: 1.5; }
.ps-ms strong { color: var(--text); font-weight: 600; }
.ps-ms-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }
.ps-contact { font-size: 0.74rem; color: var(--text3); border-top: 1px solid rgba(255,255,255,0.06); padding-top: 16px; width: 100%; text-align: center; }

/* Pitch controls */
.pitch-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 16px; }
.pc-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%; width: 40px; height: 40px; font-size: 1rem; color: var(--text2); cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.pc-btn:hover { border-color: rgba(195,176,145,0.3); color: var(--gold); }
.pc-dots { display: flex; gap: 6px; align-items: center; }
.pc-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.15); transition: all 0.25s; cursor: pointer; }
.pc-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }

/* ─────────────────────────────────────────────
   RECIPE VAULT
   ───────────────────────────────────────────── */
.rv-hero { position: relative; height: 260px; overflow: hidden; }
.rv-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.rv-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,10,6,0.98) 0%, rgba(15,10,6,0.6) 60%, rgba(15,10,6,0.2) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px 24px;
}
.rv-lock { display: flex; align-items: center; gap: 6px; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); font-weight: 700; margin-bottom: 8px; opacity: 0.85; }
.rv-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 600; color: var(--text); line-height: 1.1; margin-bottom: 5px; }
.rv-sub { font-size: 0.82rem; color: var(--text2); margin-bottom: 12px; font-weight: 300; }
.rv-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.rv-chip { padding: 4px 12px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; font-size: 0.7rem; font-weight: 500; color: var(--text2); }

.rv-body { display: grid; grid-template-columns: 280px 1fr; gap: 16px; }
.rv-ing-card, .rv-steps-card { min-height: 0; }
.rv-group { border-top: 1px solid rgba(255,255,255,0.05); }
.rv-group-lbl { padding: 7px 20px; font-size: 0.63rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text3); background: rgba(255,255,255,0.02); }
.rv-premium-lbl { color: var(--gold); background: rgba(195,176,145,0.04); }
.rv-ing { display: flex; gap: 10px; padding: 8px 20px; border-top: 1px solid rgba(255,255,255,0.03); align-items: baseline; }
.ri-q { font-size: 0.72rem; color: var(--text3); min-width: 68px; text-align: right; flex-shrink: 0; }
.rv-ing span:last-child { font-size: 0.8rem; color: var(--text2); line-height: 1.4; font-weight: 300; }
.rv-ing-premium span:last-child { color: var(--gold-dim); }

.rv-steps { display: flex; flex-direction: column; }
.rv-step { display: flex; gap: 14px; padding: 18px 22px; border-top: 1px solid rgba(255,255,255,0.05); }
.rv-snum { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: rgba(195,176,145,0.2); flex-shrink: 0; width: 24px; padding-top: 3px; }
.rv-step-key .rv-snum { color: rgba(195,176,145,0.5); }
.rv-step-dum { background: rgba(195,176,145,0.03); }
.rv-sbody { flex: 1; }
.rv-stitle { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 7px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.rv-st-time { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 600; opacity: 0.8; }
.rv-sbody p { font-size: 0.8rem; color: var(--text2); line-height: 1.65; font-weight: 300; }
.rv-science { display: flex; gap: 8px; margin-top: 10px; padding: 9px 12px; background: rgba(167,139,250,0.06); border: 1px solid rgba(167,139,250,0.15); border-radius: 8px; font-size: 0.76rem; color: rgba(167,139,250,0.85); line-height: 1.55; font-weight: 300; }
.rv-science-gold { background: rgba(195,176,145,0.06); border-color: rgba(195,176,145,0.16); color: rgba(195,176,145,0.85); }
.rv-footer { display: flex; align-items: center; gap: 8px; padding: 14px 20px; font-size: 0.7rem; color: var(--text3); font-style: italic; border-top: 1px solid rgba(255,255,255,0.05); font-weight: 300; max-width: 800px; margin: 0 auto; }

/* ─────────────────────────────────────────────
   BOTTOM NAV
   ───────────────────────────────────────────── */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,10,6,0.96); border-top: 1px solid rgba(195,176,145,0.08);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  height: var(--bnav); padding-bottom: max(env(safe-area-inset-bottom), 0px);
}
.bn-inner { display: flex; justify-content: center; gap: 0; height: 100%; max-width: 700px; margin: 0 auto; align-items: flex-end; padding-bottom: 12px; }
.bn-tab {
  flex: 1; max-width: 90px; display: flex; flex-direction: column; align-items: center;
  justify-content: flex-end; gap: 4px; padding-bottom: 4px; height: 100%;
  background: none; border: none; cursor: pointer; color: var(--text3); transition: color 0.25s;
  position: relative;
}
.bn-tab:hover { color: var(--text2); }
.bn-tab.active { color: var(--gold); }
.bn-icon { transition: transform 0.25s; }
.bn-tab.active .bn-icon { transform: translateY(-2px); filter: drop-shadow(0 0 6px rgba(195,176,145,0.4)); }
.bn-label { font-family: 'Playfair Display', serif; font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.12em; transition: all 0.25s; line-height: 1; }
.bn-active-line { display: none; }
.bn-tab.active .bn-active-line {
  display: block; position: absolute; top: 0; width: 24px; height: 1.5px;
  background: var(--gold); border-radius: 0 0 2px 2px;
  box-shadow: 0 0 8px rgba(195,176,145,0.6);
}
.bn-logout-btn { border-left: 1px solid rgba(255,255,255,0.05); }
.bn-logout-btn:hover { color: rgba(239,68,68,0.7); }

/* ─────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────── */
@media (max-width: 600px) {
  .opp-stat-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .fin-hero-row { grid-template-columns: 1fr; gap: 10px; }
  .ps-problem-grid { grid-template-columns: 1fr; }
  .ps-mkt-grid { grid-template-columns: 1fr 1fr; }
  .ps-fin-grid { grid-template-columns: 1fr; }
  .ps-team-grid { grid-template-columns: 1fr; }
  .rv-body { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .mc-family { grid-column: 1 / -1; }
  .hero-img-wrap { height: 360px; }
  .hero-h { font-size: 2.2rem; }
  .stat-num { font-size: 1.4rem; }
  .stat-lbl { font-size: 0.62rem; }
  .ue-flow { flex-direction: column; }
  .ue-arr { transform: rotate(90deg); }
  .ps-model-flow { flex-direction: column; }
  .ps-mf-arr { transform: rotate(90deg); }
  .bn-label { font-size: 0.5rem; }
  .opp-quote { padding: 20px 18px; }
}
@media (max-width: 400px) {
  .bn-inner { gap: 0; }
  .bn-tab { max-width: 52px; }
  .bn-label { display: none; }
}
