/* ─── Veda Guru Shared Shell ─── */
/* Nav, mobile bar, trust pills, landing hero CTAs. Load after design-tokens.css */

/* ─── Top shell nav ─── */
.vg-shell-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 153, 51, 0.1);
}

.vg-shell-nav .vg-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}

.vg-shell-nav .vg-brand-mark {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dim, #6B4630);
  letter-spacing: 0.02em;
}

.vg-shell-nav .vg-brand-mark span {
  color: var(--accent, #FF9933);
}

.vg-shell-nav .vg-brand-logo {
  height: 28px;
  width: auto;
  display: block;
}

.vg-shell-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.vg-shell-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4em 0.75em;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dim, #6B4630);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.vg-shell-link:hover {
  color: var(--text, #2C2C2C);
  background: rgba(255, 153, 51, 0.07);
}

.vg-shell-link.active {
  color: var(--accent-dark, #E08500);
  background: rgba(255, 153, 51, 0.1);
  font-weight: 600;
}

.vg-shell-link.primary-link {
  color: #fff;
  background: linear-gradient(135deg, #FF9933, #E08500);
  font-weight: 600;
}

.vg-shell-link.primary-link:hover {
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 153, 51, 0.28);
  background: linear-gradient(135deg, #FF9933, #E08500);
}

.vg-shell-link.secondary-link {
  border: 1px solid rgba(255, 153, 51, 0.28);
  color: var(--accent-dark, #E08500);
  background: rgba(255, 153, 51, 0.06);
}

.vg-shell-link.secondary-link:hover {
  border-color: rgba(255, 153, 51, 0.45);
  background: rgba(255, 153, 51, 0.12);
  color: var(--accent-dark, #E08500);
}

/* Explore dropdown */
.vg-explore {
  position: relative;
}

.vg-explore-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(255, 153, 51, 0.14);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(44, 44, 44, 0.12);
  padding: 0.4rem;
  z-index: 220;
}

.vg-explore.open .vg-explore-menu {
  display: block;
}

.vg-explore-menu a {
  display: block;
  padding: 0.55em 0.75em;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dim, #6B4630);
  font-size: 0.82rem;
  transition: background 0.15s;
}

.vg-explore-menu a:hover {
  background: rgba(255, 153, 51, 0.08);
  color: var(--text, #2C2C2C);
}

.vg-explore-menu a strong {
  display: block;
  font-weight: 600;
  color: var(--text, #2C2C2C);
  font-size: 0.84rem;
}

.vg-explore-menu a span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted, #7A6848);
  margin-top: 0.1rem;
}

.vg-shell-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.35rem;
}

.vg-shell-auth {
  padding: 0.35em 0.95em;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(255, 153, 51, 0.08);
  border: 1px solid rgba(255, 153, 51, 0.18);
  color: var(--text-dim, #6B4630);
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  white-space: nowrap;
}

.vg-shell-auth:hover {
  background: rgba(255, 153, 51, 0.14);
  border-color: rgba(255, 153, 51, 0.3);
}

/* User chip (shared) */
.vg-shell-nav .user-chip,
.vg-shell-nav [data-vg-role="user-badge"] {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25em 0.75em;
  border-radius: 50px;
  font-size: 0.75rem;
  background: rgba(255, 153, 51, 0.06);
  border: 1px solid rgba(255, 153, 51, 0.15);
  color: var(--accent, #FF9933);
  white-space: nowrap;
}

.vg-shell-nav .user-chip.visible,
.vg-shell-nav [data-vg-role="user-badge"].visible {
  display: inline-flex;
}

/* Landing: floating top bar variant */
.vg-shell-nav.vg-shell-float {
  position: fixed;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(248, 245, 239, 0.96) 0%, rgba(248, 245, 239, 0.75) 70%, transparent 100%);
  border-bottom: none;
  backdrop-filter: blur(10px);
}

/* Fixed top nav for content pages (Learn, Wisdom, Tools, …) */
.vg-shell-nav.vg-shell-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 153, 51, 0.12);
}

body.has-vg-top-nav {
  /* content pages use padding on main; keep a safe default */
}

body.has-vg-top-nav > main {
  padding-top: 64px;
}

.vg-shell-nav .user-chip .logout-link,
.vg-shell-nav .user-chip .chip-link {
  color: #7A6848;
  cursor: pointer;
  display: inline-flex;
  line-height: 1;
}

.vg-shell-nav .user-chip .logout-link:hover {
  color: #E74C3C;
}

.vg-shell-nav .user-chip .chip-link:hover {
  color: #3498db;
}

/* ─── Language control (header button + shared modal) ─── */
.vg-lang-control {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.lang-wrap {
  display: inline-flex;
  align-items: center;
}
.vg-lang-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  min-height: 32px;
  min-width: 44px;
  padding: 0.28em 0.55em;
  border-radius: 999px;
  border: 1px solid rgba(255, 153, 51, 0.28);
  background: rgba(255, 153, 51, 0.08);
  color: #6B4630;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  line-height: 1.1;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.vg-lang-btn:hover,
.vg-lang-btn:focus-visible {
  border-color: rgba(255, 153, 51, 0.55);
  background: rgba(255, 153, 51, 0.14);
  outline: none;
}
.vg-lang-btn.active {
  background: linear-gradient(135deg, #FF9933, #E08500);
  border-color: transparent;
  color: #fff;
}
.vg-lang-btn-code {
  font-size: 0.72rem;
}
.vg-lang-btn-label {
  font-size: 0.58rem;
  font-weight: 600;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vg-lang-btn.active .vg-lang-btn-label {
  opacity: 0.9;
}

/* Shared language modal — light pages */
.vg-lang-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right))
    max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: rgba(20, 14, 8, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: vgLangFade 0.22s ease;
}
.vg-lang-overlay[hidden] {
  display: none !important;
}
@keyframes vgLangFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.vg-lang-modal {
  width: 100%;
  max-width: 380px;
  max-height: min(88dvh, 640px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 1.35rem 1.15rem 1.15rem;
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 153, 51, 0.12) 0%, transparent 55%),
    #FFFEFA;
  border: 1px solid rgba(255, 153, 51, 0.22);
  box-shadow: 0 20px 50px rgba(60, 40, 10, 0.22);
  text-align: center;
  animation: vgLangPop 0.28s cubic-bezier(0.2, 0.9, 0.3, 1);
}
@keyframes vgLangPop {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
.vg-lang-om {
  font-size: 1.45rem;
  color: #E08500;
  margin: 0 0 0.3rem;
  line-height: 1;
}
.vg-lang-title {
  margin: 0 0 0.4rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #2C2C2C;
  line-height: 1.25;
}
.vg-lang-sub {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #6B4630;
}
.vg-lang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-bottom: 0.7rem;
}
.vg-lang-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  min-height: 52px;
  padding: 0.55rem 0.35rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 153, 51, 0.18);
  background: #F8F5EF;
  color: #2C2C2C;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.12s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.vg-lang-chip:hover,
.vg-lang-chip:focus-visible {
  border-color: rgba(255, 153, 51, 0.55);
  background: rgba(255, 153, 51, 0.1);
  outline: none;
}
.vg-lang-chip.selected {
  border-color: #FF9933;
  background: rgba(255, 153, 51, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 153, 51, 0.25);
}
.vg-lang-chip:active {
  transform: scale(0.98);
}
.vg-lang-chip .native {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}
.vg-lang-chip .latin {
  font-size: 0.62rem;
  color: #8A7350;
  letter-spacing: 0.02em;
}
.vg-lang-english {
  width: 100%;
  min-height: 48px;
  margin-top: 0.1rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 153, 51, 0.4);
  background: linear-gradient(135deg, #FF9933, #E08500);
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: filter 0.15s, transform 0.12s;
}
.vg-lang-english:hover,
.vg-lang-english:focus-visible {
  filter: brightness(1.05);
  outline: none;
}
.vg-lang-english.selected {
  box-shadow: 0 0 0 2px rgba(255, 153, 51, 0.35);
}
.vg-lang-english:active {
  transform: scale(0.99);
}
.vg-lang-foot {
  margin: 0.8rem 0 0;
  font-size: 0.68rem;
  line-height: 1.4;
  color: #A89070;
}

/* Dark pages (Maharshi / bottom-dark) */
body.mh-live .vg-lang-btn,
body[data-vg-bottom-dark] .vg-shell-nav .vg-lang-btn {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}
body.mh-live .vg-lang-btn.active,
body[data-vg-bottom-dark] .vg-shell-nav .vg-lang-btn.active {
  background: linear-gradient(135deg, #FF9933, #E08500);
  border-color: transparent;
  color: #fff;
}
body.mh-live .vg-lang-overlay {
  background: rgba(6, 4, 12, 0.72);
}
body.mh-live .vg-lang-modal {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 153, 51, 0.12) 0%, transparent 55%),
    rgba(18, 14, 24, 0.96);
  border-color: rgba(255, 153, 51, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
body.mh-live .vg-lang-om { color: rgba(255, 204, 128, 0.9); }
body.mh-live .vg-lang-title { color: rgba(255, 255, 255, 0.95); }
body.mh-live .vg-lang-sub { color: rgba(255, 255, 255, 0.55); }
body.mh-live .vg-lang-chip {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.88);
}
body.mh-live .vg-lang-chip:hover,
body.mh-live .vg-lang-chip:focus-visible {
  border-color: rgba(255, 153, 51, 0.55);
  background: rgba(255, 153, 51, 0.1);
}
body.mh-live .vg-lang-chip.selected {
  border-color: rgba(255, 153, 51, 0.75);
  background: rgba(255, 153, 51, 0.16);
}
body.mh-live .vg-lang-chip .latin { color: rgba(255, 255, 255, 0.42); }
body.mh-live .vg-lang-foot { color: rgba(255, 255, 255, 0.32); }

/* Maharshi header (not shell) */
.mh-header .vg-lang-btn {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
}
.mh-header .vg-lang-btn.active {
  background: linear-gradient(135deg, #FF9933, #E08500);
  border-color: transparent;
  color: #fff;
}

@media (max-width: 420px) {
  .vg-lang-btn-label { display: none; }
  .vg-lang-modal {
    max-width: 100%;
    padding: 1.2rem 0.95rem 1rem;
    border-radius: 18px;
  }
  .vg-lang-title { font-size: 1.25rem; }
  .vg-lang-chip { min-height: 48px; }
  .vg-lang-chip .native { font-size: 0.9rem; }
}

/* Dual subtitle under English labels */
.vg-i18n-dual {
  display: inline-flex;
  flex-direction: column;
  align-items: inherit;
  line-height: 1.2;
  gap: 0.1em;
}
.vg-i18n-primary {
  display: block;
}
.vg-i18n-sub {
  display: block;
  font-size: 0.78em;
  font-weight: 500;
  opacity: 0.75;
  color: #E08500;
  font-family: "Noto Sans Devanagari", "Noto Sans", inherit;
}
/* Centered contexts (hero, welcome) keep center align */
.text-center .vg-i18n-dual,
.welcome .vg-i18n-dual,
.hero .vg-i18n-dual {
  align-items: center;
}

/* ─── Mobile bottom bar ─── */
.vg-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 190;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 153, 51, 0.14);
  padding: 0.35rem 0.4rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
  justify-content: space-around;
  align-items: stretch;
  box-shadow: 0 -4px 20px rgba(44, 44, 44, 0.06);
}

.vg-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.35rem 0.2rem;
  text-decoration: none;
  color: var(--text-muted, #7A6848);
  font-size: 0.62rem;
  font-weight: 500;
  border-radius: 10px;
  transition: color 0.15s, background 0.15s;
  min-width: 0;
}

.vg-bottom-nav a svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.vg-bottom-nav a.active {
  color: var(--accent-dark, #E08500);
  background: rgba(255, 153, 51, 0.08);
  font-weight: 600;
}

.vg-bottom-nav a:hover {
  color: var(--text-dim, #6B4630);
}

/* Dark variant for Maharshi */
.vg-bottom-nav.vg-bottom-dark {
  background: rgba(12, 10, 8, 0.88);
  border-top-color: rgba(255, 153, 51, 0.12);
  box-shadow: none;
}

.vg-bottom-nav.vg-bottom-dark a {
  color: rgba(255, 255, 255, 0.45);
}

.vg-bottom-nav.vg-bottom-dark a.active {
  color: var(--accent, #FF9933);
  background: rgba(255, 153, 51, 0.12);
}

.vg-bottom-nav.vg-bottom-dark a:hover {
  color: rgba(255, 255, 255, 0.75);
}

body.has-vg-bottom-nav {
  padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
}

/* Chat app shell: reserve space for bottom nav on mobile */
#app.has-vg-bottom-pad {
  padding-bottom: 0;
}

@media (max-width: 720px) {
  .vg-shell-links {
    display: none;
  }

  .vg-bottom-nav {
    display: flex;
  }

  body.has-vg-bottom-nav .toast {
    bottom: 88px;
  }
}

@media (min-width: 721px) {
  body.has-vg-bottom-nav {
    padding-bottom: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   Landing page (shared) — hero · dual CTAs · paths · explore · quote
   Cream/saffron scholarly; Samvāda primary, Maharshi secondary
   ═══════════════════════════════════════════════════════════ */

/* ─── Hero shell (scoped: do not use bare .hero — Learn and others share that name) ─── */
.vg-landing {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5.75rem 1.35rem 5rem;
  padding-bottom: max(5rem, calc(4rem + env(safe-area-inset-bottom, 0px)));
  overflow: hidden;
  flex: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 8%, rgba(255, 153, 51, 0.09) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 15% 70%, rgba(255, 153, 51, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 55% 40% at 88% 55%, rgba(224, 133, 0, 0.035) 0%, transparent 45%),
    linear-gradient(180deg, #FBF8F2 0%, var(--cream, #F8F5EF) 42%, #F3EDE3 100%);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(107, 70, 48, 0.035) 0.6px, transparent 0.6px);
  background-size: 18px 18px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

.hero-rings {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(88vw, 640px);
  aspect-ratio: 1;
  z-index: 0;
  pointer-events: none;
}

.hero-rings .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 153, 51, 0.07);
}

.hero-rings .ring:nth-child(2) { inset: 14%; border-color: rgba(255, 153, 51, 0.055); }
.hero-rings .ring:nth-child(3) { inset: 28%; border-color: rgba(255, 153, 51, 0.045); }
.hero-rings .ring:nth-child(4) {
  inset: 40%;
  border-style: dashed;
  border-color: rgba(255, 153, 51, 0.05);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
}

/* OM mark */
.om-wrap {
  margin-bottom: 1.25rem;
  animation: vg-landing-float 7s ease-in-out infinite;
}

.om-symbol {
  display: inline-block;
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: clamp(3.4rem, 8vw, 4.35rem);
  line-height: 1;
  background: linear-gradient(180deg, #FFE2BE 0%, #FF9933 55%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 6px 18px rgba(255, 153, 51, 0.18));
}

@keyframes vg-landing-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.hero-title {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-size: clamp(2.05rem, 5.2vw, 3.15rem);
  font-weight: 400;
  color: var(--text, #2C2C2C);
  margin: 0 auto 0.55rem;
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 18ch;
}

.hero-title strong {
  font-weight: 600;
  background: linear-gradient(135deg, #FF9933 0%, #E08500 55%, #C96E00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-style: italic;
  font-size: clamp(1.02rem, 2.5vw, 1.22rem);
  color: var(--text-dim, #6B4630);
  margin: 0 auto 1.15rem;
  line-height: 1.5;
  max-width: 34em;
}

.hero-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted, #7A6848);
  margin: 0 auto 1.35rem;
  max-width: 34em;
}

/* Entrance motion */
.fade-in {
  opacity: 0;
  animation: vg-landing-fade-in 0.75s ease forwards;
}
.fade-in-1 { animation-delay: 0.08s; }
.fade-in-2 { animation-delay: 0.18s; }
.fade-in-3 { animation-delay: 0.3s; }
.fade-in-4 { animation-delay: 0.42s; }
.fade-in-5 { animation-delay: 0.54s; }
.fade-in-6 { animation-delay: 0.68s; }

@keyframes vg-landing-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .om-wrap,
  .fade-in {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─── Trust / proof pills ─── */
.vg-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  margin: 0 auto 1.35rem;
}

.vg-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38em 0.85em;
  border-radius: var(--radius-full, 50px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 153, 51, 0.14);
  color: var(--text-muted, #7A6848);
  font-size: 0.72rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 3px rgba(44, 44, 44, 0.03);
}

.vg-trust-pill svg {
  width: 13px;
  height: 13px;
  opacity: 0.72;
  flex-shrink: 0;
  color: var(--accent, #FF9933);
}

/* ─── Landing dual hero CTAs (Samvāda dominant, Maharshi secondary) ─── */
.vg-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  max-width: 440px;
  margin: 0 auto 1.35rem;
  width: 100%;
}

.vg-cta-hero {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 1.2rem;
  border-radius: var(--radius, 16px);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
  text-align: left;
}

.vg-cta-hero:hover {
  transform: translateY(-2px);
}

.vg-cta-hero:focus-visible {
  outline: 2px solid rgba(255, 153, 51, 0.55);
  outline-offset: 3px;
}

.vg-cta-hero.primary {
  background: linear-gradient(135deg, #FFA94D 0%, #FF9933 40%, #E08500 100%);
  color: #fff;
  box-shadow:
    0 10px 32px rgba(255, 153, 51, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
  border: none;
  padding: 1.15rem 1.25rem;
}

.vg-cta-hero.primary:hover {
  box-shadow:
    0 14px 36px rgba(255, 153, 51, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.16) inset;
}

.vg-cta-hero.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-dim, #6B4630);
  border: 1px solid rgba(255, 153, 51, 0.18);
  box-shadow: var(--shadow-sm, 0 1px 4px rgba(44, 44, 44, 0.06));
  padding: 0.9rem 1.1rem;
}

.vg-cta-hero.secondary:hover {
  border-color: rgba(255, 153, 51, 0.38);
  background: #fff;
  box-shadow: var(--shadow, 0 2px 12px rgba(44, 44, 44, 0.08));
}

.vg-cta-hero .vg-cta-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vg-cta-hero.primary .vg-cta-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

.vg-cta-hero.secondary .vg-cta-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 153, 51, 0.1);
  color: var(--accent, #FF9933);
}

.vg-cta-hero .vg-cta-icon svg {
  width: 22px;
  height: 22px;
}

.vg-cta-hero.secondary .vg-cta-icon svg {
  width: 20px;
  height: 20px;
}

.vg-cta-hero .vg-cta-copy {
  flex: 1;
  min-width: 0;
}

.vg-cta-hero .vg-cta-label {
  display: block;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.25;
  font-family: var(--font-serif, "Cormorant Garamond", serif);
}

.vg-cta-hero.primary .vg-cta-label {
  color: #fff;
  font-size: 1.18rem;
}

.vg-cta-hero.secondary .vg-cta-label {
  font-size: 1.02rem;
}

.vg-cta-hero .vg-cta-sub {
  display: block;
  font-size: 0.78rem;
  margin-top: 0.18rem;
  line-height: 1.35;
  opacity: 0.9;
}

.vg-cta-hero.secondary .vg-cta-sub {
  color: var(--text-muted, #7A6848);
  opacity: 1;
  font-size: 0.74rem;
}

.vg-cta-hero .vg-cta-arrow {
  font-size: 1.15rem;
  opacity: 0.75;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.vg-cta-hero:hover .vg-cta-arrow {
  transform: translateX(3px);
}

/* Secondary conversion panel (starters + corpus) */
.vg-landing-paths {
  margin: 0 auto 1.5rem;
  max-width: 520px;
  width: 100%;
  padding: 1.05rem 1rem 1.15rem;
  border-radius: var(--radius-xl, 20px);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 153, 51, 0.12);
  box-shadow: 0 8px 28px rgba(44, 44, 44, 0.04);
  backdrop-filter: blur(8px);
}

.vg-landing-paths .vg-starter-asks {
  margin: 0 0 1rem;
  max-width: none;
}

.vg-landing-paths .veda-tiles-wrap {
  margin: 0;
  max-width: none;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 153, 51, 0.1);
}

/* Landing starter asks (outcome entry → Samvāda /chat?ask=) */
.vg-starter-asks {
  margin: 0 auto 1.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.vg-starter-label,
.veda-tiles-label,
.vg-explore-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted, #7A6848);
  margin: 0 0 0.7rem;
  text-align: center;
}

.vg-starter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.vg-starter-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.52em 0.98em;
  border-radius: var(--radius-full, 50px);
  background: #fff;
  border: 1px solid rgba(255, 153, 51, 0.16);
  color: var(--text-dim, #6B4630);
  font-size: 0.78rem;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  line-height: 1.3;
  box-shadow: 0 1px 2px rgba(44, 44, 44, 0.04);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.vg-starter-chip:hover {
  background: rgba(255, 153, 51, 0.08);
  border-color: rgba(255, 153, 51, 0.4);
  color: var(--accent-dark, #E08500);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 153, 51, 0.1);
}

.vg-starter-chip:focus-visible {
  outline: 2px solid rgba(255, 153, 51, 0.55);
  outline-offset: 2px;
}

.vg-starter-alt {
  margin: 0.8rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted, #7A6848);
  line-height: 1.45;
}

.vg-starter-alt a {
  color: var(--accent-dark, #E08500);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 133, 0, 0.35);
}

.vg-starter-alt a:hover {
  border-bottom-color: rgba(224, 133, 0, 0.7);
}

/* Corpus tiles */
.veda-tiles-wrap {
  margin: 0 auto 2rem;
  max-width: 520px;
  width: 100%;
}

.veda-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.veda-tile {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42em 0.9em;
  border-radius: var(--radius-full, 50px);
  background: #fff;
  border: 1px solid rgba(255, 153, 51, 0.12);
  color: var(--text-dim, #6B4630);
  font-size: 0.76rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.veda-tile:hover {
  border-color: rgba(255, 153, 51, 0.4);
  color: var(--accent-dark, #E08500);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 153, 51, 0.1);
}

.veda-tile:focus-visible {
  outline: 2px solid rgba(255, 153, 51, 0.55);
  outline-offset: 2px;
}

.veda-tile svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.65;
  color: var(--accent, #FF9933);
}

.veda-tile .tile-label {
  margin-top: 1px;
}

/* Explore section on landing */
.vg-explore-section {
  margin: 0 auto 1.5rem;
  max-width: 520px;
  width: 100%;
  padding-top: 0.35rem;
}

.vg-explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

.vg-explore-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 0.45rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 153, 51, 0.1);
  text-decoration: none;
  color: var(--text-dim, #6B4630);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s, background 0.2s;
  cursor: pointer;
}

.vg-explore-card:hover {
  border-color: rgba(255, 153, 51, 0.28);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 153, 51, 0.1);
  background: #fff;
}

.vg-explore-card:focus-visible {
  outline: 2px solid rgba(255, 153, 51, 0.55);
  outline-offset: 2px;
}

.vg-explore-card .ex-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 153, 51, 0.09);
  color: var(--accent, #FF9933);
}

.vg-explore-card .ex-icon svg {
  width: 16px;
  height: 16px;
}

.vg-explore-card .ex-label {
  font-size: 0.74rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

/* Quote close */
.divider-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 153, 51, 0.45), transparent);
  margin: 0.35rem auto 1.1rem;
}

.vedic-quote {
  font-family: var(--font-serif, "Cormorant Garamond", serif);
  font-style: italic;
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  color: var(--text-muted, #7A6848);
  line-height: 1.55;
  max-width: 26em;
  margin: 0 auto;
  padding: 0 0.5rem 0.25rem;
}

.vedic-quote cite {
  display: block;
  font-size: 0.78rem;
  margin-top: 0.45rem;
  color: var(--text-dim, #6B4630);
  font-style: normal;
  letter-spacing: 0.02em;
  font-family: var(--font-sans, Inter, sans-serif);
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 480px) {
  .vg-landing {
    padding: 5rem 1.1rem 4.5rem;
    justify-content: flex-start;
    padding-top: 5.25rem;
  }

  .vg-landing .hero-content {
    padding-top: 0.5rem;
  }

  .vg-landing .om-symbol {
    font-size: 3.15rem;
  }

  .vg-landing .hero-title {
    max-width: none;
  }

  .vg-landing-paths {
    padding: 0.9rem 0.75rem 1rem;
  }

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

  .vg-shell-nav {
    padding: 0.55rem 0.75rem;
  }

  .vg-cta-hero {
    padding: 0.95rem 1rem;
  }

  .vg-cta-hero.primary {
    padding: 1.05rem 1.05rem;
  }

  .vg-cta-hero .vg-cta-label {
    font-size: 1.02rem;
  }

  .vg-cta-hero.primary .vg-cta-label {
    font-size: 1.08rem;
  }

  .veda-tile {
    font-size: 0.7rem;
    padding: 0.35em 0.75em;
  }
}
