/* ════════════════════════════════════════════════════════════
   PasalPay landing — base, chrome, sections.
   Player + scene keyframes live in demos.css.
   Tokens come from tokens.css (Bazaar Warm).
   ════════════════════════════════════════════════════════════ */

html { scroll-behavior: smooth; }
html, body { background: var(--paper); }
body {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

/* locale-aware text runs */
body[data-locale="np"] .t-en { display: none; }
body[data-locale="en"] .t-np { display: none; }
.t-np { font-family: var(--font-np); }
.t-en { font-family: var(--font-sans); }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }
.crimson { color: var(--crimson); }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 900px) { .container { padding: 0 32px; } }

h1, h2, h3, h4 { margin: 0; font-family: var(--font-sans); }
body[data-locale="np"] h1,
body[data-locale="np"] h2,
body[data-locale="np"] h3,
body[data-locale="np"] h4 { font-family: var(--font-np); font-weight: 700; }
p { margin: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* section heads */
.sec-head { margin: 0 0 36px; max-width: 760px; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-2);
  padding: 6px 12px;
  background: var(--teal-tint);
  border-radius: 999px;
}
body[data-locale="np"] .kicker {
  font-family: var(--font-np);
  letter-spacing: 0.04em;
  text-transform: none;
}
.sec-h {
  margin: 14px 0 0;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.022em;
  color: var(--ink);
  text-wrap: balance;
}
body[data-locale="np"] .sec-h { line-height: 1.28; }
.sec-h-sm { font-size: clamp(22px, 3vw, 30px); }
.sec-sub { margin: 14px 0 0; color: var(--ink-2); font-size: 17px; max-width: 56ch; }

/* buttons — override token-style for landing */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none;
  white-space: nowrap;
  font-family: var(--font-sans);
  cursor: pointer;
  user-select: none;
}
body[data-locale="np"] .btn { font-family: var(--font-np); font-weight: 600; }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 6px 20px -8px rgba(15, 90, 94, 0.55), inset 0 -1px 0 rgba(0,0,0,0.15);
}
.btn-primary:hover { background: var(--teal-2); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  border-color: rgba(14, 31, 39, 0.16);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.9); }
.btn-sm { padding: 9px 14px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 16px 22px; font-size: 17px; border-radius: 16px; }
.btn-arrow { transition: transform .18s ease; display: inline-flex; }
.btn:hover .btn-arrow { transform: translateX(3px); }


/* ════════════════════════════════════════════════════════════
   TOPBAR
   ════════════════════════════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.topbar.is-stuck {
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(14, 31, 39, 0.08);
}
@media (min-width: 900px) { .topbar { padding: 16px 32px; gap: 24px; } }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.brand img { width: 32px; height: 32px; flex: 0 0 auto; }
@media (min-width: 900px) { .brand img { width: 36px; height: 36px; } }
.brand-name {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.012em;
}
.brand-en { font-family: var(--font-sans); }
.brand-np { font-family: var(--font-np); font-weight: 700; }
.brand-sep { color: var(--ink-3); font-weight: 500; }

.nav { display: none; gap: 22px; margin-left: 8px; }
.nav a {
  text-decoration: none;
  color: var(--ink-2);
  font-weight: 600;
  font-size: 14px;
  transition: color .15s ease;
}
.nav a:hover { color: var(--teal); }
@media (min-width: 980px) { .nav { display: inline-flex; } }

.top-right { display: none; align-items: center; gap: 12px; margin-left: auto; }
@media (min-width: 980px) { .top-right { display: inline-flex; } }

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(14, 31, 39, 0.14);
  background: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s ease;
}
.lang-pill:hover { background: rgba(255, 255, 255, 0.95); }
.lang-pill .lp-en { font-family: var(--font-sans); }
.lang-pill .lp-np { font-family: var(--font-np); }
.lang-pill .lp-sep { width: 1px; height: 14px; background: rgba(14, 31, 39, 0.18); }
body[data-locale="en"] .lang-pill .lp-np { opacity: 0.35; }
body[data-locale="np"] .lang-pill .lp-en { opacity: 0.35; }

.login-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  padding: 8px 4px;
}
.login-link:hover { color: var(--teal); }

.menu-btn {
  margin-left: auto;
  width: 40px; height: 40px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(14, 31, 39, 0.1);
  cursor: pointer;
}
.menu-btn span { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }
@media (min-width: 980px) { .menu-btn { display: none; } }

/* mobile sheet menu */
body.menu-open .nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  top: 74px;
  left: 16px; right: 16px;
  padding: 18px;
  background: var(--paper-2);
  border: 1px solid rgba(14, 31, 39, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-2);
  z-index: 99;
  gap: 14px;
  margin: 0;
}
body.menu-open .top-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  top: 290px;
  left: 16px; right: 16px;
  padding: 16px;
  background: var(--paper-2);
  border: 1px solid rgba(14, 31, 39, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-2);
  z-index: 99;
  gap: 12px;
}
@media (min-width: 980px) {
  body.menu-open .nav, body.menu-open .top-right {
    position: static;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
}


/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 110px 0 50px;
  overflow: hidden;
}
@media (min-width: 900px) { .hero { padding: 150px 0 80px; } }
.hero-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 85% 0%, var(--saffron-soft) 0%, transparent 60%),
    radial-gradient(900px 700px at 0% 30%, var(--teal-tint) 0%, transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 60%, var(--paper) 100%);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 60px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(14, 31, 39, 0.08);
  padding: 7px 14px 7px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  box-shadow: var(--shadow-1);
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--saffron);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232, 155, 42, 0.18);
}

.hero-h {
  margin: 22px 0 0;
  font-size: clamp(38px, 6.8vw, 70px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.028em;
  color: var(--ink);
  text-wrap: balance;
}
body[data-locale="np"] .hero-h { line-height: 1.28; }
body[data-locale="np"] .hero-h em {
  /* underline-highlight sits lower on Devanagari to clear matras */
  background: linear-gradient(180deg, transparent 74%, rgba(232, 155, 42, 0.32) 74% 96%, transparent 96%);
}
.hero-h em {
  font-style: normal;
  color: var(--teal);
  background: linear-gradient(180deg, transparent 64%, rgba(232, 155, 42, 0.32) 64% 92%, transparent 92%);
  padding: 0 2px;
}
.hero-sub {
  margin: 22px 0 0;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-2);
  max-width: 56ch;
  line-height: 1.55;
}
.hero-sub strong { color: var(--ink); font-family: var(--font-np); font-weight: 700; }

.hero-cta {
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-meta {
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 480px;
}
.hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 14px;
  border-left: 2px solid var(--saffron);
}
.hero-meta .m-num {
  font-family: var(--font-np);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.hero-meta .m-lbl { font-size: 12px; color: var(--ink-3); line-height: 1.3; }
.hero-demo { display: flex; justify-content: center; }

/* ════════════════════════════════════════════════════════════
   PILLARS
   ════════════════════════════════════════════════════════════ */
.pillars { padding: 80px 0 40px; }
@media (min-width: 900px) { .pillars { padding: 110px 32px 60px; } }
.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) { .pillar-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .pillar-grid { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  background: var(--surface);
  border: 1px solid rgba(14, 31, 39, 0.06);
  border-radius: 22px;
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.pillar-tile {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pt-teal { background: var(--teal-soft); color: var(--teal-2); }
.pt-saffron { background: var(--saffron-soft); color: var(--warn); }
.pt-good { background: var(--good-soft); color: var(--good); }
.pt-paper { background: var(--paper); color: var(--ink-2); }
.pillar h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.pillar p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.pillar-more {
  margin-top: auto;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pillar-more:hover { text-decoration: underline; }


/* ════════════════════════════════════════════════════════════
   DEMOS — section text columns + row layouts
   (Player chrome + scene keyframes live in demos.css)
   ════════════════════════════════════════════════════════════ */
.demos {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
@media (min-width: 900px) { .demos { padding: 110px 0 80px; } }

.demo-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  margin: 60px 0;
}
@media (min-width: 1100px) {
  .demo-row-wide { grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.6fr); }
  .demo-row-flip { grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr); }
  .demo-row-flip .demo-text { order: 2; }
}
.demo-row-split { grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 1000px) { .demo-row-split { grid-template-columns: 1fr 1fr; } }
.demo-half { display: flex; flex-direction: column; gap: 22px; }

.demo-text { max-width: 56ch; }
.demo-text-compact { max-width: none; }
.demo-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--teal-tint);
  color: var(--teal-2);
  margin-bottom: 14px;
}
.demo-tag-2 { background: var(--saffron-soft); color: var(--warn); }
.demo-tag-3 { background: var(--good-soft); color: var(--good); }
.demo-tag-4 { background: var(--crimson-soft); color: var(--crimson); }
.demo-text h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -0.018em;
  margin: 0 0 12px;
  line-height: 1.18;
}
body[data-locale="np"] .demo-text h3 { line-height: 1.32; }
.demo-text p { color: var(--ink-2); font-size: 16px; line-height: 1.55; }
.demo-text p em { font-style: normal; color: var(--ink); font-weight: 600; }
.demo-bul { margin: 16px 0 0; display: flex; flex-direction: column; gap: 8px; }
.demo-bul li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.demo-bul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.demo-foot-note {
  margin: 14px 0 0;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink-2);
  background: var(--paper);
  border: 1px dashed rgba(14, 31, 39, 0.18);
  border-radius: 10px;
}

/* ════════════════════════════════════════════════════════════
   UDHAARO EXPLAINER
   ════════════════════════════════════════════════════════════ */
.udhaaro {
  background: var(--paper-2);
  padding: 70px 0;
  border-top: 1px solid rgba(14, 31, 39, 0.05);
  border-bottom: 1px solid rgba(14, 31, 39, 0.05);
}
@media (min-width: 900px) { .udhaaro { padding: 110px 0; } }
.udh-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
}
@media (min-width: 800px) { .udh-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.udh-step {
  background: var(--surface);
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(14, 31, 39, 0.06);
  box-shadow: var(--shadow-1);
  position: relative;
  z-index: 1;
}
.udh-num {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-np);
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 8px 22px -8px rgba(15, 90, 94, 0.55);
}
.udh-step:nth-child(2) .udh-num { background: var(--saffron); color: #2a1a00; box-shadow: 0 8px 22px -8px rgba(232, 155, 42, 0.55); }
.udh-step:nth-child(3) .udh-num { background: var(--good); box-shadow: 0 8px 22px -8px rgba(46, 125, 79, 0.55); }
.udh-step h3 { margin: 16px 0 8px; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.udh-step p { color: var(--ink-2); font-size: 15px; line-height: 1.55; }

.udh-quote {
  margin: 40px auto 0;
  max-width: 760px;
  padding: 24px 24px 24px 28px;
  border-left: 4px solid var(--saffron);
  background: var(--surface);
  border-radius: 16px;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 500;
  font-style: italic;
  box-shadow: var(--shadow-1);
}
body[data-locale="np"] .udh-quote { font-style: normal; font-family: var(--font-np); }


/* ════════════════════════════════════════════════════════════
   IRD RECEIPT SECTION
   ════════════════════════════════════════════════════════════ */
.receipt-sec { padding: 70px 0; }
@media (min-width: 900px) { .receipt-sec { padding: 120px 0; } }
.receipt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .receipt-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }

.receipt-side p { margin: 18px 0 22px; color: var(--ink-2); font-size: 17px; max-width: 50ch; }
.receipt-bul { display: flex; flex-direction: column; gap: 10px; }
.receipt-bul li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
  transition: background .25s ease;
  padding: 10px 14px;
  border-radius: 12px;
}
.receipt-bul li.is-cued { background: var(--saffron-soft); color: var(--ink); }
.receipt-bul li strong { color: var(--ink); font-weight: 700; }
.rb-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--saffron);
  margin-top: 7px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(232, 155, 42, 0.18);
}

.receipt-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
  background: radial-gradient(500px 400px at 50% 30%, var(--teal-tint) 0%, transparent 65%);
  border-radius: 28px;
}
.receipt-paper {
  width: 100%;
  max-width: 360px;
  background: #fff;
  padding: 24px 24px 28px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: #111;
  line-height: 1.55;
  border-radius: 6px;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 30px 50px -20px rgba(14, 31, 39, 0.25),
    0 12px 28px -8px rgba(14, 31, 39, 0.18);
  position: relative;
}
.receipt-paper::before, .receipt-paper::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 14px;
  background: radial-gradient(7px 7px at 7px 7px, #fff 99%, transparent 100%) repeat-x;
  background-size: 14px 14px;
  pointer-events: none;
}
.receipt-paper::before { top: -7px; }
.receipt-paper::after { bottom: -7px; transform: rotate(180deg); }
.rcp-shop {
  font-family: var(--font-np);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  color: #111;
}
.rcp-addr, .rcp-pan { text-align: center; font-size: 11px; margin-top: 2px; }
.rcp-pan {
  margin-top: 4px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .25s ease, outline .25s ease;
}
.rcp-pan.is-cued, .rcp-row.is-cued {
  background: var(--saffron-soft);
  outline: 1px dashed var(--saffron);
}
.rcp-sep { border-top: 1px dashed #888; margin: 8px 0; }
.rcp-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 3px 8px;
  margin: 0 -8px;
  border-radius: 4px;
  transition: background .25s ease, outline .25s ease;
}
.rcp-cols {
  display: grid;
  grid-template-columns: 1.7fr 0.6fr 0.7fr 0.8fr;
  font-size: 10.5px;
  color: #666;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rcp-cols span { font-family: var(--font-np); }
.rcp-row3 {
  display: grid;
  grid-template-columns: 1.7fr 0.6fr 0.7fr 0.8fr;
  font-size: 11.5px;
  padding: 2px 0;
}
.rcp-row3 span:first-child { font-family: var(--font-np); }
.rcp-grand { font-weight: 700; font-size: 14px; margin-top: 4px; }
.rcp-thanks {
  text-align: center;
  font-family: var(--font-np);
  margin-top: 12px;
  font-size: 14px;
}
.rcp-foot { text-align: center; font-size: 10px; color: #999; margin-top: 6px; }

/* ════════════════════════════════════════════════════════════
   TIMELINE — 3 weeks
   ════════════════════════════════════════════════════════════ */
.timeline { background: var(--paper); padding: 70px 0; }
@media (min-width: 900px) { .timeline { padding: 110px 0; } }
.tl-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}
@media (min-width: 800px) {
  .tl-strip { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .tl-strip::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--teal) 0 8px, transparent 8px 14px);
    z-index: 0;
  }
}
.tl-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tl-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--teal);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-np);
  font-weight: 800;
  font-size: 26px;
  box-shadow: var(--shadow-1);
}
.tl-step:nth-child(2) .tl-dot { border-color: var(--saffron); color: var(--warn); }
.tl-step:nth-child(3) .tl-dot { border-color: var(--good); color: var(--good); }
.tl-week {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
body[data-locale="np"] .tl-week { font-family: var(--font-np); letter-spacing: 0.04em; text-transform: none; }
.tl-step h3 { margin: 6px 0 8px; font-size: 19px; font-weight: 700; }
.tl-step p { color: var(--ink-2); font-size: 15px; }

/* ════════════════════════════════════════════════════════════
   BUTWAL CALLOUT
   ════════════════════════════════════════════════════════════ */
.butwal {
  background: var(--paper-2);
  padding: 70px 0;
  border-top: 1px solid rgba(14, 31, 39, 0.05);
}
@media (min-width: 900px) { .butwal { padding: 100px 0; } }
.butwal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) { .butwal-grid { grid-template-columns: 1.05fr 1fr; gap: 60px; } }
.butwal-grid p {
  margin: 18px 0 22px;
  color: var(--ink-2);
  font-size: 17px;
  max-width: 50ch;
}
.butwal-map {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  background: var(--paper-2);
  border: 1px solid rgba(14, 31, 39, 0.06);
}


/* ════════════════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════════════════ */
.pricing { padding: 70px 0; }
@media (min-width: 900px) { .pricing { padding: 120px 0; } }
.price-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(160deg, var(--surface) 0%, var(--teal-tint) 130%);
  border: 1px solid rgba(14, 31, 39, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}
@media (min-width: 900px) {
  .price-card {
    grid-template-columns: minmax(220px, 1.1fr) minmax(0, 1.4fr) auto;
    gap: 40px;
    padding: 44px;
    align-items: center;
  }
}
.price-card::before {
  content: "";
  position: absolute;
  top: -100px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--saffron-soft) 0%, transparent 70%);
  pointer-events: none;
}
.price-card > * { position: relative; z-index: 1; }
.price-ribbon {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--saffron);
  color: #2a1a00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
body[data-locale="np"] .price-ribbon { font-family: var(--font-np); }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-np);
  font-weight: 800;
  color: var(--ink);
}
.pa-cur { font-size: 28px; color: var(--ink-2); }
.pa-num { font-size: 76px; line-height: 0.9; letter-spacing: -0.04em; }
.pa-per { font-size: 18px; color: var(--ink-3); font-weight: 600; }
.price-free { margin-top: 10px; color: var(--ink-2); font-size: 14.5px; }
.price-free strong { color: var(--good); }
.price-feat { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 600px) { .price-feat { grid-template-columns: 1fr 1fr; } }
.price-feat li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}
.pf-chk {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--good-soft);
  color: var(--good);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
}
.price-cta { align-self: center; justify-self: start; }
@media (min-width: 900px) { .price-cta { justify-self: end; } }

/* ════════════════════════════════════════════════════════════
   FOUNDER
   ════════════════════════════════════════════════════════════ */
.founder {
  background: var(--paper-2);
  padding: 70px 0;
  border-top: 1px solid rgba(14, 31, 39, 0.05);
  border-bottom: 1px solid rgba(14, 31, 39, 0.05);
}
@media (min-width: 900px) { .founder { padding: 100px 0; } }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 800px) { .founder-grid { grid-template-columns: 240px 1fr; gap: 48px; } }
.founder-portrait {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  border-radius: 30px;
  background: repeating-linear-gradient(135deg, var(--teal-tint) 0 12px, var(--paper-2) 12px 24px);
  border: 1px solid rgba(14, 31, 39, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-1);
}
.fp-stripes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-align: center;
  border: 1px dashed rgba(14, 31, 39, 0.18);
}
.fp-stripes span:nth-child(2) { color: var(--ink); font-weight: 700; }
.founder-text p {
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.6;
  max-width: 62ch;
}
.founder-np-tail { color: var(--ink-3) !important; font-size: 14.5px !important; }
body[data-locale="en"] .founder-np-tail { font-style: italic; }
.founder-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.founder-link:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.faq { padding: 70px 0; }
@media (min-width: 900px) { .faq { padding: 120px 0; } }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(14, 31, 39, 0.06);
  border-radius: 16px;
  box-shadow: var(--shadow-1);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  font-family: var(--font-sans);
  transition: background .15s ease;
  cursor: pointer;
}
body[data-locale="np"] .faq-q { font-family: var(--font-np); font-weight: 600; }
.faq-q:hover { background: var(--paper); }
.faq-chev {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  transition: transform .2s ease, background .2s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.is-open .faq-chev { transform: rotate(45deg); background: var(--teal); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 22px;
}
.faq-item.is-open .faq-a {
  max-height: 320px;
  padding: 0 22px 18px;
}


/* ════════════════════════════════════════════════════════════
   DEMO FORM
   ════════════════════════════════════════════════════════════ */
.demo-form-sec {
  padding: 70px 0;
  background:
    radial-gradient(800px 400px at 80% 20%, var(--saffron-soft) 0%, transparent 60%),
    var(--paper);
}
@media (min-width: 900px) { .demo-form-sec { padding: 110px 0; } }
.demo-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) { .demo-form-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }
.demo-form-grid p {
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 17px;
  max-width: 48ch;
}
.form-trust {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 420px;
}
.form-trust > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 12px;
  border-left: 2px solid var(--teal);
}
.ft-num {
  font-family: var(--font-np);
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
  line-height: 1;
}
.ft-num em { font-family: var(--font-sans); font-style: normal; font-size: 14px; color: var(--ink-3); margin-left: 2px; }
.ft-l { font-size: 12px; color: var(--ink-3); }

.demo-form {
  background: var(--surface);
  border: 1px solid rgba(14, 31, 39, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.ff { display: flex; flex-direction: column; gap: 6px; }
.ff-l { font-size: 13px; font-weight: 700; color: var(--ink-2); }
body[data-locale="np"] .ff-l { font-family: var(--font-np); font-weight: 600; }
.ff input {
  height: 54px;
  border-radius: 14px;
  border: 1px solid rgba(14, 31, 39, 0.14);
  background: var(--paper-2);
  padding: 0 16px;
  font-size: 16px;
  color: var(--ink);
  font-family: inherit;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.ff input:focus { border-color: var(--teal); background: #fff; }
.ff-phone {
  display: flex;
  align-items: stretch;
  border-radius: 14px;
  border: 1px solid rgba(14, 31, 39, 0.14);
  background: var(--paper-2);
  overflow: hidden;
  transition: border-color .15s ease, background .15s ease;
}
.ff-phone:focus-within { border-color: var(--teal); background: #fff; }
.ff-phone .ff-prefix {
  padding: 0 14px;
  display: flex;
  align-items: center;
  background: var(--teal-tint);
  color: var(--teal-2);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
}
.ff-phone input { border: 0; height: 54px; background: transparent; flex: 1; min-width: 0; }
.form-submit { margin-top: 4px; }
.form-thanks {
  display: none;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 14px;
  background: var(--good-soft);
  color: var(--ink);
}
.demo-form.is-sent .form-thanks { display: flex; }
.demo-form.is-sent .ff,
.demo-form.is-sent .form-submit { display: none; }
.ft-check {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--good);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  flex-shrink: 0;
}
.ft-h { font-weight: 800; font-size: 17px; }
.ft-s { color: var(--ink-2); font-size: 14px; margin-top: 2px; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: #c8d4d9;
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
.footer-brand p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  max-width: 32ch;
}
.brand-foot { color: #fff; }
.brand-foot .brand-name { color: #fff; }
.brand-foot .brand-sep { color: rgba(255, 255, 255, 0.4); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}
body[data-locale="np"] .footer-col h4 {
  font-family: var(--font-np);
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 14px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14.5px;
  transition: color .15s ease;
}
.footer-col a:hover { color: #fff; }
.foot-mono {
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.footer-bot {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 700px) {
  .footer-bot { flex-direction: row; justify-content: space-between; align-items: center; }
}
.foot-tag { color: rgba(255, 255, 255, 0.4); }

/* ════════════════════════════════════════════════════════════
   Reduced motion
   ════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
