/* ===========================================================================
   Audio Nitnem — site styles
   Palette taken from the app icon & feature graphic:
   midnight indigo → warm amber gradient, black Khanda with a golden halo.
   =========================================================================== */

:root {
  --indigo-900: #0d1430;
  --indigo-800: #141d3e;
  --indigo-700: #1d2748;
  --brown-700: #3a2a1c;
  --brown-600: #543a23;

  --gold:       #e8a33d;   /* primary saffron / amber accent */
  --gold-soft:  #f2c477;
  --gold-deep:  #c9842a;

  --cream:      #faf7f1;
  --cream-2:    #f3ede1;
  --paper:      #ffffff;

  --ink:        #1b1a23;
  --ink-soft:   #494654;
  --ink-faint:  #6b6877;
  --line:       #e7e0d3;

  --on-dark:        #f6f1e7;
  --on-dark-soft:   #c5c1d4;
  --on-dark-faint:  #8d8aa3;

  --radius:   18px;
  --radius-l: 28px;
  --shadow:   0 18px 50px -22px rgba(13, 20, 48, .45);
  --shadow-sm:0 8px 24px -14px rgba(13, 20, 48, .4);
  --maxw: 1140px;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
section { position: relative; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.eyebrow.on-dark { color: var(--gold-soft); }

.section-pad { padding-block: clamp(64px, 9vw, 120px); }
.center { text-align: center; }
.measure { max-width: 60ch; }
.center .measure { margin-inline: auto; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 13px 24px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #2a1c08; box-shadow: 0 10px 24px -10px rgba(232,163,61,.7); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(232,163,61,.85); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.28); color: var(--on-dark); }
.btn-ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { transform: translateY(-2px); background: #2c2a38; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13, 20, 48, .72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--on-dark); }
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 6px 16px -8px rgba(0,0,0,.6); }
.brand b { font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { color: var(--on-dark-soft); font-size: 0.95rem; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--gold-soft); }
.nav-cta { display: inline-flex; }
.nav-toggle { display: none; background: none; border: 0; color: var(--on-dark); cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  color: var(--on-dark);
  background:
    radial-gradient(1100px 520px at 78% 18%, rgba(232,163,61,.22), transparent 60%),
    radial-gradient(900px 600px at 12% 88%, rgba(84,58,35,.55), transparent 62%),
    linear-gradient(135deg, var(--indigo-900) 0%, var(--indigo-800) 46%, var(--brown-700) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 22px 22px; opacity: .35; mask-image: linear-gradient(to bottom, #000, transparent 70%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  padding-block: clamp(56px, 8vw, 104px);
}
.hero h1 { font-size: clamp(2.6rem, 5.6vw, 4.2rem); line-height: 1.04; }
.hero h1 .accent { color: var(--gold-soft); }
.hero-lede { margin-top: 22px; font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--on-dark-soft); max-width: 52ch; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-meta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px 22px; color: var(--on-dark-faint); font-size: 0.9rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta svg { width: 16px; height: 16px; color: var(--gold-soft); }

/* store badges */
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 20px 11px 18px; border-radius: 14px;
  background: #000; color: #fff; border: 1px solid rgba(255,255,255,.16);
  transition: transform .18s ease, border-color .18s;
}
.store-badge:hover { transform: translateY(-2px); border-color: var(--gold-soft); }
.store-badge svg { width: 28px; height: 28px; flex: none; }
/* the label wraps two stacked lines — force a vertical column so they don't run together */
.store-badge .sb-text { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.store-badge .sb-small { font-size: 0.62rem; letter-spacing: .05em; opacity: .85; line-height: 1.25; text-transform: uppercase; }
.store-badge .sb-big { font-size: 1.06rem; font-weight: 600; line-height: 1.18; font-family: var(--font-head); }
.store-badge.coming { opacity: .62; cursor: default; }
.store-badge.coming:hover { transform: none; border-color: rgba(255,255,255,.16); }
.store-badge .sb-tag { font-size: 0.6rem; background: var(--gold); color:#2a1c08; padding: 2px 7px; border-radius: 999px; font-weight: 700; margin-left: 4px; }

/* hero phone */
.hero-art { display: flex; justify-content: center; }
.phone {
  position: relative; width: 270px; aspect-ratio: 9 / 19.5;
  border-radius: 38px; padding: 11px;
  background: linear-gradient(160deg, #2a2535, #15131f);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.phone::before {
  content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 7px; border-radius: 999px; background: rgba(255,255,255,.18); z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 28px; overflow: hidden;
  background:
    radial-gradient(380px 240px at 50% 22%, rgba(232,163,61,.35), transparent 60%),
    linear-gradient(170deg, #151d3c, #2e2013);
  display: flex; align-items: center; justify-content: center;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.phone-fallback { text-align: center; color: var(--on-dark-soft); padding: 24px; }
.phone-fallback img { width: 92px; height: 92px; margin: 0 auto 16px; border-radius: 20px; box-shadow: var(--shadow); }
.phone-fallback b { font-family: var(--font-head); font-size: 1.3rem; color: var(--gold-soft); display:block; }
.phone-fallback span { font-size: .82rem; opacity: .8; }
.phone-glow { position: absolute; inset: -40px -30px auto; height: 200px; filter: blur(60px); background: radial-gradient(closest-side, rgba(232,163,61,.5), transparent); z-index: -1; }

/* ---------- marquee strip ---------- */
.strip { background: var(--indigo-900); color: var(--on-dark-soft); border-top: 1px solid rgba(255,255,255,.06); }
.strip-inner { display: flex; flex-wrap: wrap; gap: 10px 30px; justify-content: center; padding-block: 20px; font-size: 0.9rem; }
.strip-inner span { display: inline-flex; align-items: center; gap: 8px; }
.strip-inner .dot { width: 5px; height: 5px; border-radius: 999px; background: var(--gold); }

/* ---------- features ---------- */
.section-head { max-width: 64ch; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 1.06rem; }

.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px;
}
.feature-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-ic {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(150deg, rgba(232,163,61,.18), rgba(232,163,61,.06));
  color: var(--gold-deep); border: 1px solid rgba(232,163,61,.28);
}
.feature-ic svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- banis list ---------- */
.banis { background: var(--cream-2); border-block: 1px solid var(--line); }
.banis-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.bani-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.bani-chip {
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px; box-shadow: var(--shadow-sm);
}
.bani-chip svg { width: 15px; height: 15px; color: var(--gold-deep); }
.lang-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 34px; box-shadow: var(--shadow);
}
.lang-row { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.lang-row:last-child { border-bottom: 0; }
.lang-badge { font-family: var(--font-head); font-size: 1.4rem; width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(150deg, var(--indigo-800), var(--brown-700)); color: var(--gold-soft); flex: none; }
.lang-row b { display: block; font-size: 1.05rem; }
.lang-row span { color: var(--ink-faint); font-size: 0.9rem; }

/* ---------- screenshots ---------- */
.shots { overflow: hidden; }
.shot-rail {
  display: flex; gap: 26px; margin-top: 48px; padding-bottom: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.shot-rail::-webkit-scrollbar { display: none; }
.shot {
  flex: none; width: 244px; scroll-snap-align: center;
}
.shot .phone { width: 244px; }
.shot p { text-align: center; margin-top: 14px; color: var(--ink-faint); font-size: 0.9rem; }

/* ---------- hukamnama band ---------- */
.band {
  color: var(--on-dark);
  background:
    radial-gradient(700px 360px at 85% 20%, rgba(232,163,61,.22), transparent 60%),
    linear-gradient(135deg, var(--indigo-900), var(--brown-700));
}
.band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.band h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.band p { margin-top: 16px; color: var(--on-dark-soft); font-size: 1.06rem; }
.band-points { margin-top: 26px; display: grid; gap: 14px; }
.band-point { display: flex; gap: 14px; align-items: flex-start; }
.band-point .tick { flex: none; width: 26px; height: 26px; border-radius: 999px; background: rgba(232,163,61,.18); color: var(--gold-soft); display: grid; place-items: center; }
.band-point .tick svg { width: 15px; height: 15px; }
.band-point b { color: var(--on-dark); }
.band-point span { color: var(--on-dark-soft); font-size: 0.95rem; }
.band-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-l); padding: 34px; backdrop-filter: blur(6px);
}
.band-card .khanda { width: 64px; margin-bottom: 18px; }
.gurmukhi { font-size: 1.5rem; color: var(--gold-soft); margin-bottom: 6px; }

/* ---------- CTA ---------- */
.cta { text-align: center; }
.cta-box {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: clamp(40px, 6vw, 72px); box-shadow: var(--shadow); max-width: 880px; margin-inline: auto;
}
.cta-box img.appicon { width: 86px; height: 86px; border-radius: 20px; margin: 0 auto 22px; box-shadow: var(--shadow); }
.cta-box h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.cta-box p { margin: 14px auto 28px; color: var(--ink-soft); max-width: 50ch; }
.cta-badges { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-badges .store-badge { background: var(--ink); }

/* ---------- footer ---------- */
.footer { background: var(--indigo-900); color: var(--on-dark-soft); padding-block: 56px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer .brand b { color: var(--on-dark); }
.footer p { margin-top: 14px; font-size: 0.92rem; max-width: 36ch; color: var(--on-dark-faint); }
.footer h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--on-dark-soft); font-size: 0.94rem; transition: color .15s; }
.footer ul a:hover { color: var(--gold-soft); }
.footer-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--on-dark-faint); }
.footer-bottom .fateh { color: var(--gold-soft); font-family: var(--font-head); font-style: italic; }

/* ---------- doc pages (privacy / support) ---------- */
.doc-hero {
  color: var(--on-dark);
  background:
    radial-gradient(700px 360px at 80% 10%, rgba(232,163,61,.18), transparent 60%),
    linear-gradient(135deg, var(--indigo-900), var(--brown-700));
  padding-block: clamp(56px, 8vw, 96px) clamp(40px, 6vw, 72px);
}
.doc-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.2rem); }
.doc-hero p { margin-top: 14px; color: var(--on-dark-soft); max-width: 60ch; }
.doc-hero .updated { margin-top: 18px; font-size: 0.85rem; color: var(--on-dark-faint); }
.doc { max-width: 760px; margin-inline: auto; padding-block: clamp(48px, 7vw, 84px); }
.doc h2 { font-size: 1.6rem; margin-top: 44px; margin-bottom: 12px; }
.doc h2:first-child { margin-top: 0; }
.doc h3 { font-size: 1.18rem; margin-top: 28px; margin-bottom: 8px; }
.doc p, .doc li { color: var(--ink-soft); }
.doc p { margin-bottom: 14px; }
.doc ul { padding-left: 22px; margin-bottom: 16px; display: grid; gap: 8px; }
.doc a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.doc .callout {
  background: var(--cream-2); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: 12px; padding: 18px 22px; margin: 22px 0; color: var(--ink-soft);
}
.doc .callout b { color: var(--ink); }

/* FAQ */
.faq { display: grid; gap: 14px; margin-top: 8px; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 4px 22px; box-shadow: var(--shadow-sm); transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-weight: 600; font-family: var(--font-head);
  font-size: 1.1rem; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; width: 22px; height: 22px; color: var(--gold-deep); transition: transform .2s; }
.faq details[open] summary .chev { transform: rotate(45deg); }
.faq details p { color: var(--ink-soft); padding-bottom: 20px; margin: 0; }
.faq details p + p { padding-top: 0; }

/* contact card */
.contact-card {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 30px 34px; box-shadow: var(--shadow); margin-top: 16px;
}
.contact-card b { font-family: var(--font-head); font-size: 1.3rem; display: block; }
.contact-card span { color: var(--ink-faint); font-size: 0.95rem; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; }
  .hero-lede { margin-inline: auto; }
  .hero-badges, .hero-meta { justify-content: center; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .banis-grid, .band-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav[data-open="true"] .nav-links {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 70px; left: 0; right: 0; padding: 14px 24px 22px;
    background: var(--indigo-900); border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav[data-open="true"] .nav-links a { padding: 10px 0; width: 100%; }
  .nav[data-open="true"] .nav-links .nav-cta { margin-top: 8px; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-card { flex-direction: column; align-items: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
