/* Community Forum — Informative static site */

:root {
  --navy: #0f0f1a;
  --navy-light: #1a1a2e;
  --navy-mid: #252542;
  --maroon: #1a3a5c;
  --maroon-dark: #0f2847;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --green: #145a42;
  --green-light: #1a7354;
  --saffron: #f57320;
  --cream: #fdf8f3;
  --cream-dark: #f5ebe0;
  --text: #1c1917;
  --text-muted: #57534e;
  --text-light: rgba(255, 255, 255, 0.72);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 15, 26, 0.12);
  --shadow-lg: 0 28px 80px rgba(15, 15, 26, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 80px;
  --font-en: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --font-hi: "Hind", "Segoe UI", system-ui, sans-serif;
  /* aliases used across stylesheet */
  --font: var(--font-en);
  --font-hindi: var(--font-hi);
  --font-display: var(--font-hi);
  --text-base: 1.125rem;
  --text-sm: 1rem;
  --text-xs: 0.9375rem;
  --leading: 1.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-en);
  font-size: var(--text-base);
  line-height: var(--leading);
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[lang="hi"] {
  font-family: var(--font-hi);
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.cultural-band {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron) 33%, var(--white) 33% 66%, var(--green) 66%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  top: 4px;
  z-index: 100;
  height: var(--header-h);
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 30, 30, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  display: block;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.logo-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  font-family: var(--font-en);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo-community {
  color: #1a3a5c;
}

.logo-forum {
  color: #f97316;
}

.logo--footer .logo-community {
  color: #ffffff;
}

.logo--footer .logo-forum {
  color: #fbbf24;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  min-width: 0;
}

.footer-brand .logo--footer {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .logo-icon {
    width: 44px;
    height: 44px;
  }

  .logo-wordmark {
    font-size: 1.05rem;
  }
}

@media (max-width: 400px) {
  .logo-wordmark {
    font-size: 0.95rem;
  }
}

.logo-text em {
  font-style: normal;
  font-weight: 500;
  color: var(--text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.25rem;
}

.site-nav a {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 4.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}

.site-nav a span:first-child {
  font-size: var(--text-sm);
}

.site-nav a span:last-child {
  font-size: var(--text-sm);
  color: var(--maroon);
  font-family: var(--font-hi);
  font-weight: 500;
  line-height: 1.45;
  white-space: normal;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--navy);
}

.nav-cta {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--navy) !important;
  min-width: auto;
  text-align: center;
  font-family: var(--font-en);
}

.nav-cta span:last-child {
  color: var(--navy) !important;
  opacity: 0.85;
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* Buttons */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1.35;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(26, 26, 46, 0.15);
  color: var(--navy);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.65rem 1.15rem;
  font-size: var(--text-xs);
}

.btn-youtube {
  flex-direction: row;
  flex-wrap: wrap;
  background: #ff0000;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.25);
  gap: 0.5rem;
  font-size: var(--text-sm);
}

.btn-youtube:hover {
  background: #cc0000;
}

.btn-primary span[lang="hi"],
.btn-secondary span[lang="hi"] {
  margin-left: 0;
  font-family: var(--font-hi);
  font-weight: 600;
  font-size: 0.98rem;
  opacity: 0.95;
}

/* Bilingual headings */
.heading-bilingual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.heading-bilingual--hero {
  margin-bottom: 1.5rem;
}

.heading-en {
  font-family: var(--font-en);
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--maroon);
  letter-spacing: -0.02em;
}

.heading-hi {
  font-family: var(--font-hi);
  font-size: clamp(1.5rem, 2.9vw, 2.15rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
}

.heading-bilingual:not(.heading-bilingual--hero) .heading-en {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
}

.heading-bilingual:not(.heading-bilingual--hero) .heading-hi {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.4;
}

.heading-bilingual--light .heading-en,
.heading-bilingual--light .heading-hi {
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 4.5rem) 0 5rem;
  overflow: hidden;
}

.hero-rangoli {
  position: absolute;
  width: 220px;
  height: 220px;
  opacity: 0.12;
  background:
    radial-gradient(circle, var(--gold) 2px, transparent 2px),
    radial-gradient(circle, var(--saffron) 2px, transparent 2px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  pointer-events: none;
}

.hero-rangoli--left {
  top: 15%;
  left: -40px;
  transform: rotate(15deg);
}

.hero-rangoli--right {
  bottom: 10%;
  right: -40px;
  transform: rotate(-20deg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(245, 115, 32, 0.14), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(123, 30, 30, 0.1), transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.08), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--saffron);
  line-height: 1.4;
}

.eyebrow span:last-child {
  font-family: var(--font-hi);
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--maroon);
}

.hero-lead,
.section-lead {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 58ch;
  line-height: var(--leading);
}

.hero-lead span:last-child,
.section-lead span:last-child {
  font-family: var(--font-hi);
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--maroon);
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.25rem 0 2.75rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.hero-stats li {
  min-width: 0;
}

.hero-stats strong {
  display: block;
  font-size: 1.125rem;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.hero-stat-hi {
  display: block;
  font-family: var(--font-hi);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

.hero-stats > li > span:last-child {
  display: block;
  font-size: var(--text-sm);
  line-height: 1.5;
  color: var(--text-muted);
}

.eyebrow--light span:last-child {
  color: var(--gold-light);
}

/* Phone mock / Community App */
.community-app {
  position: relative;
  margin-inline: auto;
  width: fit-content;
}

.community-app--hero {
  animation: app-float 5s ease-in-out infinite;
}

.phone-glow {
  position: absolute;
  inset: 10% -8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.35), rgba(245, 115, 32, 0.12) 45%, transparent 70%);
  filter: blur(28px);
  animation: glow-pulse 4s ease-in-out infinite;
}

.phone-frame {
  position: relative;
  margin-inline: auto;
  max-width: 300px;
  padding: 10px;
  border-radius: 36px;
  background: linear-gradient(145deg, #2a2a38, #0a0a10);
  box-shadow:
    0 28px 80px rgba(15, 15, 26, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  border-radius: 0 0 14px 14px;
  background: #0a0a10;
  z-index: 2;
}

.phone-screen {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(180deg, #12121a 0%, #0d0d12 100%);
  padding: 2.75rem 1rem 1.15rem;
  color: var(--white);
  min-height: 520px;
  overflow: hidden;
}

.app-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.85rem;
  padding-inline: 0.15rem;
}

.app-status-icons {
  display: flex;
  gap: 3px;
  align-items: flex-end;
}

.app-status-icons span {
  display: block;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 1px;
}

.app-status-icons span:nth-child(1) { width: 14px; height: 6px; }
.app-status-icons span:nth-child(2) { width: 10px; height: 8px; }
.app-status-icons span:nth-child(3) { width: 6px; height: 10px; border-radius: 1px 1px 0 0; }

.mock-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.85rem;
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(232, 197, 71, 0.6);
  animation: dot-pulse 2s ease-in-out infinite;
}

.mock-card {
  padding: 0.95rem 1rem;
  border-radius: 14px;
  margin-bottom: 0.85rem;
}

.mock-card--welcome {
  background: linear-gradient(135deg, #2a241f 0%, #1f1a16 100%);
  border: 1px solid rgba(201, 162, 39, 0.22);
}

.mock-card h3 {
  font-size: 0.9375rem;
  line-height: 1.45;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.mock-card p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.mock-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.7rem 0.4rem 0.65rem;
  border-radius: 14px;
  background: #1c1c24;
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.6875rem;
  line-height: 1.3;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

button.mock-tile {
  cursor: pointer;
  font: inherit;
  width: 100%;
}

.mock-tile.is-active {
  border-color: rgba(201, 162, 39, 0.55);
  background: linear-gradient(145deg, #252530, #1c1c28);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.15), 0 8px 24px rgba(0, 0, 0, 0.35);
  transform: scale(1.03);
}

.mock-tile.is-active .app-tile-icon {
  transform: scale(1.08);
}

.app-tile-label {
  font-weight: 600;
  font-size: 0.6875rem;
}

.app-tile-label-hi {
  font-family: var(--font-hi);
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.45);
}

.app-tile-icon {
  display: block;
  width: 32px;
  height: 32px;
  margin-bottom: 0.2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.app-tile-icon--market {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect x='6' y='10' width='20' height='16' rx='3' fill='%233b82f6'/%3E%3Cpath d='M11 10V8a5 5 0 0 1 10 0v2' stroke='%23e8c547' stroke-width='2' fill='none'/%3E%3Crect x='13' y='16' width='6' height='4' rx='1' fill='%23fbbf24'/%3E%3C/svg%3E");
}

.app-tile-icon--matrimony {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cellipse cx='16' cy='18' rx='9' ry='7' fill='none' stroke='%23cbd5e1' stroke-width='2.5'/%3E%3Cpath d='M16 11l2.5 4.5h5l-4 3.5 1.5 5-5-3.5-5 3.5 1.5-5-4-3.5h5z' fill='%233b82f6'/%3E%3C/svg%3E");
}

.app-tile-icon--bill {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect x='8' y='5' width='16' height='22' rx='2' fill='%23f8fafc'/%3E%3Cline x1='11' y1='11' x2='21' y2='11' stroke='%2394a3b8' stroke-width='1.5'/%3E%3Cline x1='11' y1='15' x2='21' y2='15' stroke='%2394a3b8' stroke-width='1.5'/%3E%3Cline x1='11' y1='19' x2='17' y2='19' stroke='%2394a3b8' stroke-width='1.5'/%3E%3C/svg%3E");
}

.app-tile-icon--vote {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect x='7' y='8' width='18' height='16' rx='2' fill='%2364748b'/%3E%3Crect x='10' y='5' width='12' height='4' rx='1' fill='%2394a3b8'/%3E%3Cpath d='M13 16l2.5 2.5L19 14' stroke='%234ade80' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.app-tile-icon--tree {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect x='14' y='20' width='4' height='8' fill='%2378350f'/%3E%3Ccircle cx='16' cy='14' r='9' fill='%2322c55e'/%3E%3Ccircle cx='12' cy='12' r='5' fill='%2316a34a'/%3E%3Ccircle cx='20' cy='12' r='5' fill='%2316a34a'/%3E%3C/svg%3E");
}

.app-tile-icon--events {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect x='6' y='8' width='20' height='18' rx='2' fill='%23f8fafc'/%3E%3Crect x='6' y='8' width='20' height='6' fill='%23ef4444'/%3E%3Ccircle cx='22' cy='20' r='5' fill='%23ef4444'/%3E%3Ccircle cx='22' cy='20' r='2' fill='%23fff'/%3E%3C/svg%3E");
}

.mock-announce {
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f201d 0%, #0a1816 100%);
  border: 1px solid rgba(74, 222, 128, 0.15);
  font-size: 0.75rem;
  line-height: 1.5;
  min-height: 72px;
}

.mock-announce strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #4ade80;
  line-height: 1.45;
  font-size: 0.75rem;
}

.mock-announce p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6875rem;
}

.app-banner-track {
  position: relative;
  min-height: 52px;
}

.app-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  animation: banner-cycle 12s ease-in-out infinite;
}

.app-banner-slide:nth-child(1) { animation-delay: 0s; }
.app-banner-slide:nth-child(2) { animation-delay: 4s; }
.app-banner-slide:nth-child(3) { animation-delay: 8s; }

.app-enter {
  opacity: 0;
  transform: translateY(14px);
  animation: app-enter 0.55s ease forwards;
  animation-delay: calc(0.08s * var(--enter-i, 0) + 0.3s);
}

.app-feature-spotlight {
  animation: spotlight-in 0.35s ease;
}

.app-feature-spotlight.is-updating {
  animation: spotlight-out 0.2s ease forwards;
}

.app-feature-spotlight p[lang="hi"] {
  font-family: var(--font-hi);
  margin-top: 0.35rem;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* App showcase section */
.app-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 360px) 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3.5rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-showcase-phone {
  display: flex;
  justify-content: center;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.app-showcase .phone-frame--sim {
  max-width: 340px;
  width: 100%;
}

.community-app--interactive:not(.app-simulator) .phone-frame {
  max-width: 280px;
}

.app-showcase-eyebrow {
  margin-bottom: 0.75rem;
}

.app-showcase-heading {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 1.35rem;
  line-height: 1.35;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.app-showcase-heading span:last-child {
  font-family: var(--font-hi);
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.app-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.app-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.app-feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 162, 39, 0.25);
}

.app-feature-card.is-active {
  background: rgba(201, 162, 39, 0.12);
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateX(6px);
}

.app-feature-card-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-bottom: 0;
}

.app-feature-card-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.app-feature-card-text strong {
  font-size: 0.9375rem;
  color: var(--white);
}

.app-feature-card-text span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.app-showcase-hint {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
}

.app-showcase-hint span:last-child {
  font-family: var(--font-hi);
}

@keyframes app-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.85); }
}

@keyframes app-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes banner-cycle {
  0%, 26% { opacity: 1; transform: translateY(0); }
  30%, 100% { opacity: 0; transform: translateY(-8px); }
}

@keyframes spotlight-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spotlight-out {
  to { opacity: 0; transform: translateY(-4px); }
}

@keyframes icon-wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-6deg) scale(1.05); }
  75% { transform: rotate(6deg) scale(1.05); }
}

.mock-tile.is-active .app-tile-icon--events {
  animation: icon-wiggle 0.6s ease;
}

.mock-tile.is-active .app-tile-icon--market {
  animation: icon-wiggle 0.6s ease 0.05s;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--cream {
  background: var(--cream);
}

.section--maroon {
  background: linear-gradient(160deg, var(--maroon-dark), var(--maroon) 45%, var(--navy-light));
  color: var(--white);
}

.section--videos {
  background:
    linear-gradient(180deg, rgba(253, 248, 243, 0.95), var(--cream)),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: relative;
}

.section-ornament {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--green {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  color: var(--white);
}

.section-head {
  max-width: 680px;
  margin-bottom: 3rem;
}

.section-head--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-head--center .section-lead {
  margin-inline: auto;
}

.section-lead--center {
  max-width: 62ch;
}

.section-head h2 {
  font-family: var(--font-en);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.section--maroon .feature h3,
.section--dark .feature h3 {
  color: var(--white);
}

.section-lead--light {
  color: rgba(255, 255, 255, 0.82);
}

/* Cards */
.cards {
  display: grid;
  gap: 1.5rem;
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow: var(--shadow);
}

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.card p {
  font-size: var(--text-sm);
  line-height: var(--leading);
  color: var(--text-muted);
}

.card-hi {
  margin-top: 0.85rem;
  font-family: var(--font-hi) !important;
  font-size: var(--text-sm) !important;
  line-height: 1.75 !important;
  color: var(--maroon) !important;
  opacity: 0.95;
}

.card h3 span[lang="hi"] {
  display: block;
  font-family: var(--font-hindi);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--maroon);
  margin-top: 0.35rem;
  line-height: 1.45;
}

.feature h3 span[lang="hi"] {
  display: block;
  font-family: var(--font-hindi);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--gold-light);
  margin-top: 0.35rem;
  line-height: 1.45;
}

.feature h3 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 0.65rem;
}

.feature p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--text-light);
}

.card--cultural {
  border-top: 3px solid var(--gold);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.check-list {
  margin-top: 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.85rem;
  font-size: var(--text-sm);
  line-height: var(--leading);
  color: var(--text-muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.check-list--light li {
  color: rgba(255, 255, 255, 0.88);
}

.check-list--light li::before {
  color: var(--gold-light);
}

/* Service panel */
.service-panel {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.35rem 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
}

.service-row span {
  grid-column: 1;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
}

.service-row strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 1.2rem;
  color: var(--green);
  white-space: nowrap;
}

.service-row em {
  grid-column: 1;
  font-size: var(--text-xs);
  font-style: normal;
  line-height: 1.45;
  color: var(--text-muted);
}

.service-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(26, 26, 46, 0.06);
}

.step-num {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.step h3 {
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.step h3 span[lang="hi"] {
  display: block;
  font-family: var(--font-hindi);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--maroon);
  margin-top: 0.3rem;
  line-height: 1.45;
}

.step p {
  font-size: var(--text-sm);
  line-height: var(--leading);
  color: var(--text-muted);
}

/* Committee panel */
.committee-panel {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.committee-panel h3 {
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
  line-height: 1.4;
}

.committee-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.committee-panel dt {
  color: rgba(255, 255, 255, 0.75);
}

.committee-panel dd {
  font-weight: 700;
  margin: 0;
}

.committee-total {
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

.committee-total strong {
  color: var(--gold-light);
  font-size: 1.2rem;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trust-item {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.trust-item p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* CTA */
.section--cta {
  padding-bottom: 6rem;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 26, 46, 0.06);
}

.cta-box h2 {
  font-family: var(--font-en);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.cta-box > div > p {
  font-size: var(--text-sm);
  line-height: var(--leading);
  color: var(--text-muted);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form span {
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.45;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1rem;
  font-size: var(--text-sm);
  border: 1px solid rgba(26, 26, 46, 0.12);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-note {
  grid-column: 1 / -1;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--green);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.contact-form .btn {
  grid-column: 1 / -1;
}

.form-note.is-error {
  color: #b91c1c;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--text-light);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(140px, 1fr));
  gap: 2rem 2.5rem;
  padding-bottom: 2.5rem;
  align-items: start;
}

.footer-tagline {
  margin: 0;
  font-size: var(--text-sm);
  line-height: 1.75;
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-tagline span {
  display: block;
}

.footer-tagline span + span {
  margin-top: 0.65rem;
}

.footer-tagline span[lang="hi"] {
  font-family: var(--font-hindi);
  color: rgba(255, 255, 255, 0.68);
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer h4 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
}

.site-footer ul li {
  margin-bottom: 0.55rem;
  font-size: var(--text-sm);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding: 1.5rem 0 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--text-xs);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* Video hub */
.video-channel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.video-hub {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(123, 30, 30, 0.1);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.video-tabs-wrap {
  padding: 1rem 1rem 0;
  background: linear-gradient(180deg, rgba(123, 30, 30, 0.06), transparent);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
}

.video-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.video-tab {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 5.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: var(--radius-sm);
  background: var(--cream);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.video-tab:hover {
  border-color: var(--gold);
}

.video-tab.is-active {
  background: var(--white);
  border-color: var(--maroon);
  box-shadow: 0 4px 16px rgba(123, 30, 30, 0.12);
}

.video-tab-icon {
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.video-tab-text {
  min-width: 0;
  flex: 1;
}

.video-tab-en {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.4;
  color: var(--navy);
}

.video-tab-hi {
  display: block;
  font-family: var(--font-hindi);
  font-size: var(--text-xs);
  line-height: 1.45;
  color: var(--maroon);
  margin-top: 0.35rem;
}

.video-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  gap: 0;
}

.video-main {
  padding: 1.25rem;
  border-right: 1px solid rgba(26, 26, 46, 0.06);
}

.video-player {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--navy);
}

.video-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-player-placeholder {
  display: grid;
  place-content: center;
  gap: 0.5rem;
  height: 100%;
  min-height: 220px;
  text-align: center;
  color: var(--text-light);
  padding: 1.5rem;
}

.video-player-placeholder span {
  font-size: 2.5rem;
}

.video-player-placeholder p {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: var(--text-sm);
  line-height: 1.5;
}

.video-player-placeholder small {
  font-size: var(--text-xs);
  opacity: 0.85;
  line-height: 1.5;
}

.video-playlist-info {
  margin-top: 1rem;
}

.video-playlist-info h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--navy);
}

.playlist-title-hi {
  font-family: var(--font-display);
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--maroon);
  margin-top: 0.35rem;
}

.playlist-desc,
.playlist-desc-hi {
  margin-top: 0.65rem;
  font-size: var(--text-sm);
  line-height: var(--leading);
  color: var(--text-muted);
}

.video-sidebar-title {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--maroon);
  margin-bottom: 0.85rem;
}

.video-sidebar-title span:last-child {
  font-family: var(--font-hindi);
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--text-xs);
}

.video-list-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: start;
  width: 100%;
  padding: 0.65rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.video-list-item:hover {
  border-color: var(--gold);
}

.video-list-item.is-active {
  border-color: var(--maroon);
  box-shadow: 0 2px 10px rgba(123, 30, 30, 0.1);
}

.playlist-desc-hi {
  font-family: var(--font-hindi);
  color: var(--maroon);
  opacity: 0.9;
}

.video-sidebar {
  padding: 1.25rem;
  background: var(--cream);
  max-height: 560px;
  overflow-y: auto;
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.video-list-item img {
  width: 112px;
  height: 63px;
  object-fit: cover;
  border-radius: 6px;
}

.video-list-text {
  min-width: 0;
}

.video-list-en {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

.video-list-hi {
  display: block;
  font-family: var(--font-hindi);
  font-size: var(--text-xs);
  color: var(--maroon);
  margin-top: 0.35rem;
  line-height: 1.45;
}

.video-list-play {
  color: var(--maroon);
  font-size: var(--text-sm);
  padding-top: 0.25rem;
}

.video-list-empty {
  padding: 1.25rem;
  font-size: var(--text-sm);
  line-height: 1.65;
  list-style: none;
}

.video-list-empty code {
  font-size: 0.78rem;
  background: rgba(123, 30, 30, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.service-panel--cultural {
  border-top: 3px solid var(--gold);
}

/* Responsive — tablet: hamburger earlier to prevent nav overlap */
@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: calc(4px + var(--header-h)) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--cream);
    border-bottom: 1px solid rgba(26, 26, 46, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.95rem 0.5rem;
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
    white-space: normal;
    min-width: 0;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .video-tabs {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .split,
  .cta-box,
  .cards--3,
  .feature-grid,
  .video-layout,
  .video-tabs {
    grid-template-columns: 1fr;
  }

  .video-main {
    border-right: 0;
    border-bottom: 1px solid rgba(26, 26, 46, 0.06);
  }

  .video-sidebar {
    max-height: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .phone-frame {
    max-width: 280px;
  }

  .app-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .app-showcase-phone {
    order: -1;
  }

  .app-feature-card.is-active {
    transform: none;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 76px;
  }

  .hero {
    padding-top: calc(var(--header-h) + 3rem);
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Platform, revenue, partnership sections */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.platform-block {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-block--wide {
  grid-column: 1 / -1;
}

.platform-num {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.platform-block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.65rem;
  line-height: 1.35;
}

.platform-block h3 span[lang="hi"] {
  display: block;
  font-family: var(--font-hi);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.15rem;
}

.platform-block ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.platform-block li + li {
  margin-top: 0.35rem;
}

.platform-cols {
  columns: 2;
  column-gap: 2rem;
}

.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.value-prop {
  padding: 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.22);
}

.value-prop strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
  color: var(--gold-light);
}

.value-prop p {
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.subsection-title {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  color: var(--text);
}

.subsection-title span[lang="hi"] {
  font-family: var(--font-hi);
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon);
}

.model-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.model-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(26, 58, 92, 0.1);
  box-shadow: var(--shadow);
}

.model-card--featured {
  border-color: rgba(245, 115, 32, 0.35);
  box-shadow: 0 8px 32px rgba(245, 115, 32, 0.1);
}

.model-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.0625rem;
}

.model-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.model-example {
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-size: var(--text-sm);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.model-example p {
  margin: 0.25rem 0 0;
}

.model-benefits {
  margin: 0;
  padding-left: 1.1rem;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.model-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(26, 58, 92, 0.1);
  background: var(--white);
  box-shadow: var(--shadow);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  min-width: 560px;
}

.data-table th,
.data-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(26, 58, 92, 0.08);
  vertical-align: top;
}

.data-table th {
  background: var(--cream-dark);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--maroon);
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.data-table-total td {
  background: rgba(20, 90, 66, 0.08);
  font-weight: 600;
}

.revenue-assumption {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.revenue-example {
  margin-top: 2rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.partner-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid rgba(26, 58, 92, 0.08);
}

.partner-card h3 {
  margin: 0 0 1rem;
  font-size: 1.0625rem;
}

.plan-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.plan-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.plan-tier {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(26, 58, 92, 0.1);
  text-align: center;
}

.plan-tier--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.15);
  transform: scale(1.02);
}

.plan-tier h4 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.plan-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--maroon);
  margin: 0 0 1rem;
}

.plan-price span {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
}

.plan-tier ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.plan-tier li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(26, 58, 92, 0.06);
}

.plan-tier li:last-child {
  border-bottom: 0;
}

.partner-cta {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(20, 90, 66, 0.08), rgba(201, 162, 39, 0.08));
  border: 1px solid rgba(20, 90, 66, 0.15);
  text-align: center;
}

.partner-cta p {
  margin: 0 0 1rem;
  max-width: 52ch;
  margin-inline: auto;
  line-height: 1.55;
}

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.roadmap-phase {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(26, 58, 92, 0.08);
  border-top: 3px solid var(--saffron);
}

.roadmap-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--saffron);
  margin-bottom: 0.5rem;
}

.roadmap-phase h3 {
  margin: 0 0 0.65rem;
  font-size: 1.0625rem;
}

.roadmap-phase ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.55;
}

.compliance-note {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: rgba(20, 90, 66, 0.08);
  border-left: 3px solid var(--green);
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--text-muted);
}

.compliance-note span {
  display: block;
}

.compliance-note span + span {
  margin-top: 0.35rem;
  font-family: var(--font-hi);
  color: var(--maroon);
}

.committee-panel-intro {
  font-size: var(--text-sm);
  opacity: 0.85;
  margin: -0.25rem 0 0.75rem;
}

.steps--detailed .step {
  padding-bottom: 1.25rem;
}

@media (max-width: 960px) {
  .platform-grid,
  .value-props,
  .model-cards,
  .partner-grid,
  .plan-tiers,
  .roadmap {
    grid-template-columns: 1fr;
  }

  .platform-block--wide {
    grid-column: auto;
  }

  .platform-cols {
    columns: 1;
  }

  .plan-tier--featured {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }

  .community-app--hero,
  .phone-glow,
  .mock-dot,
  .app-banner-slide,
  .app-enter {
    animation: none;
  }

  .app-enter,
  .app-banner-slide {
    opacity: 1;
    transform: none;
  }

  .community-app--hero .app-banner-slide:not(:first-child) {
    display: none;
  }
}

/* Language: one locale at a time */
html[data-lang="en"] [lang="hi"] {
  display: none !important;
}

html[data-lang="hi"] [lang="en"],
html[data-lang="hi"] .heading-en,
html[data-lang="en"] .heading-hi {
  display: none !important;
}

html[data-lang="hi"] .heading-bilingual {
  gap: 0;
}

html[data-lang="hi"] .heading-hi {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--maroon);
}

html[data-lang="hi"] .heading-bilingual--hero .heading-hi {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  font-weight: 800;
}

html[data-lang="en"] .site-nav a,
html[data-lang="hi"] .site-nav a {
  flex-direction: row;
  min-width: auto;
  gap: 0;
}

html[data-lang="hi"] .card-hi {
  margin-top: 0;
  color: var(--text-muted) !important;
}

html[data-lang="hi"] .card h3 span[lang="hi"],
html[data-lang="hi"] .feature h3 span[lang="hi"],
html[data-lang="hi"] .platform-block h3 span[lang="hi"],
html[data-lang="hi"] .step h3 span[lang="hi"],
html[data-lang="hi"] .subsection-title span[lang="hi"] {
  display: inline !important;
  margin-top: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

html[data-lang="en"] .btn span[lang="hi"],
html[data-lang="hi"] .btn [lang="en"] {
  display: none !important;
}

html:not([data-lang]) {
  overflow: hidden;
}

html:not([data-lang]) .site-header,
html:not([data-lang]) main,
html:not([data-lang]) .site-footer {
  visibility: hidden;
}

.lang-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  place-items: center;
  padding: 1.25rem;
  background: rgba(15, 15, 26, 0.55);
  backdrop-filter: blur(8px);
}

html:not([data-lang]) .lang-modal {
  display: grid;
}

.lang-modal[hidden] {
  display: none !important;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

@media (min-width: 1101px) {
  .site-nav {
    margin-left: auto;
  }
}

@media (max-width: 1100px) {
  .header-tools {
    margin-left: auto;
  }
}

.lang-switch select {
  appearance: none;
  -webkit-appearance: none;
  padding: 0.45rem 2rem 0.45rem 0.75rem;
  border: 1.5px solid rgba(26, 58, 92, 0.18);
  border-radius: 999px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231A3A5C' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 0.7rem center;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  min-height: 40px;
}

.lang-switch select:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.lang-modal-card {
  width: min(440px, 100%);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 20px;
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-top: 4px solid var(--saffron);
}

.lang-modal-card h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.lang-modal-card .lang-modal-sub {
  font-family: var(--font-hi);
  font-size: 1.15rem;
  color: var(--maroon);
  margin-bottom: 1.5rem;
}

.lang-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.lang-choice {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0.75rem;
  border: 1.5px solid rgba(26, 58, 92, 0.16);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  color: var(--navy);
}

.lang-choice:hover,
.lang-choice:focus-visible {
  border-color: var(--gold);
  background: #fffdf6;
  outline: none;
}

.lang-choice strong {
  font-size: 1.05rem;
}

.lang-choice span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
