/* ══════════════════════════════════════════════════════════════════════════
   RHS COMMUNITY — LANDING PAGE
   Hindi-first editorial. Brand colours from the app (lib/core/theme/colors.dart):
   saffron FILLS, saffron-ink WRITES, maroon carries authority, gold is a hairline.
   Body 18px, touch targets ≥ 48px, WCAG 2.2 AA contrast.
   ══════════════════════════════════════════════════════════════════════════ */

:root {
  --saffron: #FF8C00;
  --saffron-ink: #9A4A05;
  --on-saffron: #2A140A;
  --maroon: #6B0F0F;
  --maroon-deep: #3F0909;
  --gold: #C9A24A;
  --gold-soft: #E9D5A6;

  --ivory: #FBF6EC;
  --paper: #FFFDF8;
  --line: #E6DCCB;

  --ink: #1F1410;
  --ink-2: #4A3A30;
  --ink-3: #6B5A4E;
  --on-dark: #FFF8EC;
  --on-dark-2: #EBD9C4;

  --font: 'Noto Sans Devanagari', 'Noto Sans', system-ui, sans-serif;
  --display: 'Tiro Devanagari Hindi', 'Noto Serif Devanagari', Georgia, serif;

  --wrap: 1180px;
  --gutter: 20px;
  --nav-h: 72px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --shadow: 0 1px 2px rgba(63, 9, 9, .06), 0 8px 24px rgba(63, 9, 9, .07);
  --shadow-lg: 0 30px 60px -20px rgba(30, 5, 5, .45);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ── BASE ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html, body { overflow-x: clip; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul, ol { list-style: none; }
::selection { background: #FFD59A; color: var(--maroon-deep); }
.hero ::selection, .section--maroon ::selection, .download ::selection, .footer ::selection { background: var(--saffron); color: var(--on-saffron); }
html { accent-color: var(--saffron); caret-color: var(--saffron-ink); scrollbar-color: #C9B79F var(--ivory); }
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: #C9B79F; border-radius: 12px; border: 3px solid var(--ivory); }
::-webkit-scrollbar-thumb:hover { background: #A8927A; }
.trust__v, .footer__bottom, .store__text strong { font-variant-numeric: tabular-nums lining-nums; }
:focus-visible { outline: 3px solid var(--saffron); outline-offset: 3px; border-radius: 6px; }

.ic { width: 24px; height: 24px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: var(--r-sm); }
.skip:focus { top: 12px; }

/* ── TYPE ─────────────────────────────────────────────────────────────── */
.h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(30px, 4.4vw, 46px); line-height: 1.3;
  color: var(--maroon-deep); max-width: 22ch; text-wrap: balance;
}
.h3 { font-family: var(--display); font-weight: 400; font-size: clamp(26px, 3vw, 34px); line-height: 1.35; color: var(--maroon-deep); }
.lead { font-size: 19px; color: var(--ink-2); max-width: 60ch; margin-top: 18px; }
.lead a { color: var(--saffron-ink); font-weight: 600; text-underline-offset: 4px; }

/* ── BUTTONS ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 26px; border-radius: 999px;
  font: 600 17px/1 var(--font); text-decoration: none; cursor: pointer; border: 0;
  transition: transform .2s var(--ease), background-color .2s, box-shadow .2s;
}
.btn:active { transform: scale(.98); }
.btn--sm { min-height: 48px; padding: 0 20px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--saffron); color: var(--on-saffron); box-shadow: 0 6px 18px -6px rgba(255, 140, 0, .6); }
.btn--primary:hover { background: #FF9D24; }
.btn--ghost-light { color: var(--on-dark); background: transparent; box-shadow: inset 0 0 0 1.5px rgba(255, 248, 236, .45); }
.btn--ghost-light:hover { background: rgba(255, 248, 236, .08); box-shadow: inset 0 0 0 1.5px rgba(255, 248, 236, .8); }
.btn--ghost-light .ic { width: 20px; height: 20px; transition: transform .2s var(--ease); }
.btn--ghost-light:hover .ic { transform: translateX(3px); }

/* Store badge: the one primary action on the page */
.store {
  display: inline-flex; align-items: center; gap: 14px;
  min-height: 64px; padding: 10px 26px 10px 20px; border-radius: 16px;
  background: var(--saffron); color: var(--on-saffron); text-decoration: none;
  box-shadow: 0 10px 30px -10px rgba(255, 140, 0, .7);
  transition: transform .2s var(--ease), background-color .2s;
}
.store:hover { background: #FF9D24; transform: translateY(-2px); }
.store__logo { width: 30px; height: 30px; }
.store__text { display: flex; flex-direction: column; line-height: 1.2; }
.store__text small { font-size: 13px; font-weight: 500; }
.store__text strong { font-size: 21px; font-weight: 700; font-family: 'Noto Sans', var(--font); }
.store--light { background: var(--paper); color: var(--maroon-deep); box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .5); }
.store--light:hover { background: #fff; }

/* ── NAV ──────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--nav-h);
  color: var(--on-dark);
  transition: background-color .3s, box-shadow .3s, color .3s;
}
.nav--solid { background: rgba(255, 253, 248, .94); color: var(--ink); box-shadow: 0 1px 0 var(--line); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); }
.nav__inner { height: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); display: flex; align-items: center; gap: 24px; }
.nav__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-height: 48px; margin-right: auto; }
.nav__brand img { width: 40px; height: 40px; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav__brand-text strong { font: 700 17px/1.2 'Noto Sans', var(--font); }
.nav__brand-text small { font-size: 13px; opacity: .8; }
.nav__menu { display: flex; gap: 4px; }
.nav__menu a { display: inline-flex; align-items: center; min-height: 48px; padding: 0 14px; border-radius: 999px; text-decoration: none; font-size: 16px; font-weight: 500; opacity: .9; transition: background-color .2s, opacity .2s; }
.nav__menu a:hover { opacity: 1; background: rgba(127, 90, 60, .12); }
.nav__menu a.is-active { opacity: 1; color: var(--saffron-ink); background: rgba(255, 140, 0, .12); }
.nav:not(.nav--solid) .nav__menu a.is-active { color: var(--gold-soft); background: rgba(255, 248, 236, .1); }
.nav__cta .ic { width: 18px; height: 18px; }
.nav__toggle { display: none; width: 48px; height: 48px; border: 0; background: transparent; color: inherit; border-radius: 12px; cursor: pointer; align-items: center; justify-content: center; }
.nav__toggle .ic--close { display: none; }

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; color: var(--on-dark);
  background:
    radial-gradient(900px 500px at 85% 30%, rgba(255, 140, 0, .22), transparent 60%),
    linear-gradient(160deg, #5A0C0C 0%, var(--maroon-deep) 70%);
  padding: calc(var(--nav-h) + 56px) 0 0;
}
.hero::before { /* fine mandala-like grid, low contrast, purely decorative */
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .07;
  background-image: radial-gradient(circle at 1px 1px, #F3D9A8 1px, transparent 0);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(to bottom, #000 30%, transparent 90%);
          mask-image: linear-gradient(to bottom, #000 30%, transparent 90%);
}
.hero__grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: end; }
.hero__copy { padding-bottom: 88px; }
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(42px, 6.6vw, 76px); line-height: 1.18; letter-spacing: -.005em;
  color: var(--on-dark);
}
.hero__title span { color: #FFC266; }
.hero__lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--on-dark-2); max-width: 34em; margin-top: 22px; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 34px; }

.hero__visual { position: relative; height: 600px; }
.hero__visual .phone--front { position: absolute; right: 26%; bottom: -60px; width: 300px; z-index: 2; }
.hero__visual .phone--back { position: absolute; right: 0; bottom: -120px; width: 262px; transform: rotate(6deg); opacity: .92; }

/* ── PHONE FRAME ──────────────────────────────────────────────────────── */
.phone {
  position: relative; border-radius: 42px; padding: 10px;
  background: linear-gradient(145deg, #2B2320, #0F0B0A);
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px rgba(255, 255, 255, .08);
}
.phone img { width: 100%; border-radius: 33px; background: var(--paper); }

/* ── TRUST BAND: continues the hero surface ──────────────────────────── */
.trust { position: relative; z-index: 3; background: #2E0707; color: var(--on-dark); border-top: 1px solid rgba(233, 213, 166, .16); }
.trust__row { display: flex; align-items: center; justify-content: space-between; gap: 24px 48px; padding-block: 22px; flex-wrap: wrap; }
.trust__intro { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--on-dark-2); max-width: 44ch; line-height: 1.5; }
.trust__intro .ic { width: 28px; height: 28px; color: var(--gold); }
.trust__list { display: flex; flex-wrap: wrap; gap: 8px 0; }
.trust__list div { padding: 2px 28px; border-left: 1px solid rgba(233, 213, 166, .22); line-height: 1.45; }
.trust__list dt { font-size: 13px; color: #CDB79C; }
.trust__list dd { font: 600 17px/1.4 'Noto Sans', var(--font); color: #FFE3B3; font-variant-numeric: tabular-nums; }

/* ── SECTIONS ─────────────────────────────────────────────────────────── */
.section { padding: clamp(64px, 8.5vw, 112px) 0; }
.section--paper { background: var(--paper); border-block: 1px solid var(--line); }
.section--maroon { background: linear-gradient(170deg, #5A0C0C, var(--maroon-deep)); color: var(--on-dark); }
.section__head { margin-bottom: clamp(40px, 6vw, 72px); }
.section__head--split { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; max-width: 760px; }
.section__head--split .lead { margin-top: 0; max-width: 58ch; }
.section__head--split .h2 { max-width: 24ch; }
.section__head--light .lead { color: var(--on-dark-2); }
.section__head--light .h2 { color: var(--on-dark); }

/* Showcase: three real screens behind accessible tabs */
.showcase { display: grid; grid-template-columns: 1fr minmax(260px, 340px) 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.showcase__tabs, .showcase__panels { padding-top: clamp(24px, 6vw, 96px); }
.showcase__tabs { display: grid; gap: 10px; }
.tab {
  display: flex; align-items: center; gap: 16px; width: 100%; min-height: 72px; padding: 14px 18px;
  text-align: left; font: inherit; color: var(--ink); cursor: pointer;
  background: transparent; border: 1px solid transparent; border-radius: var(--r-md);
  transition: background-color .25s, border-color .25s, box-shadow .25s;
}
.tab .ic { width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: #F4E9D8; color: var(--ink-3); transition: background-color .25s, color .25s; }
.tab span { display: flex; flex-direction: column; line-height: 1.45; }
.tab strong { font-size: 19px; font-weight: 700; }
.tab small { font-size: 15px; color: var(--ink-3); }
.tab:hover { background: var(--ivory); }
.tab[aria-selected="true"] { background: var(--ivory); border-color: var(--line); box-shadow: var(--shadow); }
.tab[aria-selected="true"] .ic { background: var(--maroon); color: #FFD9A3; }
.tab[aria-selected="true"] strong { color: var(--maroon-deep); }
.showcase__stage { position: relative; display: flex; justify-content: center; }
.showcase__stage::before { content: ''; position: absolute; inset: 12% -12%; border-radius: 50%; background: radial-gradient(closest-side, rgba(255, 140, 0, .16), transparent); }
.showcase__phone { position: relative; width: 100%; display: grid; }
.showcase__img { grid-area: 1 / 1; opacity: 0; transform: scale(.985); transition: opacity .45s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1); }
.showcase__img.is-on { opacity: 1; transform: none; }
.panel .h3 { margin-bottom: 14px; }
.panel p { color: var(--ink-2); margin-bottom: 22px; }
.panel[hidden] { display: none; }
.ticks { display: grid; gap: 12px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.ticks .ic { width: 22px; height: 22px; margin-top: 4px; color: #fff; background: var(--saffron-ink); border-radius: 50%; padding: 4px; stroke-width: 3; }

/* Modules: real app screens, grouped */
.mgroups { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(56px, 7vw, 88px); }
.mgroup { min-width: 0; }
.mgroup__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 20px; padding-top: 18px; margin-bottom: 26px; border-top: 2px solid var(--maroon); }
.mgroup__title { font-family: var(--display); font-weight: 400; font-size: clamp(26px, 2.6vw, 32px); line-height: 1.3; color: var(--maroon-deep); }
.mgroup__head p { font-size: 17px; color: var(--ink-3); }
.mrail { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 2vw, 28px); }
.mrail:focus-visible { outline-offset: 8px; }
.mcard { display: flex; flex-direction: column; gap: 14px; }
.mcard__screen {
  position: relative; overflow: hidden; border-radius: 26px; padding: 7px;
  background: linear-gradient(145deg, #2B2320, #0F0B0A); box-shadow: 0 24px 40px -24px rgba(30, 5, 5, .45);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s;
}
.mcard__screen img { width: 100%; aspect-ratio: 400 / 520; object-fit: cover; object-position: top; border-radius: 20px; background: var(--paper);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 22px, #000 calc(100% - 40px), transparent);
          mask-image: linear-gradient(to bottom, transparent 0, #000 22px, #000 calc(100% - 40px), transparent); }
/* Wide cards: a single component of a screen, shown whole instead of cropped */
.mcard--wide { grid-column: span 2; }
.mcard--wide .mcard__screen { border-radius: 22px; padding: 6px; }
.mcard--wide .mcard__screen img { aspect-ratio: auto; height: 100%; border-radius: 16px; -webkit-mask-image: none; mask-image: none; }
.mrail:has(.mcard--wide) { align-items: start; }
@media (hover: hover) { .mcard:hover .mcard__screen { transform: translateY(-4px); box-shadow: 0 32px 50px -26px rgba(30, 5, 5, .55); } }
.mcard figcaption { display: flex; flex-direction: column; line-height: 1.45; padding-inline: 4px; }
.mcard strong { font-size: 18px; font-weight: 700; color: var(--ink); }
.mcard span { font-size: 15px; color: var(--ink-3); }
.mchips__label { display: inline; font-size: 15px; color: var(--ink-3); margin-right: 8px; }
.mchips { display: inline-flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; vertical-align: middle; }
.mchips li { font-size: 15px; padding: 5px 14px; border-radius: 999px; background: #FBEBD6; color: var(--saffron-ink); font-weight: 600; }

/* Roles: two panels + organisation band */
.roles { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.role { border: 1px solid rgba(233, 213, 166, .22); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 48px); background: rgba(255, 248, 236, .04); }
.role--main { background: var(--paper); color: var(--ink); border-color: transparent; box-shadow: 0 40px 80px -40px rgba(0, 0, 0, .7); }
.role__head { display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-items: center; padding-bottom: 22px; margin-bottom: 8px; border-bottom: 1px solid rgba(233, 213, 166, .22); }
.role--main .role__head { border-bottom-color: var(--line); }
.role__head .ic { grid-row: span 2; width: 56px; height: 56px; padding: 14px; border-radius: 16px; background: rgba(233, 213, 166, .12); color: var(--gold); }
.role--main .role__head .ic { background: var(--maroon); color: #FFD9A3; }
.role__title { font-family: var(--display); font-weight: 400; font-size: clamp(30px, 3.4vw, 40px); line-height: 1.2; }
.role--main .role__title { color: var(--maroon-deep); }
.role__sub { font-size: 16px; color: var(--on-dark-2); }
.role--main .role__sub { color: var(--saffron-ink); font-weight: 600; }
.role__list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.role__list li { position: relative; padding: 12px 0 12px 22px; font-size: 17px; line-height: 1.5; color: var(--on-dark-2); }
.role__list li::before { content: ''; position: absolute; left: 2px; top: 23px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.role--main .role__list li { color: var(--ink-2); }
.role--main .role__list li::before { background: var(--saffron); }
/* Structure: horizontal level path */
.levels { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.levels::before { content: ''; position: absolute; left: 10%; right: 10%; top: 27px; height: 2px; background: linear-gradient(90deg, var(--maroon), var(--saffron)); }
.level { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.level__dot { width: 56px; height: 56px; border-radius: 50%; background: var(--ivory); border: 2px solid var(--saffron); display: grid; place-items: center; margin-bottom: 18px; }
.level__dot::after { content: ''; width: 20px; height: 20px; border-radius: 50%; background: var(--saffron); }
.level:first-child .level__dot { border-color: var(--maroon); }
.level:first-child .level__dot::after { background: var(--maroon); }
.level strong { font-family: var(--display); font-weight: 400; font-size: 28px; line-height: 1.3; color: var(--maroon-deep); }
.level span:last-child { font-size: 16px; color: var(--ink-3); line-height: 1.5; max-width: 16ch; }

/* Advertise */
.btn--ghost { color: var(--maroon-deep); background: transparent; box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { background: var(--ivory); box-shadow: inset 0 0 0 1.5px var(--gold); }
.btn .ic { width: 20px; height: 20px; }
.adv { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(40px, 7vw, 104px); align-items: center; }
.adv__steps { counter-reset: a; display: grid; gap: 4px; margin: 32px 0 34px; }
.adv__steps li { counter-increment: a; position: relative; display: flex; flex-direction: column; padding: 12px 0 12px 58px; border-top: 1px solid var(--line); line-height: 1.5; }
.adv__steps li:last-child { border-bottom: 1px solid var(--line); }
.adv__steps li::before { content: counter(a, devanagari); position: absolute; left: 0; top: 14px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: #FBEBD6; color: var(--saffron-ink); font-family: var(--display); font-size: 21px; line-height: 1; }
.adv__steps strong { font-size: 19px; color: var(--ink); }
.adv__steps span { font-size: 16px; color: var(--ink-3); }
.adv__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.adv__panel { background: linear-gradient(160deg, #5A0C0C, var(--maroon-deep)); color: var(--on-dark); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow-lg); }
.adv__panel-title { display: flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 700; color: #FFE3B3; padding-bottom: 18px; border-bottom: 1px solid rgba(233, 213, 166, .2); }
.adv__panel-title .ic { color: var(--gold); }
.adv__metrics { display: grid; }
.adv__metrics li { display: flex; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid rgba(233, 213, 166, .12); }
.adv__metrics .ic { width: 44px; height: 44px; padding: 11px; border-radius: 12px; background: rgba(255, 248, 236, .08); color: #FFC266; }
.adv__metrics span { display: flex; flex-direction: column; line-height: 1.45; }
.adv__metrics strong { font-size: 17px; }
.adv__metrics small { font-size: 15px; color: var(--on-dark-2); }
.adv__note { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; font-size: 15px; color: var(--on-dark-2); line-height: 1.55; }
.adv__note .ic { width: 20px; height: 20px; margin-top: 2px; color: var(--gold); stroke-width: 2.4; }
@media (max-width: 860px) {
  .adv { grid-template-columns: 1fr; }
  .adv__actions .btn { flex: 1 1 100%; }
}

/* Vision */
.vision { background: var(--paper); color: var(--ink); text-align: center; padding: clamp(72px, 9vw, 112px) 0; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.vision::before { content: ''; position: absolute; left: 50%; top: 0; width: min(560px, 80vw); height: 3px; translate: -50% 0; background: linear-gradient(90deg, transparent, var(--saffron), transparent); }
.vision__inner { position: relative; }
.vision__quote { font-family: var(--display); font-size: clamp(34px, 5.5vw, 62px); line-height: 1.3; color: var(--maroon-deep); text-wrap: balance; }
.vision__title { font-size: clamp(18px, 2vw, 22px); font-weight: 600; color: var(--saffron-ink); margin-top: 18px; }
.vision__pillars { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 0; margin-top: 30px; }
.vision__pillars li { font-size: 18px; color: var(--ink-2); padding: 0 18px; }
.vision__pillars li + li { border-left: 1px solid var(--gold-soft); }

/* FAQ */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.faq__head { position: sticky; top: calc(var(--nav-h) + 32px); }
.faq__list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: 64px; padding: 16px 0; cursor: pointer; list-style: none;
  font-size: 19px; font-weight: 600; color: var(--ink); line-height: 1.5;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .ic { width: 40px; height: 40px; padding: 9px; border-radius: 50%; background: #FBEBD6; color: var(--saffron-ink); transition: transform .25s var(--ease), background-color .2s; }
.qa summary:hover .ic { background: #F8DDB8; }
.qa[open] summary .ic { transform: rotate(180deg); }
.qa__a { padding: 0 56px 22px 0; color: var(--ink-2); font-size: 17px; }

/* Download */
.download { padding: 0 0 clamp(72px, 10vw, 120px); }
.download__card {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
  background: linear-gradient(135deg, #7A1414, var(--maroon-deep));
  color: var(--on-dark); border-radius: 32px; padding: clamp(36px, 6vw, 72px);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.download__card::after { content: ''; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px; border-radius: 50%; border: 1px solid rgba(233, 213, 166, .18); box-shadow: 0 0 0 40px rgba(233, 213, 166, .04), 0 0 0 80px rgba(233, 213, 166, .03); pointer-events: none; }
.download__title { font-family: var(--display); font-weight: 400; font-size: clamp(34px, 4.6vw, 54px); line-height: 1.25; }
.download__lead { color: var(--on-dark-2); margin: 14px 0 30px; max-width: 30em; }
.download__qr { position: relative; z-index: 1; text-align: center; }
.download__qr img { width: 168px; height: 168px; background: #fff; padding: 12px; border-radius: 18px; }
.download__qr figcaption { font-size: 15px; color: var(--on-dark-2); margin-top: 10px; }

/* Footer */
.footer { background: #241210; color: #D9C7B5; padding: 64px 0 calc(32px + env(safe-area-inset-bottom)); font-size: 16px; }
.footer__top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; border-bottom: 1px solid rgba(233, 213, 166, .14); }
.footer__brand { display: flex; gap: 14px; align-items: center; align-self: flex-start; padding-top: 4px; }
.footer__brand img { width: 48px; height: 48px; }
.footer__brand strong { display: block; color: #FFF3E0; font-size: 18px; }
.footer__brand span { font-size: 14px; }
.footer__cols { display: flex; gap: clamp(32px, 6vw, 72px); flex-wrap: wrap; }
.footer__cols h3 { font-size: 14px; font-weight: 600; letter-spacing: .04em; color: var(--gold); margin-bottom: 6px; }
.footer__cols a { display: flex; align-items: center; gap: 8px; min-height: 44px; text-decoration: none; color: #E8D8C6; }
.footer__cols a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.footer__cols .ic { width: 18px; height: 18px; color: var(--gold); }
.footer__bottom { padding-top: 24px; font-size: 14px; line-height: 1.9; color: #BFAB98; }

/* Mobile dock */
.dock { display: none; }


/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .nav__menu a { padding: 0 10px; }
  .hero__visual .phone--front { right: 30%; width: 270px; }
  .hero__visual .phone--back { width: 230px; }
  .mrail { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
  .showcase { grid-template-columns: 1fr 300px; }
  .showcase__panels { grid-column: 1 / -1; order: 3; }
  .role__list { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --nav-h: 64px; }
  .nav__toggle { display: inline-flex; }
  .nav__cta { display: none; }
  .nav__menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 8px var(--gutter) 20px;
    background: var(--paper); color: var(--ink); box-shadow: 0 20px 30px -20px rgba(0, 0, 0, .3);
    border-top: 1px solid var(--line);
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity .2s, transform .2s var(--ease), visibility .2s;
  }
  .nav__menu a { min-height: 56px; font-size: 18px; border-bottom: 1px solid var(--line); border-radius: 0; padding: 0 4px; }
  .nav__menu a:last-child { border-bottom: 0; }
  .nav--open { background: var(--paper); color: var(--ink); }
  .nav--open .nav__menu { visibility: visible; opacity: 1; transform: none; }
  .nav--open .ic--open { display: none; }
  .nav--open .ic--close { display: block; }

  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero__grid { grid-template-columns: 1fr; gap: 0; }
  .hero__copy { padding-bottom: 48px; }
  .hero__visual { height: 400px; }
  .hero__visual .phone--front { left: 50%; right: auto; transform: translateX(-62%); width: 250px; bottom: -150px; }
  .hero__visual .phone--back { left: 50%; right: auto; transform: translateX(8%) rotate(6deg); width: 210px; bottom: -190px; }

  .trust__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 0; width: 100%; }
  .trust__list div:nth-child(odd) { border-left: 0; padding-left: 0; }

  .mrail { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; margin-inline: calc(-1 * var(--gutter)); padding: 4px var(--gutter) 14px; scroll-padding-inline: var(--gutter); scrollbar-width: thin; }
  .mcard { flex: 0 0 min(64vw, 240px); scroll-snap-align: start; }
  .mcard--wide { flex-basis: min(84vw, 320px); }
  .section__head--split { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; }
  .showcase__tabs { grid-template-columns: repeat(3, 1fr); gap: 6px; order: 1; }
  .tab { flex-direction: column; text-align: center; gap: 6px; min-height: 88px; padding: 10px 6px; }
  .tab .ic { width: 40px; height: 40px; }
  .tab strong { font-size: 15px; }
  .tab small { display: none; }
  .showcase__stage { order: 2; }
  .showcase__phone { width: min(300px, 80vw); }
  .showcase__panels { order: 3; }
  .showcase__tabs, .showcase__panels { padding-top: 0; }
  .roles { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .levels { grid-template-columns: 1fr; gap: 0; }
  .levels::before { left: 27px; right: auto; top: 28px; bottom: 28px; width: 2px; height: auto; background: linear-gradient(var(--maroon), var(--saffron)); }
  .level { display: grid; grid-template-columns: 56px 1fr; column-gap: 18px; align-items: center; text-align: left; padding: 10px 0; }
  .level__dot { grid-row: span 2; margin: 0; }
  .level strong { font-size: 24px; }
  .level span:last-child { max-width: none; }

  .download__card { grid-template-columns: 1fr; text-align: left; border-radius: 24px; }
  .download__qr { display: none; } /* a QR is useless on the phone that would scan it */

  .dock {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 253, 248, .96); border-top: 1px solid var(--line);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transform: translateY(110%); transition: transform .3s var(--ease);
  }
  .dock.is-shown { transform: none; }
  .footer { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
}

@media (max-width: 420px) {
  :root { --gutter: 16px; }
  body { font-size: 17px; }
  .nav__brand-text small { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .store, .hero__actions .btn { justify-content: center; }
  .role { padding: 24px 20px; }
  .qa__a { padding-right: 0; }
}

/* ── MOTION: one authored moment — the two phones arrive in the hero ── */
@media (prefers-reduced-motion: no-preference) {
  .hero__visual .phone--front { animation: rise-front 1.1s cubic-bezier(.16, 1, .3, 1) .15s both; }
  .hero__visual .phone--back { animation: rise-back 1.3s cubic-bezier(.16, 1, .3, 1) .35s both; }
  .hero__copy > * { animation: settle .9s cubic-bezier(.16, 1, .3, 1) both; }
  .hero__copy > :nth-child(2) { animation-delay: .06s; }
  .hero__copy > :nth-child(3) { animation-delay: .12s; }
  .hero__copy > :nth-child(4) { animation-delay: .18s; }
}
@keyframes rise-front { from { translate: 0 80px; opacity: .001; filter: blur(6px); } }
@keyframes rise-back { from { translate: 0 120px; opacity: .001; filter: blur(8px); } }
@keyframes settle { from { translate: 0 14px; opacity: .001; } }

/* ══ LEGAL PAGES ═════════════════════════════════════════════════════════ */
.nav--static { position: sticky; top: 0; }
.legal__cta { margin-left: auto; }
.legal__hero { background: linear-gradient(160deg, #5A0C0C, var(--maroon-deep)); color: var(--on-dark); padding: clamp(40px, 7vw, 80px) 0 clamp(36px, 5vw, 56px); }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 15px; color: var(--on-dark-2); margin-bottom: 18px; }
.crumbs a { color: #FFE3B3; text-underline-offset: 4px; }
.legal__title { font-family: var(--display); font-weight: 400; font-size: clamp(36px, 5.4vw, 60px); line-height: 1.2; }
.legal__en { font: 500 17px/1.4 'Noto Sans', var(--font); color: #FFC266; margin-top: 6px; }
.legal__intro { font-size: 19px; color: var(--on-dark-2); max-width: 60ch; margin-top: 14px; }
.legal__note { display: inline-block; margin-top: 18px; font-size: 15px; padding: 6px 14px; border-radius: 999px; background: rgba(255, 248, 236, .08); color: var(--on-dark-2); }

.legal__grid { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: clamp(32px, 6vw, 88px); padding-block: clamp(40px, 6vw, 72px) clamp(64px, 8vw, 104px); align-items: start; }
.legal__aside { position: sticky; top: calc(var(--nav-h) + 24px); display: grid; gap: 28px; }
.toc__title { font-size: 14px; font-weight: 700; letter-spacing: .02em; color: var(--ink-3); margin-bottom: 8px; }
.toc ol { display: grid; gap: 2px; border-left: 2px solid var(--line); }
.toc a { display: block; padding: 7px 0 7px 14px; margin-left: -2px; border-left: 2px solid transparent; font: 500 15px/1.45 'Noto Sans', var(--font); color: var(--ink-2); text-decoration: none; }
.toc a:hover { color: var(--maroon); border-left-color: var(--saffron); }
.legal__others { display: grid; }
.legal__others a { display: flex; align-items: center; min-height: 44px; font-size: 16px; color: var(--ink-2); text-decoration: none; border-bottom: 1px solid var(--line); }
.legal__others a:hover { color: var(--maroon); }
.legal__others a[aria-current="page"] { color: var(--saffron-ink); font-weight: 700; }

.legal__body { max-width: 72ch; font-family: 'Noto Sans', var(--font); font-size: 17px; line-height: 1.8; color: var(--ink-2); }
.legal__body[lang="hi"] { font-family: var(--font); }
.clause { padding-bottom: 36px; margin-bottom: 36px; border-bottom: 1px solid var(--line); scroll-margin-top: calc(var(--nav-h) + 16px); }
.clause h2 { font: 700 23px/1.4 'Noto Sans', var(--font); color: var(--maroon-deep); margin-bottom: 14px; }
.legal__body[lang="hi"] .clause h2 { font-family: var(--display); font-weight: 400; font-size: 28px; }
.clause p + p, .clause ul + p, .clause p + ul { margin-top: 12px; }
.clause a { color: var(--saffron-ink); font-weight: 600; text-underline-offset: 3px; overflow-wrap: anywhere; }
.clauses { display: grid; gap: 10px; }
.clauses li { position: relative; padding-left: 22px; }
.clauses li::before { content: ''; position: absolute; left: 2px; top: 13px; width: 7px; height: 7px; border-radius: 50%; background: var(--saffron); }
.clauses strong { color: var(--ink); }
.summary { display: grid; gap: 12px; }
.summary li { padding: 14px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); }
.steps-list { counter-reset: st; display: grid; gap: 14px; }
.steps-list li { counter-increment: st; position: relative; padding-left: 48px; min-height: 34px; }
.steps-list li::before { content: counter(st, devanagari); position: absolute; left: 0; top: 0; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: var(--maroon); color: #FFD9A3; font-size: 16px; line-height: 1; }
.note { font-size: 15px; color: var(--ink-3); margin-top: 14px; }
.contact-card { padding: 20px 22px; border-radius: var(--r-md); background: var(--paper); border: 1px solid var(--line); display: grid; gap: 4px; }
.contact-card__title { font-weight: 700; color: var(--ink); }
.legal__foot { font-family: var(--font); font-size: 15px; color: var(--ink-3); display: grid; gap: 2px; }
.footer--slim { padding: 28px 0 calc(28px + env(safe-area-inset-bottom)); }
.footer__slim { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 28px; }
.footer__slim nav { display: flex; flex-wrap: wrap; gap: 4px 20px; }
.footer__slim a { display: inline-flex; align-items: center; min-height: 44px; color: #E8D8C6; text-decoration: none; }
.footer__slim a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 860px) {
  .legal__grid { grid-template-columns: 1fr; }
  .legal__aside { position: static; }
  .legal__others { display: none; }
  .toc ol { max-height: none; }
}
@media print {
  .nav, .legal__aside, .footer--slim, .skip { display: none !important; }
  .legal__hero { background: none; color: #000; padding: 0 0 16px; }
  .legal__grid { display: block; padding: 0; }
  .legal__body { max-width: none; color: #000; }
  .clause { break-inside: avoid-page; }
}

/* ══ AUDIT REDESIGN 2026-09-17 ══════════════════════════════════════════ */

/* Hero proof: verified Play listing figures */
.hero__proof { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; margin-top: 30px; }
.rating { display: inline-flex; align-items: center; gap: 12px; min-height: 48px; padding: 6px 16px 6px 12px; border-radius: 999px; background: rgba(255, 248, 236, .08); box-shadow: inset 0 0 0 1px rgba(233, 213, 166, .22); color: var(--on-dark); text-decoration: none; font-size: 16px; transition: background-color .2s; }
.rating:hover { background: rgba(255, 248, 236, .14); }
.rating strong { font: 700 18px/1 'Noto Sans', var(--font); color: #FFE3B3; margin-right: 2px; }
.rating__stars { display: inline-flex; gap: 1px; color: #FFB938; }
.rating__stars .ic { width: 17px; height: 17px; }
.hero__stat { font-size: 16px; color: var(--on-dark-2); }
.hero__stat strong { color: #FFE3B3; font-weight: 700; }

/* Category tabs (modules) */
.ctabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.ctab { min-height: 48px; padding: 0 22px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); color: var(--ink-2); font: 600 17px/1 var(--font); cursor: pointer; transition: background-color .2s, color .2s, border-color .2s; }
.ctab:hover { border-color: var(--gold); color: var(--maroon-deep); }
.ctab[aria-selected="true"] { background: var(--maroon); border-color: var(--maroon); color: #FFE3B3; }
.mpanel[hidden] { display: none; }
.mpanel__sub { font-size: 17px; color: var(--ink-3); margin-bottom: 22px; }
.mchips-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 26px; }
.mchips-row .mchips { margin-top: 0; }

/* Organisation block inside “who” */
.org { margin-top: 20px; padding: clamp(28px, 4vw, 44px); border-radius: var(--r-lg); border: 1px solid rgba(233, 213, 166, .22); background: rgba(0, 0, 0, .12); }
.org__title { font-size: 19px; font-weight: 700; color: #FFE3B3; margin-bottom: 30px; }
.org .levels::before { background: linear-gradient(90deg, #E9D5A6, var(--saffron)); opacity: .7; }
.org .level__dot { background: #3A0808; border-color: var(--saffron); }
.org .level:first-child .level__dot { border-color: #E9D5A6; }
.org .level:first-child .level__dot::after { background: #E9D5A6; }
.org .level strong { color: #FFF3E0; }
.org .level span:last-child { color: var(--on-dark-2); }
.org__list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(233, 213, 166, .16); }
.org__list li { font-size: 15px; padding: 5px 14px; border-radius: 999px; background: rgba(255, 248, 236, .08); color: var(--on-dark); }

/* Download: steps next to the button that completes them */
.dsteps { display: grid; gap: 14px; margin: 26px 0 30px; }
.dsteps li { display: flex; gap: 16px; align-items: flex-start; }
.dstep__n { flex: none; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 248, 236, .1); box-shadow: inset 0 0 0 1px rgba(233, 213, 166, .3); color: #FFD9A3; font-family: var(--display); font-size: 21px; line-height: 1; }
.dsteps span:last-child { display: flex; flex-direction: column; line-height: 1.5; }
.dsteps strong { font-size: 18px; color: #FFF3E0; }
.dsteps small { font-size: 15px; color: var(--on-dark-2); }
.download__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 22px; }
.download__meta { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; color: var(--on-dark-2); }
.download__meta .ic { width: 16px; height: 16px; color: #FFB938; }
.download__meta strong { color: #FFE3B3; }
.download { padding-top: clamp(24px, 4vw, 40px); }

@media (max-width: 860px) {
  .ctabs { flex-wrap: nowrap; overflow-x: auto; margin-inline: calc(-1 * var(--gutter)); padding: 2px var(--gutter) 6px; scrollbar-width: none; }
  .ctabs::-webkit-scrollbar { display: none; }
  .ctab { flex: none; font-size: 16px; padding: 0 18px; }
  .org .levels::before { background: linear-gradient(#E9D5A6, var(--saffron)); }
  .footer__top { gap: 28px; padding-bottom: 24px; }
  .footer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; width: 100%; }
  .footer__cols > div:last-child { grid-column: 1 / -1; }
  .footer { padding-top: 44px; }
}

@media (max-width: 860px) {
  /* “who”: the path reads as one line of five stops; descriptions stay on desktop */
  .org .levels { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 4px; }
  .org .levels::before { left: 10%; right: 10%; top: 17px; bottom: auto; width: auto; height: 2px; background: linear-gradient(90deg, #E9D5A6, var(--saffron)); }
  .org .level { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0; }
  .org .level__dot { width: 36px; height: 36px; margin: 0 0 10px; }
  .org .level__dot::after { width: 12px; height: 12px; }
  .org .level strong { font-size: 16px; }
  .org .level span:last-child { display: none; }
  .role__list li { padding-block: 8px; }
  .role__list li::before { top: 19px; }
  /* advertise: metrics as a compact 2×2 */
  .adv__metrics { grid-template-columns: 1fr 1fr; gap: 0 14px; }
  .adv__metrics li { flex-direction: column; align-items: flex-start; gap: 8px; padding: 14px 0; }
  .adv__metrics small { display: none; }
  .adv__metrics strong { font-size: 15px; line-height: 1.4; }
}

@media (max-width: 420px) { .rating__where { display: none; } }

@media (max-width: 420px) {
  .vision__pillars li { font-size: 16px; padding: 0 12px; }
}
