/* Shraddha / Zyrovanta — one stylesheet for the whole site.
   Dark, warm, bhagwa. No webfonts: the audience is on slow connections and
   Devanagari renders from the system font on every device that matters. */

:root {
  --bg:        #0b0705;
  --bg-alt:    #110b07;
  --card:      #16100a;
  --card-hi:   #1c140c;
  --line:      #2c1e13;
  --saffron:   #ff9933;
  --deep:      #e0620a;
  --gold:      #f3be4e;
  --text:      #f7f0e6;
  --muted:     #a89584;
  --radius:    16px;
  --max:       1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--saffron); text-decoration: none; }
a:hover { color: var(--gold); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------------------------------------------------------------- nav --- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 7, 5, .88);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 28px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700;
         font-size: 19px; color: var(--text); letter-spacing: -.02em; }
.brand:hover { color: var(--text); }
.dot { width: 9px; height: 9px; border-radius: 50%;
       background: var(--saffron); box-shadow: 0 0 12px 2px rgba(255,153,51,.55); }
.nav nav { display: flex; gap: 26px; margin-left: auto; }
.nav nav a { color: var(--muted); font-size: 15px; }
.nav nav a:hover { color: var(--text); }
.btn {
  display: inline-block; padding: 12px 22px; border-radius: 12px;
  font-weight: 700; font-size: 15px; letter-spacing: -.01em;
  background: linear-gradient(135deg, var(--saffron), var(--deep));
  color: #2a1403; border: 0; white-space: nowrap;
}
.btn:hover { color: #2a1403; filter: brightness(1.08); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { color: var(--text); border-color: var(--saffron); }
.nav .btn { padding: 10px 18px; }

/* --------------------------------------------------------------- hero --- */
.hero {
  position: relative; overflow: hidden;
  padding: 96px 0 84px; text-align: center;
  background:
    radial-gradient(900px 420px at 50% -6%, rgba(255,153,51,.20), transparent 62%),
    radial-gradient(600px 300px at 50% 0%, rgba(224,98,10,.16), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero .om { font-size: 40px; color: var(--saffron); margin: 0 0 6px;
            text-shadow: 0 0 28px rgba(255,153,51,.5); }
.hero .deva { font-size: 30px; color: var(--gold); margin: 0 0 22px;
              letter-spacing: .04em; }
h1 {
  margin: 0 auto 20px; max-width: 15ch;
  font-size: clamp(38px, 6.2vw, 66px); line-height: 1.04;
  letter-spacing: -.035em; font-weight: 800;
}
.lede { margin: 0 auto 34px; max-width: 60ch; color: var(--muted);
        font-size: clamp(16px, 2vw, 19px); }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.stats { display: flex; gap: 56px; justify-content: center; flex-wrap: wrap;
         margin-top: 62px; }
.stat b { display: block; font-size: 34px; font-weight: 800; color: var(--saffron);
          letter-spacing: -.03em; }
.stat span { color: var(--muted); font-size: 14px; }

/* ------------------------------------------------------------ sections --- */
section { padding: 88px 0; border-bottom: 1px solid var(--line); }
/* the nav is sticky and 66px tall, so an anchor jump would otherwise put the
   heading underneath it */
section[id], footer[id] { scroll-margin-top: 78px; }
section.alt { background: var(--bg-alt); }
.eyebrow { text-align: center; color: var(--saffron); font-size: 13px;
           letter-spacing: .18em; text-transform: uppercase; margin: 0 0 14px; }
h2 { margin: 0 auto 14px; text-align: center; max-width: 20ch;
     font-size: clamp(27px, 3.6vw, 40px); line-height: 1.15;
     letter-spacing: -.03em; font-weight: 800; }
.sub { text-align: center; color: var(--muted); max-width: 58ch;
       margin: 0 auto 52px; }

.grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px 30px;
  transition: border-color .18s ease, background .18s ease;
}
.card:hover { border-color: rgba(255,153,51,.42); background: var(--card-hi); }
.card .ico { font-size: 26px; display: block; margin-bottom: 16px; }
.card h3 { margin: 0 0 10px; font-size: 19px; letter-spacing: -.02em;
           font-weight: 700; }
.card p { margin: 0; color: var(--muted); font-size: 15.5px; }
.num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px; margin-bottom: 18px;
  background: rgba(255,153,51,.13); color: var(--saffron);
  font-weight: 800; border: 1px solid rgba(255,153,51,.26);
}

/* about */
.about { display: grid; grid-template-columns: 1.25fr 1fr; gap: 56px;
         align-items: start; }
.about h2, .about .sub { text-align: left; margin-left: 0; }
.about p { color: var(--muted); }
.facts { border: 1px solid var(--line); border-radius: var(--radius);
         background: var(--card); padding: 8px 24px; }
.facts div { display: flex; justify-content: space-between; gap: 20px;
             padding: 15px 0; border-bottom: 1px solid var(--line);
             font-size: 15px; }
.facts div:last-child { border-bottom: 0; }
.facts dt { color: var(--muted); }
.facts dd { margin: 0; font-weight: 600; text-align: right; }

/* closing cta */
.close { text-align: center; background:
  radial-gradient(760px 340px at 50% 108%, rgba(255,153,51,.17), transparent 66%),
  var(--bg); }
.close .note { color: var(--muted); font-size: 14px; margin-top: 20px; }

/* ------------------------------------------------------------- footer --- */
footer { padding: 58px 0 34px; background: var(--bg-alt); }
.fgrid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 44px; }
.fgrid p { color: var(--muted); font-size: 15px; }
.fcol h4 { margin: 0 0 16px; font-size: 13px; letter-spacing: .14em;
           text-transform: uppercase; color: var(--muted); font-weight: 700; }
.fcol ul { list-style: none; margin: 0; padding: 0; }
.fcol li { margin-bottom: 11px; font-size: 15px; }
.fcol .co { color: var(--text); font-weight: 700; margin-bottom: 6px; }
.legalbar { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line);
            display: flex; justify-content: space-between; gap: 18px;
            flex-wrap: wrap; color: var(--muted); font-size: 13.5px; }

/* -------------------------------------------------------- policy pages --- */
.doc { max-width: 800px; margin: 0 auto; padding: 56px 24px 20px; }
.back { display: inline-block; color: var(--saffron); font-size: 15px;
        margin-bottom: 26px; }
.doc h1 { text-align: left; max-width: none; margin: 0 0 10px;
          font-size: clamp(30px, 4.4vw, 44px); }
.doc .eff { color: var(--muted); font-size: 14.5px; margin: 0 0 40px; }
.doc h2 { text-align: left; max-width: none; margin: 40px 0 12px;
          font-size: 21px; padding-top: 26px; border-top: 1px solid var(--line); }
.doc h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 26px; }
.doc p { margin: 0 0 14px; }
.doc ul { margin: 0 0 18px; padding-left: 22px; }
.doc li { margin-bottom: 8px; color: var(--muted); }
.doc li::marker { color: var(--saffron); }

@media (max-width: 900px) {
  .grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 34px; }
  .fgrid { grid-template-columns: 1fr; gap: 30px; }
  .nav nav { display: none; }
  .stats { gap: 34px; }
  section { padding: 62px 0; }
}
