/* =========================================================
   STATIC PAGES + WELCOME MODAL + DONATE COMPONENTS
   (About, Contact, Donate, Privacy, Terms, Welcome banner popup,
    Donate dock, Donate QR card, Mini donate banner)
   ========================================================= */

/* --- Reusable variables (mirrors style.css root) --- */
.container {
  max-width: var(--max, 1200px);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.gradient-word {
  background: linear-gradient(135deg, var(--primary, #2563eb) 0%, var(--accent, #7c3aed) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

/* =========================================================
   PAGE HERO (shared by About, Contact, Donate, Legal)
   ========================================================= */
.page-hero {
  padding: 56px 0 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto auto -50% -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero-inner-center { margin: 0 auto; text-align: center; max-width: 860px; }
.page-hero-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--primary-50);
  color: var(--primary-700);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero-h1 {
  font-size: clamp(1.9rem, 4.2vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
  letter-spacing: -0.03em;
}
.page-hero-p {
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 70ch;
}
.donate-p { max-width: 64ch; margin: 0 auto; }

.donate-heart {
  display: inline-block;
  font-size: 2.6rem;
  margin-bottom: 12px;
  animation: heartBeat 1.5s ease-in-out infinite;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  30% { transform: scale(1.12); }
  60% { transform: scale(0.97); }
}

.donate-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.hero-pill {
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   STATIC TWO-COL (About / Contact pages)
   ========================================================= */
.static-two-col {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.static-col { width: 100%; }

@media (max-width: 900px) {
  .static-two-col { grid-template-columns: 1fr; }
}

/* --- Founder card (About) --- */
.founder-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.founder-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 18px;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(124,58,237,0.12);
}
.founder-meta { margin-bottom: 16px; }
.founder-name {
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
}
.founder-role {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}
.founder-bio {
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 0.97rem;
}
.founder-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bullet-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: var(--radius);
}
.bullet-icon { font-size: 1.1rem; line-height: 1.4; }
.bullet-row span:last-child { color: var(--text-soft); font-size: 0.93rem; }
.bullet-row strong { color: var(--text); }

/* --- Generic static card (used on Contact side, Donate side, etc.) --- */
.static-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.static-card-highlight {
  background: linear-gradient(180deg, var(--primary-50), #fff);
  border-color: var(--primary-200);
}
.static-card-h {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.static-card-p {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 0;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* --- Promise cards (About) --- */
.three-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.promise-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.promise-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.promise-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-100), var(--accent-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.promise-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.promise-card p {
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}
@media (max-width: 820px) {
  .three-col-grid { grid-template-columns: 1fr; }
}

/* --- CTA banner (About, bottom) --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}
.cta-h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
  letter-spacing: -0.02em;
}
.cta-p {
  color: rgba(255,255,255,0.9);
  font-size: 0.96rem;
  max-width: 58ch;
  margin: 0;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cta-banner .btn-primary,
.cta-banner .btn-ghost {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.cta-banner .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.12); }

@media (max-width: 700px) {
  .cta-banner { padding: 26px 22px; }
}

/* =========================================================
   DONATE QR CARD (reusable include — _donate_qr.html)
   ========================================================= */
.donate-qr-card {
  background: linear-gradient(180deg, #fff 0%, #FFFBF5 100%);
  border: 1px solid #FDE68A;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.08);
}
.donate-qr-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.donate-qr-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}
.donate-qr-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}
.donate-qr-sub {
  font-size: 0.87rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.55;
}

.donate-qr-body {
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: grid;
  grid-template-columns: 140px 22px 1fr;
  gap: 14px;
  align-items: center;
}
@media (max-width: 460px) {
  .donate-qr-body {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* QR placeholder (until user drops the real image) */
.qr-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 140px;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, #f8fafc, #f8fafc 4px, #f1f5f9 4px, #f1f5f9 8px);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.qr-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  padding: 6px;
}
.qr-big { font-size: 1.8rem; line-height: 1; }
.qr-hint {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-soft);
  margin: 0;
}
.qr-sub-hint {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin: 0;
}
.qr-upload-note {
  font-size: 0.62rem;
  color: var(--text-faint);
  line-height: 1.4;
  margin: 2px 0 0;
  max-width: 110px;
}
.qr-upload-note code {
  background: var(--bg);
  padding: 0 4px;
  border-radius: 4px;
  font-size: 0.6rem;
}

/* Real QR image (when user drops real PNG) */
.qr-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
}
.qr-placeholder-small { max-width: 110px; }
.qr-placeholder-small .qr-big { font-size: 1.4rem; }
.qr-placeholder-small .qr-hint { font-size: 0.68rem; }
.qr-placeholder-tiny { max-width: 80px; }
.qr-big-tiny { font-size: 1.1rem; }

.qr-or {
  position: relative;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
}
.qr-or::before, .qr-or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 50px;
  background: var(--border);
  left: 50%;
}
.qr-or::before { transform: translate(-50%, calc(-50% - 28px)); }
.qr-or::after  { transform: translate(-50%, calc(50% - 22px)); }
.qr-or span {
  background: #fff;
  padding: 4px 7px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  display: inline-block;
}

.upi-id-row { display: flex; flex-direction: column; gap: 6px; }
.upi-id-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--text-muted);
}
.upi-id-copy-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.upi-id {
  flex: 1;
  display: inline-block;
  background: var(--bg);
  padding: 9px 12px;
  border-radius: var(--radius);
  font-family: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.93rem;
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 600;
}
.upi-id-small { font-size: 0.83rem; padding: 7px 10px; }

.btn-copy {
  padding: 9px 14px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.83rem;
  border-radius: var(--radius);
  transition: background 0.15s ease;
  white-space: nowrap;
}
.btn-copy:hover { background: var(--primary-600); }
.upi-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin: 4px 0 0;
  line-height: 1.5;
}

/* =========================================================
   DONATE PAGE (grid layout)
   ========================================================= */
.donate-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) {
  .donate-grid { grid-template-columns: 1fr; }
}

.alt-donate-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.alt-donate-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.alt-donate-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.alt-donate-list li a { color: var(--primary); font-weight: 600; }

/* FAQ (donate page) */
.faq-item {
  margin-bottom: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  font-size: 0.92rem;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  margin-top: 8px;
  padding-top: 8px;
  color: var(--text-soft);
  font-size: 0.89rem;
  line-height: 1.6;
}
.faq-item a { color: var(--primary); font-weight: 600; }

/* =========================================================
   CONTACT FORM
   ========================================================= */
.contact-card { padding: 28px; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =========================================================
   LEGAL PAGES (Privacy / Terms)
   ========================================================= */
.static-page-narrow { max-width: 880px; }
.legal-nav {
  background: var(--bg-alt);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  margin-bottom: 32px;
  border: 1px solid var(--primary-100);
}
.legal-nav a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--primary-700);
}
.legal-nav a:hover { color: var(--primary); }

.legal-doc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 640px) {
  .legal-doc { padding: 24px 20px; }
}
.legal-doc h2 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 36px 0 14px;
  scroll-margin-top: 100px;
  letter-spacing: -0.01em;
}
.legal-doc h2:first-child { margin-top: 0; }
.legal-doc p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-doc ul {
  margin: 0 0 14px 20px;
  padding: 0;
  list-style: disc;
}
.legal-doc ul li {
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 6px;
}
.legal-doc a { color: var(--primary); font-weight: 600; }
.legal-signoff {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-style: italic;
  color: var(--text-muted) !important;
  font-size: 0.92rem;
}

/* =========================================================
   WELCOME MODAL (popup banner on page load)
   ========================================================= */
.welcome-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: wmFadeIn 0.24s ease-out;
}
@keyframes wmFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes wmFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}
.wm-fade-out { animation: wmFadeOut 0.22s ease-in forwards; }

.welcome-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  animation: wmSlideUp 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes wmSlideUp {
  from { transform: translateY(24px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.welcome-alert-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 20px;
  background: #F7A600;
}
.wah-label {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
}
.welcome-close {
  width: 32px; height: 32px;
  border-radius: 4px;
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.15s ease;
}
.welcome-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.welcome-alert-body {
  padding: 22px 24px 26px;
  background: #fff;
}
.welcome-alert-msg {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.85;
  color: #4b5563;
}

/* =========================================================
   STICKY DONATE DOCK (bottom-right, tiny footprint)
   ========================================================= */
.donate-dock {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media (max-width: 640px) {
  .donate-dock { right: 12px; bottom: 12px; }
}

.donate-dock-toggle {
  background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
  color: #fff;
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.donate-dock-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(234, 88, 12, 0.45);
}
.donate-dock-toggle[aria-expanded="true"] {
  background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.35);
}
@media (max-width: 420px) {
  .dd-text { display: none; }
  .donate-dock-toggle { padding: 11px 13px; }
}
.dd-icon { font-size: 1.05rem; line-height: 1; }

.donate-dock-panel {
  width: 250px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: ddSlideUp 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes ddSlideUp {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.dd-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.87rem;
}
.dd-panel-close {
  width: 26px; height: 26px;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--text-muted);
  transition: all 0.15s ease;
}
.dd-panel-close:hover { background: rgba(0,0,0,0.05); color: var(--text); }
.dd-panel-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.dd-id-row { width: 100%; }
.dd-foot {
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 8px 14px 12px;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

/* =========================================================
   MINI DONATE BANNER (inline on home page)
   ========================================================= */
.mini-donate-banner {
  background: linear-gradient(135deg, #FFFBF5 0%, #FFF 100%);
  border: 1px solid #FDE68A;
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}
.mdb-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 320px;
  min-width: 0;
}
.mdb-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: #FEF3C7;
  color: #92400E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.mdb-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
}
.mdb-sub {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.mdb-right { flex-shrink: 0; }

/* =========================================================
   HOME PAGE: Featured-notes-coming + navbar additions
   ========================================================= */
.featured-notes-coming {
  background: linear-gradient(180deg, var(--primary-50), #fff);
  border: 1px solid var(--primary-200);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fn-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}
.featured-notes-coming h4 {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 4px 0 2px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.featured-notes-coming p {
  color: var(--text-soft);
  font-size: 0.89rem;
  line-height: 1.65;
  margin: 0 0 8px;
}
.featured-notes-coming p strong { color: var(--text); }
.fn-actions {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* --- Navbar More dropdown & donate heart --- */
.nav-more { position: relative; }
.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 210px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.18s ease;
  z-index: 100;
}
.nav-more.open .nav-submenu,
.nav-more:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-submenu li { width: 100%; }
.nav-submenu li a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--text-soft);
  transition: background 0.1s ease, color 0.1s ease;
  white-space: nowrap;
}
.nav-submenu li a:hover {
  background: var(--primary-50);
  color: var(--primary-700);
}
.nav-sub-donate {
  background: linear-gradient(135deg, #FFFBF5, #fff);
  color: #9A3412 !important;
  font-weight: 600;
}
.nav-sub-donate:hover { background: #FEF3C7 !important; color: #92400E !important; }

.nav-btn-donate {
  background: linear-gradient(135deg, #FEF3C7, #FDE68A) !important;
  color: #92400E !important;
  padding: 8px 10px !important;
  min-width: 38px;
  justify-content: center;
  font-size: 1rem !important;
}

.footer-donate-btn {
  background: linear-gradient(135deg, #FEF3C7, #fff) !important;
  color: #92400E !important;
  border-color: #FDE68A !important;
}

.btn-block { display: block; width: 100%; text-align: center; }
.btn-sm { padding: 7px 14px !important; font-size: 0.85rem !important; }

/* Small helper link style for announce bar */
.btn-link-soft {
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}

/* =========================================================
   ABOUT PAGE V2 — Founder story, milestones, hall tickets,
   philosophy. Uses --hanuman / --shiva palette from style.css
   ========================================================= */

/* ── Story two-col grid ─────────────────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr;
  gap: 28px;
  align-items: start;
}
.about-story-left,
.about-story-right { width: 100%; }
@media (max-width: 960px) {
  .about-story-grid { grid-template-columns: 1fr; }
}

/* ── Founder card v2 ────────────────────────────────────── */
.founder-card-v2 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--hanuman, #e85d04);
}
.fcv2-top {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.fcv2-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hanuman-light, #fff3e8), var(--primary-100, #dbeafe));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(232, 93, 4, 0.15);
}
.fcv2-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.fcv2-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}
.fcv2-role-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 600;
  background: var(--shiva-light, #eef1f4);
  color: var(--shiva, #7b8fa1);
  border: 1px solid var(--shiva-mid, #a8b9c8);
}
.fcv2-role-orange {
  background: var(--hanuman-light, #fff3e8);
  color: var(--hanuman, #e85d04);
  border-color: rgba(232, 93, 4, 0.25);
}
.fcv2-role-ash {
  background: var(--primary-50, #eff6ff);
  color: var(--primary-700, #1e40af);
  border-color: var(--primary-200, #bfdbfe);
}
.fcv2-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--hanuman, #e85d04), transparent);
  margin: 18px 0;
  opacity: 0.25;
}
.fcv2-para {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.75;
  margin: 0 0 12px;
}
.fcv2-para:last-of-type { margin-bottom: 0; }
.fcv2-para strong { color: var(--text); }

/* ── Journey timeline ───────────────────────────────────── */
.fcv2-journey {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 22px;
}
.fcv2-journey::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--hanuman, #e85d04), var(--shiva-mid, #a8b9c8));
  opacity: 0.3;
  border-radius: 2px;
}
.fj-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
}
.fj-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: -22px;
  margin-top: 3px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px currentColor;
}
.fj-dot-blue    { background: var(--primary, #2563eb);  color: var(--primary, #2563eb); }
.fj-dot-orange  { background: var(--hanuman, #e85d04);  color: var(--hanuman, #e85d04); }
.fj-dot-green   { background: #10b981;                  color: #10b981; }
.fj-dot-saffron { background: var(--hanuman-mid, #ff8c38); color: var(--hanuman-mid, #ff8c38); }
.fj-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2px;
}
.fj-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.45;
}

/* ── Why Swayambhu card ─────────────────────────────────── */
.about-why-card {
  display: flex;
  gap: 14px;
  background: linear-gradient(135deg, var(--hanuman-light, #fff3e8), #fff);
  border: 1px solid rgba(232, 93, 4, 0.2);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.awc-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.awc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}
.awc-body {
  font-size: 0.91rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0;
}
.awc-body strong { color: var(--hanuman, #e85d04); }

/* ── Milestone cards ────────────────────────────────────── */
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .milestone-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .milestone-grid { grid-template-columns: 1fr; }
}

.milestone-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 18px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.milestone-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.milestone-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.mc-ibps::before    { background: linear-gradient(90deg, #1d4ed8, #7c3aed); }
.mc-union::before   { background: linear-gradient(90deg, var(--hanuman, #e85d04), #f59e0b); }
.mc-idbi::before    { background: linear-gradient(90deg, #10b981, #0891b2); }
.mc-central::before { background: linear-gradient(90deg, var(--shiva, #7b8fa1), #475569); }

.mc-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  background: var(--bg);
  color: var(--text-muted);
  border: 1px solid var(--border);
  width: fit-content;
}
.mc-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin: 4px 0 0;
  line-height: 1.4;
}
.mc-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}
.mc-result { margin-top: 8px; }
.mc-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.mc-chip-gold  { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.mc-chip-green { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }

/* ── Hall tickets ───────────────────────────────────────── */
.halltickets-section { margin-top: 8px; }
.ht-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  text-align: center;
}
.halltickets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .halltickets-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .halltickets-grid { grid-template-columns: repeat(2, 1fr); }
}

.ht-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ht-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.ht-img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg);
}
.ht-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ht-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--shiva-light, #eef1f4), #f8fafc);
  padding: 12px;
  text-align: center;
}
.ht-ph-icon  { font-size: 1.8rem; line-height: 1; }
.ht-ph-text  { font-size: 0.78rem; font-weight: 700; color: var(--text-soft); line-height: 1.35; }
.ht-ph-note  { font-size: 0.68rem; color: var(--text-faint); line-height: 1.35; }
.ht-footer {
  padding: 8px 10px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-soft);
  text-align: center;
  border-top: 1px solid var(--border-soft);
  background: #fafafa;
  line-height: 1.35;
}
.ht-privacy-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--shiva-light, #eef1f4);
  border-radius: var(--radius);
  padding: 8px 14px;
  border: 1px solid var(--shiva-mid, #a8b9c8);
}

/* ── Philosophy section ─────────────────────────────────── */
.philosophy-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}
@media (max-width: 900px) {
  .philosophy-wrap { grid-template-columns: 1fr; }
}
.philosophy-left { display: flex; flex-direction: column; }
.philosophy-body {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin: 0;
}
.philosophy-body strong { color: var(--text); }

.philosophy-quote {
  margin-top: 28px;
  padding: 22px 24px;
  background: linear-gradient(135deg, var(--hanuman-light, #fff3e8), #fff);
  border-left: 4px solid var(--hanuman, #e85d04);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-sm);
}
.pq-text {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0 0 14px;
}
.pq-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}
.pq-role {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.philosophy-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.promise-card-saffron {
  border-top: 3px solid var(--hanuman, #e85d04);
}
.promise-card-ash {
  border-top: 3px solid var(--shiva, #7b8fa1);
}
.promise-icon-saffron {
  background: linear-gradient(135deg, var(--hanuman-light, #fff3e8), #fff7ed);
}
.promise-icon-ash {
  background: linear-gradient(135deg, var(--shiva-light, #eef1f4), #f1f5f9);
}

/* =========================================================
   ASPIRANT QUOTE BANNER (About page — replaces hall tickets)
   ========================================================= */
.aspirant-quote-banner {
  margin-top: 36px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #1e3a5f 100%);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.4);
  position: relative;
  overflow: hidden;
}
.aspirant-quote-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.18), transparent 70%);
  pointer-events: none;
}
.aspirant-quote-banner::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%);
  pointer-events: none;
}
.aqb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  flex-wrap: wrap;
}
.aqb-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.9;
}
.aqb-icon-right { opacity: 0.7; }
.aqb-text { flex: 1 1 300px; }
.aqb-main {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.aqb-main span { color: var(--hanuman-mid, #ff8c38); }
.aqb-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  font-style: italic;
}

/* =========================================================
   FOOTER V2 REDESIGN
   ========================================================= */

/* Override the old footer-bottom with new split bar */
.footer-bottom { display: none !important; }

.footer-bottom-v2 {
  max-width: var(--max, 1200px);
  margin: 2.5rem auto 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(232, 93, 4, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin: 0;
}
.footer-built {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}
.footer-heart-icon { font-size: 0.9rem; }
.footer-author-link {
  color: var(--hanuman, #e85d04);
  font-weight: 600;
  text-decoration: none;
}
.footer-author-link:hover { text-decoration: underline; }

.footer-bottom-right {
  flex-shrink: 0;
}
.footer-aspirant-quote {
  font-size: 0.84rem;
  color: var(--text-soft);
  margin: 0;
  font-style: italic;
}
.faq-orange {
  color: var(--hanuman, #e85d04);
  font-weight: 700;
  font-style: normal;
}

@media (max-width: 640px) {
  .footer-bottom-v2 { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-aspirant-quote { font-size: 0.8rem; }
}

/* Footer brand badges */
.footer-brand-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.fbadge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
}
.fbadge-orange {
  background: var(--hanuman-light, #fff3e8);
  color: var(--hanuman, #e85d04);
  border: 1px solid rgba(232, 93, 4, 0.2);
}
.fbadge-ash {
  background: var(--shiva-light, #eef1f4);
  color: var(--shiva, #7b8fa1);
  border: 1px solid var(--shiva-mid, #a8b9c8);
}
.fbadge-green {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

/* Make footer brand col logo a link */
.footer-logo { display: inline-flex; }

/* =========================================================
   HALL TICKETS — 2×2 GRID (About page milestones section)
   ========================================================= */
.halltickets-section {
  margin-top: 40px;
}
.ht-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
  text-align: center;
}

/* 2×2 grid */
.halltickets-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .halltickets-grid-2x2 { grid-template-columns: 1fr; gap: 14px; }
}

.ht-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.ht-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Image area — landscape-ish ratio suits A4 call letters */
.ht-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg);
  position: relative;
}
.ht-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.3s ease;
}
.ht-card:hover .ht-img-wrap img {
  transform: scale(1.03);
}

/* Placeholder shown when image missing */
.ht-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--shiva-light, #eef1f4), #f8fafc);
  padding: 16px;
  text-align: center;
  position: absolute;
  inset: 0;
}
.ht-ph-icon { font-size: 2.2rem; line-height: 1; }
.ht-ph-text {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-soft);
  line-height: 1.4;
}

/* Footer bar inside each card */
.ht-footer {
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--border-soft);
  background: #fafafa;
  flex-wrap: wrap;
}
.ht-bank {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}
.ht-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.ht-chip-gold  { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.ht-chip-green { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }

.ht-privacy-note {
  margin-top: 16px;
  text-align: center;
  font-size: 0.79rem;
  color: var(--text-muted);
  background: var(--shiva-light, #eef1f4);
  border-radius: var(--radius);
  padding: 8px 16px;
  border: 1px solid var(--shiva-mid, #a8b9c8);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
