/* ==========================================================================
   Janta Nivesh — Website Stylesheet
   Brand: navy #23336E · sky #00AEEF · Launched under The Velvet Investing
   Minimalist, mobile-first, multilingual (Latin + Indic scripts)
   ========================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Noto+Sans+Gurmukhi:wght@400;500;600;700&family=Noto+Sans+Gujarati:wght@400;500;600;700&family=Noto+Sans+Bengali:wght@400;500;600;700&family=Noto+Sans+Tamil:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --navy:        #23336E;
  --navy-dark:   #17214D;
  --navy-light:  #F4F6FB;
  --sky:         #00AEEF;
  --sky-dark:    #0091C7;
  --sky-light:   #F2FAFE;
  --gold:        #D6B585;

  --ink:         #16203F;
  --body:        #47536E;
  --muted:       #7A849B;
  --line:        #E4E8F1;
  --line-soft:   #EFF2F8;
  --white:       #FFFFFF;
  --surface:     #FAFBFD;

  --success:     #0F9D58;
  --success-bg:  #E9F7EF;
  --warn:        #B26B00;
  --warn-bg:     #FFF6E6;
  --danger:      #C62828;
  --danger-bg:   #FDECEC;

  --radius:      16px;
  --radius-lg:   24px;
  --radius-sm:   10px;
  --radius-xl:   32px;

  /* Layered shadows read as real depth rather than a flat grey blur */
  --shadow-sm:   0 1px 2px rgba(22,32,63,.05), 0 1px 3px rgba(22,32,63,.04);
  --shadow:      0 2px 4px rgba(22,32,63,.04), 0 8px 24px rgba(22,32,63,.07);
  --shadow-md:   0 4px 8px rgba(22,32,63,.05), 0 14px 36px rgba(22,32,63,.09);
  --shadow-lg:   0 8px 16px rgba(22,32,63,.06), 0 28px 64px rgba(22,32,63,.13);

  /* 4pt spacing scale — every gap on the site resolves to one of these */
  --s1: 4px;  --s2: 8px;   --s3: 12px;  --s4: 16px;  --s5: 24px;
  --s6: 32px; --s7: 44px;  --s8: 64px;  --s9: 88px;  --s10: 120px;

  /* Fluid type scale */
  --t-display: clamp(2.4rem, 5.6vw, 4rem);
  --t-h1:      clamp(2rem, 4.4vw, 3rem);
  --t-h2:      clamp(1.625rem, 3.2vw, 2.25rem);
  --t-h3:      clamp(1.0625rem, 1.6vw, 1.25rem);
  --t-lede:    clamp(1.0625rem, 1.3vw, 1.1875rem);

  /* One easing curve used everywhere, so motion feels like one hand made it */
  --ease:      cubic-bezier(.22, 1, .36, 1);
  --ease-back: cubic-bezier(.34, 1.56, .64, 1);

  --wrap:        1200px;
  --wrap-narrow: 820px;

  --font: 'Inter', 'Noto Sans Devanagari', 'Noto Sans Gurmukhi', 'Noto Sans Gujarati',
          'Noto Sans Bengali', 'Noto Sans Tamil', system-ui, -apple-system, sans-serif;
}

/* Indic scripts get a touch more line-height and slightly larger size */
html[lang="hi"], html[lang="pa"], html[lang="gu"], html[lang="bn"], html[lang="ta"] {
  --indic: 1;
}
html[lang="hi"] body, html[lang="pa"] body, html[lang="gu"] body,
html[lang="bn"] body, html[lang="ta"] body { line-height: 1.75; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
/* height:auto is essential — without it, the width/height attributes on <img>
   fight max-width:100% and the image stretches vertically. */
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sky-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
/* Larger type gets tighter tracking and shorter leading — optical correction */
h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: var(--t-h1); font-weight: 800; line-height: 1.1;  letter-spacing: -.028em; }
h2 { font-size: var(--t-h2); line-height: 1.18; letter-spacing: -.022em; }
h3 { font-size: var(--t-h3); line-height: 1.32; letter-spacing: -.012em; }
h4 { line-height: 1.35; letter-spacing: -.008em; }
.t-display { font-size: var(--t-display); font-weight: 800; line-height: 1.06; letter-spacing: -.034em; }
/* Indic scripts need looser tracking and more leading than Latin at these sizes */
html[lang="hi"] h1, html[lang="pa"] h1, html[lang="gu"] h1, html[lang="bn"] h1, html[lang="ta"] h1,
html[lang="hi"] h2, html[lang="pa"] h2, html[lang="gu"] h2, html[lang="bn"] h2, html[lang="ta"] h2,
html[lang="hi"] .t-display, html[lang="pa"] .t-display, html[lang="gu"] .t-display,
html[lang="bn"] .t-display, html[lang="ta"] .t-display {
  letter-spacing: -.005em; line-height: 1.32;
}
p  { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
li { margin-bottom: .45rem; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; border-radius: 4px; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 20px; }
.section { padding: var(--s9) 0; }
.section-sm { padding: var(--s7) 0; }
.section-lg { padding: var(--s10) 0; }
@media (max-width: 760px) {
  .section    { padding: var(--s8) 0; }
  .section-lg { padding: var(--s8) 0; }
  .section-sm { padding: var(--s6) 0; }
}
/* Tinted bands fade in and out rather than cutting hard against white */
.section-tint {
  background: linear-gradient(180deg, var(--white) 0%, var(--surface) 6%, var(--surface) 94%, var(--white) 100%);
}
.section-navy { background: var(--navy); color: rgba(255,255,255,.85); }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .lede { color: rgba(255,255,255,.82); }
.center { text-align: center; }
.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .g3, .g4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .g2, .g3, .g4 { grid-template-columns: 1fr; } }

/* Eyebrow gets a short rule before it — a small signal that a new idea starts */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sky-dark); margin-bottom: var(--s3);
}
.eyebrow::before {
  content: ''; width: 22px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: .55; flex-shrink: 0;
}
.center .eyebrow::before, .eyebrow.no-rule::before { display: none; }
.lede { font-size: var(--t-lede); color: var(--body); max-width: 62ch; line-height: 1.6; }
.section-head { max-width: 60ch; margin-bottom: var(--s7); }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head .lede { margin-bottom: 0; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }

/* ---------- Skip link ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: inherit; font-size: .9375rem; font-weight: 600; line-height: 1;
  padding: 14px 24px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .18s ease; text-decoration: none; text-align: center;
}
.btn { transition: background-color .25s var(--ease), color .25s var(--ease),
                   border-color .25s var(--ease), box-shadow .3s var(--ease), transform .25s var(--ease); }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn-primary {
  background: linear-gradient(145deg, var(--navy), var(--navy-dark)); color: #fff;
  box-shadow: 0 4px 14px rgba(35,51,110,.26);
}
.btn-primary:hover { box-shadow: 0 8px 24px rgba(35,51,110,.34); }
.btn-sky {
  background: linear-gradient(145deg, #14BAF5, var(--sky-dark)); color: #fff;
  box-shadow: 0 4px 14px rgba(0,145,199,.3);
}
.btn-sky:hover { box-shadow: 0 8px 26px rgba(0,145,199,.4); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); background: var(--navy-light); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #f2f5fb; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #a71f1f; }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn-sm { padding: 10px 18px; font-size: .875rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row.center { justify-content: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line-soft);
}
.hdr { display: flex; align-items: center; gap: 16px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand:hover { text-decoration: none; }
.brand img { height: 34px; width: auto; }
.brand-sub { font-size: .625rem; color: var(--muted); letter-spacing: .04em; line-height: 1.2; display: block; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--body); font-size: .9375rem; font-weight: 500;
  padding: 9px 13px; border-radius: 8px; white-space: nowrap;
}
.nav a:hover { color: var(--navy); background: var(--navy-light); text-decoration: none; }
.nav a.active { color: var(--navy); font-weight: 600; background: var(--navy-light); }

.hdr-actions { display: flex; align-items: center; gap: 10px; }

/* Language selector */
.lang-select {
  appearance: none; -webkit-appearance: none;
  font-family: inherit; font-size: .875rem; font-weight: 600; color: var(--navy);
  background: var(--white) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2323336E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 12px center;
  border: 1.5px solid var(--line); border-radius: 999px;
  padding: 9px 34px 9px 14px; cursor: pointer; transition: border-color .18s;
}
.lang-select:hover { border-color: var(--sky); }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: 1.5px solid var(--line); border-radius: 10px;
  width: 42px; height: 42px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--navy); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--navy);
  transition: transform .2s;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 68px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch;
    padding: 10px 20px 18px; gap: 2px; display: none; box-shadow: var(--shadow);
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; font-size: 1rem; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(168deg, var(--navy) 0%, var(--navy-dark) 62%, #101941 100%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; right: -14%; top: -28%; width: 62%; padding-bottom: 62%;
  background: radial-gradient(circle, rgba(0,174,239,.28) 0%, rgba(0,174,239,0) 68%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: var(--s8); align-items: center;
  padding: var(--s9) 0 var(--s10); position: relative; z-index: 1;
}
/* The brand line sits ABOVE the headline as a lockup, so the headline itself
   can carry the actual proposition in whatever language is selected. */
.hero-brandline {
  display: block; font-size: .875rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 var(--s3);
}
.hero h1 { color: #fff; margin-bottom: var(--s4); max-width: 16ch; }
.hero p.hero-sub {
  font-size: var(--t-lede); color: rgba(255,255,255,.8); max-width: 48ch; line-height: 1.62;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: .8125rem; font-weight: 600;
  padding: 7px 15px; border-radius: 999px; margin-bottom: var(--s5);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sky); }
.hero-note { font-size: .8125rem; color: rgba(255,255,255,.6); margin-top: 16px; }
.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.14);
}
.hero-caption {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: rgba(23,33,77,.82); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14); border-radius: 12px;
  padding: 12px 16px; font-size: .8125rem; color: rgba(255,255,255,.9);
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 28px; margin-top: 26px;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stat b { display: block; font-size: 1.375rem; color: #fff; line-height: 1.2; }
.hero-stat span { font-size: .8125rem; color: rgba(255,255,255,.65); }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s8); padding: var(--s7) 0 var(--s8); }
  .hero-figure { max-width: 420px; margin: 0 auto; }
  .hero h1 { max-width: none; }
}

/* ---------- Page header (inner pages) ---------- */
.page-head {
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--navy-light) 0%, var(--sky-light) 52%, var(--white) 100%);
  border-bottom: 1px solid var(--line-soft); padding: var(--s8) 0 var(--s7);
}
/* A soft off-centre glow so inner pages don't open on a flat slab */
.page-head::after {
  content: ''; position: absolute; right: -8%; top: -60%; width: 46%; padding-bottom: 46%;
  background: radial-gradient(circle, rgba(0,174,239,.16) 0%, rgba(0,174,239,0) 70%);
  border-radius: 50%; pointer-events: none;
}
.page-head > * { position: relative; z-index: 1; }
.page-head h1 { margin-bottom: var(--s3); max-width: 20ch; }
.page-head .lede { max-width: 58ch; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px; font-size: .875rem;
  font-weight: 600; color: var(--sky-dark); margin-bottom: 16px;
}
.meta-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.meta-badge {
  display: inline-flex; gap: 6px; align-items: center; background: #fff;
  border: 1px solid var(--line); border-radius: 10px; padding: 8px 14px; font-size: .8125rem;
}
.meta-badge span { color: var(--muted); }
.meta-badge b { color: var(--ink); font-weight: 600; }

/* ---------- Cards ---------- */
/* ---- Card hierarchy --------------------------------------------------
   Four deliberately different weights so a major card never reads the same
   as a minor one:
     .card           quiet default — hairline border, no shadow
     .card-elevated  lifted, borderless — for things that matter
     .card-feature   the hero of a section: bigger, accent rule on top
     .card-quiet     tinted, no border — supporting detail only
   -------------------------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--s5); transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
}
.card-hover:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: #D3DCEE; }

.card-elevated {
  border-color: transparent; box-shadow: var(--shadow); padding: var(--s6);
}
.card-elevated:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.card-feature {
  padding: var(--s6); border-radius: var(--radius-lg); position: relative;
  box-shadow: var(--shadow); border-color: transparent; overflow: hidden;
}
.card-feature::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--navy));
}
.card-feature:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.card-quiet {
  background: var(--surface); border-color: transparent; box-shadow: none;
}
.card-quiet:hover { background: var(--navy-light); transform: none; box-shadow: none; }

.card h3 { margin-bottom: var(--s2); }
.card p:last-child, .card ul:last-child { margin-bottom: 0; }

.card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(145deg, var(--sky-light), #E6F6FE);
  display: flex; align-items: center; justify-content: center; margin-bottom: var(--s4);
  color: var(--sky-dark);
}
.card-icon svg { width: 23px; height: 23px; }
.card-feature .card-icon {
  background: linear-gradient(145deg, var(--navy), var(--navy-dark)); color: #fff;
}
.card-num {
  width: 40px; height: 40px; border-radius: 13px;
  background: linear-gradient(145deg, var(--navy), var(--navy-dark)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  font-size: .9375rem; margin-bottom: var(--s4); flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(35,51,110,.24);
}

/* ---- Tick / cross list, for the do-and-don't split ---- */
.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li {
  position: relative; padding-left: 34px; margin-bottom: var(--s4);
  font-size: .9375rem; line-height: 1.55;
}
.tick-list li::before {
  content: ''; position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%;
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}
.tick-list.is-do li::before {
  background-color: var(--success-bg);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F9D58' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}
.tick-list.is-dont li::before {
  background-color: var(--danger-bg);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C62828' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

/* ---------- Callouts / info notes ----------------------------------------
   These are helpful asides, not alarms. Kept small, quiet and tidy: soft
   tinted panel, no heavy left bar, smaller type than body copy. Only
   .callout-danger is allowed to look genuinely cautionary.
   ---------------------------------------------------------------------- */
.callout {
  background: var(--sky-light); border: 1px solid #DCEFF9;
  border-radius: var(--radius); padding: var(--s4) var(--s5);
  margin: 0 0 var(--s5); font-size: .875rem; line-height: 1.55; color: var(--body);
}
.callout > h2, .callout > h3, .callout > h4 {
  font-size: .9375rem; margin: 0 0 var(--s2); letter-spacing: -.005em;
  display: flex; align-items: center; gap: 8px;
}
/* A small dot instead of a warning bar — reads as "note", not "danger" */
.callout > h2::before, .callout > h3::before, .callout > h4::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--sky); flex-shrink: 0;
}
.callout p, .callout li { font-size: .875rem; line-height: 1.55; }
.callout p:last-child, .callout ul:last-child, .callout ol:last-child { margin-bottom: 0; }
.callout ul, .callout ol { padding-left: 1.1rem; margin-bottom: 0; }
.callout li { margin-bottom: var(--s2); }
.callout li:last-child { margin-bottom: 0; }
.callout li::marker { color: var(--sky); }
.callout strong { color: var(--ink); }

/* Neutral variant — the default for "things worth knowing" */
.callout-warn { background: #FDF8EE; border-color: #F0E2C6; }
.callout-warn > h2::before, .callout-warn > h3::before, .callout-warn > h4::before { background: #D9A441; }
.callout-warn li::marker { color: #D9A441; }

.callout-success { background: var(--success-bg); border-color: #CFEBDC; }
.callout-success > h3::before { background: var(--success); }

/* Reserved for genuine warnings only */
.callout-danger { background: var(--danger-bg); border-color: #F2D3D3; }
.callout-danger > h2::before, .callout-danger > h3::before { background: var(--danger); }
.callout-danger li::marker { color: var(--danger); }

/* Compact inline note — one line, no heading */
.note-inline {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: .8125rem; line-height: 1.5; color: var(--muted); margin: var(--s3) 0 0;
}
.note-inline svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--sky-dark); }

/* ---------- Prose (legal / long-form) ---------- */
.prose { max-width: 74ch; }
.prose h2 {
  font-size: 1.3125rem; margin-top: 2.25rem; margin-bottom: .75rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--line-soft);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.0625rem; margin-top: 1.6rem; margin-bottom: .5rem; }
.prose ul { padding-left: 1.15rem; }
.prose li::marker { color: var(--sky); }
.prose strong { color: var(--ink); font-weight: 600; }

/* ---------- Tables ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 0 1.5rem; }
table {
  width: 100%; min-width: 460px; border-collapse: collapse; font-size: .9375rem;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
th {
  background: var(--navy-light); color: var(--ink); font-weight: 600; text-align: left;
  padding: 13px 16px; border-bottom: 1px solid var(--line); font-size: .875rem;
}
td { padding: 13px 16px; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: #FCFDFF; }

/* ---------- People / banner strip ---------- */
.people-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .people-strip { grid-template-columns: repeat(2, 1fr); } }
.people-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; box-shadow: var(--shadow); background: var(--navy-light);
}
.people-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.people-card:hover img { transform: scale(1.045); }
.people-card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 44px 18px 18px; color: #fff;
  background: linear-gradient(to top, rgba(17,25,60,.94) 12%, rgba(17,25,60,.55) 55%, transparent 100%);
}
.people-card figcaption b { display: block; font-size: 1rem; margin-bottom: 3px; }
.people-card figcaption span { font-size: .8125rem; color: rgba(255,255,255,.82); line-height: 1.45; display: block; }

.banner-wide {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.banner-wide img { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: 42% 45%; }
.banner-wide .banner-body {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(20px, 6vw, 64px); color: #fff;
  background: linear-gradient(90deg, rgba(17,25,60,.92) 0%, rgba(17,25,60,.72) 46%, rgba(17,25,60,.15) 100%);
}
.banner-wide .banner-body h2 { color: #fff; max-width: 20ch; }
.banner-wide .banner-body p { color: rgba(255,255,255,.85); max-width: 40ch; }
@media (max-width: 620px) {
  .banner-wide img { aspect-ratio: 4/5; }
  .banner-wide .banner-body { background: linear-gradient(180deg, rgba(17,25,60,.5) 0%, rgba(17,25,60,.93) 60%); justify-content: flex-end; padding-bottom: 32px; }
}

/* ---------- Media frames ----------
   Wrap a standalone photo in .media + a ratio class. The frame owns the
   aspect ratio and the image fills it with object-fit:cover, so the photo
   can never stretch or blow out its column at any viewport width.        */
.media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  background: var(--navy-light); margin: 0; width: 100%;
}
.media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  /* bias the crop upward so faces stay in frame when the frame crops */
  object-position: 50% 32%;
}
.media-wide     { aspect-ratio: 16/9; }
.media-wide img { object-position: 50% 45%; }
.media-portrait { aspect-ratio: 4/5; max-height: 560px; }
.media-tall     { aspect-ratio: 3/4; max-height: 620px; }
.media-square   { aspect-ratio: 1/1; }
/* On narrow screens tall frames square off so they don't push content away.
   1/1 rather than a landscape ratio — a portrait photo cropped to 4/3 loses the head. */
@media (max-width: 620px) {
  .media-tall, .media-portrait { aspect-ratio: 1/1; max-height: none; }
}

/* ---------- Language chips ---------- */
.lang-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.lang-chip {
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-weight: 600; color: var(--navy); font-size: .9375rem;
  cursor: pointer; transition: all .18s; font-family: inherit;
}
.lang-chip:hover { border-color: var(--sky); background: var(--sky-light); }
.lang-chip[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ---------- Accordion (FAQ) ---------- */
.acc-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; background: #fff; overflow: hidden; }
.acc-btn {
  width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  background: none; border: 0; padding: 18px 20px; cursor: pointer; text-align: left;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--ink); line-height: 1.5;
}
.acc-btn:hover { background: var(--surface); }
.acc-btn .chev { flex-shrink: 0; width: 18px; height: 18px; color: var(--sky-dark); transition: transform .22s; margin-top: 3px; }
.acc-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.acc-panel { padding: 0 20px 18px; color: var(--body); font-size: .9375rem; }
.acc-panel[hidden] { display: none; }
.faq-cat { margin-bottom: 34px; }
.faq-cat > h2 { font-size: 1.1875rem; margin-bottom: 14px; color: var(--navy); }

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.field label { display: block; font-size: .875rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(0,174,239,.14);
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--danger); }
.field .hint { font-size: .8125rem; color: var(--muted); margin-top: 6px; }
.field .err { font-size: .8125rem; color: var(--danger); margin-top: 6px; display: none; }
.field .err.show { display: block; }
.check { display: flex; align-items: flex-start; gap: 11px; }
.check input { width: 18px; height: 18px; margin-top: 3px; flex-shrink: 0; accent-color: var(--navy); }
.check label { font-size: .875rem; font-weight: 400; color: var(--body); margin: 0; line-height: 1.55; }
.form-status { padding: 16px 20px; border-radius: var(--radius); font-size: .9375rem; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: var(--success-bg); color: #0B6B3D; border-left: 4px solid var(--success); }
.form-status.bad { background: var(--danger-bg); color: #8E1F1F; border-left: 4px solid var(--danger); }

/* ---------- Contact tiles ---------- */
.contact-tile { display: flex; gap: 15px; align-items: flex-start; }
.contact-tile .ci {
  width: 42px; height: 42px; border-radius: 11px; background: var(--navy-light); color: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-tile .ci svg { width: 20px; height: 20px; }
.contact-tile b { display: block; color: var(--ink); font-size: .9375rem; margin-bottom: 3px; }
.contact-tile a, .contact-tile span { font-size: .9375rem; color: var(--body); display: block; }

/* ---------- Team ---------- */
.team-card { text-align: left; }
.team-card .avatar {
  width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.25rem;
  font-weight: 700; margin-bottom: 14px; letter-spacing: .02em;
}
.team-card .role { color: var(--sky-dark); font-size: .8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.team-card p { font-size: .9375rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: clamp(32px, 6vw, 56px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::after {
  content: ''; position: absolute; left: 50%; bottom: -55%; width: 70%; padding-bottom: 70%;
  transform: translateX(-50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,.26) 0%, rgba(0,174,239,0) 68%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.72); font-size: .875rem; margin-top: 0; }
.footer-regs { border-bottom: 1px solid rgba(255,255,255,.1); padding: 14px 0; }
.footer-regs .wrap {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px;
  font-size: .75rem; color: rgba(255,255,255,.82);
}
.footer-regs .sep { color: rgba(255,255,255,.28); }
.footer-main { padding: 44px 0 32px; }
.footer-cols { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 32px; }
@media (max-width: 980px) { .footer-cols { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 620px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 26px; } }
.footer-brand img { height: 34px; width: auto; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-brand p { font-size: .8125rem; color: rgba(255,255,255,.62); margin-bottom: 16px; }
/* :not(.btn) matters — without it this rule beats .btn-sky on specificity and
   paints the footer CTA sky-blue on a sky-blue button, making it invisible. */
.footer-brand a:not(.btn) { color: var(--sky); }
.footer-brand .btn { color: #fff; margin-top: var(--s2); }
.footer-col h3 { color: #fff; font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .875rem; }
.footer-col a:hover { color: #fff; }
.footer-legalese { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0 28px; }
.footer-legalese p { font-size: .6875rem; line-height: 1.7; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  font-size: .75rem; color: rgba(255,255,255,.5); padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.08); margin-top: 6px;
}

/* ==========================================================================
   Components added in the design-system upgrade
   ========================================================================== */

/* ---------- Text link with a moving arrow (secondary CTA) ---------- */
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .9375rem; color: var(--sky-dark);
}
.link-arrow:hover { text-decoration: none; }
.link-arrow svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }
.link-arrow.on-dark { color: #fff; }
.link-arrow.on-dark:hover { color: #7FD9FF; }

/* ---------- Trust bar under the hero ---------- */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--line-soft); }
.trust-bar .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--s3) var(--s6); padding-top: var(--s5); padding-bottom: var(--s5);
}
/* No nowrap — Indic translations run long and would otherwise force a
   horizontal overflow on narrow screens. Let them wrap instead. */
.trust-item {
  display: inline-flex; align-items: flex-start; gap: 9px;
  font-size: .8125rem; font-weight: 500; color: var(--body);
  max-width: 100%; line-height: 1.4;
}
.trust-item svg { margin-top: 1px; }
.trust-item svg { width: 16px; height: 16px; color: var(--success); flex-shrink: 0; }
@media (max-width: 620px) {
  .trust-bar .wrap { justify-content: flex-start; gap: var(--s3) var(--s5); }
  .trust-item { font-size: .75rem; }
}

/* ---------- Hero: layered photo + phone + floating toast ---------- */
.hero-stack { position: relative; }
.hero-stack .hs-photo {
  width: 84%; margin-left: auto; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.14);
  aspect-ratio: 4/5;
}
.hero-stack .hs-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.hero-stack .hs-phone {
  position: absolute; left: 0; bottom: -6%; width: 44%; max-width: 220px; z-index: 2;
}
.hero-stack .hs-toast {
  position: absolute; right: 2%; top: 12%; z-index: 3;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-radius: 14px; padding: 11px 15px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 11px; max-width: 230px;
}
.hero-stack .hs-toast .ic {
  width: 32px; height: 32px; border-radius: 50%; background: var(--success-bg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-stack .hs-toast .ic svg { width: 16px; height: 16px; color: var(--success); }
.hero-stack .hs-toast b { display: block; font-size: .8125rem; color: var(--ink); line-height: 1.3; }
.hero-stack .hs-toast span { font-size: .6875rem; color: var(--muted); }
@media (max-width: 900px) {
  .hero-stack { max-width: 460px; margin: 0 auto; }
  .hero-stack .hs-photo { width: 78%; }
  .hero-stack .hs-phone { width: 46%; bottom: -4%; }
}
@media (max-width: 460px) {
  .hero-stack .hs-toast { right: 0; top: 6%; padding: 8px 11px; max-width: 180px; }
  .hero-stack .hs-toast b { font-size: .75rem; }
}

/* Hero micro trust row */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--s3) var(--s5);
  margin-top: var(--s5); padding-top: var(--s5);
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-trust span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .8125rem; color: rgba(255,255,255,.78);
}
.hero-trust svg { width: 15px; height: 15px; color: #7FD9FF; flex-shrink: 0; }

/* ---------- Marquee (people strip) ---------- */
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
           mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: var(--s4); width: max-content; }
.mq-card {
  position: relative; width: 230px; aspect-ratio: 4/5; flex-shrink: 0;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  background: var(--navy-light);
}
.mq-card img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; }
.mq-card figcaption {
  position: absolute; inset: auto 0 0 0; padding: 40px 16px 15px; color: #fff;
  background: linear-gradient(to top, rgba(17,25,60,.94) 14%, rgba(17,25,60,.5) 58%, transparent);
}
.mq-card figcaption b { display: block; font-size: .9375rem; margin-bottom: 2px; }
.mq-card figcaption span { font-size: .75rem; color: rgba(255,255,255,.82); line-height: 1.4; display: block; }
@media (max-width: 620px) { .mq-card { width: 180px; } }

/* ---------- Tabs (product toggle) ---------- */
.tabs { display: flex; gap: 4px; padding: 5px; background: var(--navy-light);
        border-radius: 999px; width: fit-content; max-width: 100%; position: relative; }
.tab {
  position: relative; z-index: 1; border: 0; background: none; cursor: pointer;
  font-family: inherit; font-size: .9375rem; font-weight: 600; color: var(--body);
  padding: 11px 26px; border-radius: 999px; white-space: nowrap;
  transition: color .3s var(--ease);
}
.tab[aria-selected="true"] { color: #fff; }
.tab-pill {
  position: absolute; top: 5px; bottom: 5px; z-index: 0; border-radius: 999px;
  background: linear-gradient(145deg, var(--navy), var(--navy-dark));
  box-shadow: 0 4px 12px rgba(35,51,110,.28);
  transition: transform .38s var(--ease), width .38s var(--ease);
}
.tab-panel[hidden] { display: none; }
@media (max-width: 460px) { .tab { padding: 10px 18px; font-size: .875rem; } }

/* ---------- Horizontal stepper (how it works) ---------- */
.stepper { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); position: relative; }
.stepper::before {
  content: ''; position: absolute; left: 8%; right: 8%; top: 20px; height: 2px;
  background: var(--line); z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step .card-num { margin: 0 auto var(--s4); }
.step h3 { font-size: 1rem; margin-bottom: var(--s2); }
.step p { font-size: .875rem; margin: 0; }
@media (max-width: 900px) {
  .stepper { grid-template-columns: repeat(2, 1fr); gap: var(--s6) var(--s5); }
  .stepper::before { display: none; }
}
@media (max-width: 520px) { .stepper { grid-template-columns: 1fr; text-align: left; }
  .step { text-align: left; } .step .card-num { margin: 0 0 var(--s3); } }

/* ---------- Split panel (do / don't) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }
.split-panel { padding: var(--s6); border-radius: var(--radius-lg); }
.split-panel h3 { display: flex; align-items: center; gap: 10px; margin-bottom: var(--s5); }
.split-panel .badge {
  width: 28px; height: 28px; border-radius: 9px; display: inline-flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.split-panel .badge svg { width: 16px; height: 16px; }
.split-do   { background: linear-gradient(160deg, #F1FAF5, #FFFFFF); border: 1px solid #D7EFE2; }
.split-do   .badge { background: var(--success-bg); color: var(--success); }
.split-dont { background: linear-gradient(160deg, #FEF4F4, #FFFFFF); border: 1px solid #F4DADA; }
.split-dont .badge { background: var(--danger-bg); color: var(--danger); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: none; transform: translateY(110%); transition: transform .35s var(--ease);
  box-shadow: 0 -4px 24px rgba(22,32,63,.08);
}
.sticky-cta.show { transform: none; }
.sticky-cta .btn { width: 100%; }
@media (max-width: 760px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 0; }
}

/* ---------- Daily SIP hook band ---------- */
.daily {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: linear-gradient(150deg, #1B2A5E 0%, var(--navy-dark) 55%, #101A40 100%);
  color: #fff; padding: clamp(28px, 5vw, 56px);
}
.daily::after {
  content: ''; position: absolute; right: -12%; top: -34%; width: 52%; padding-bottom: 52%;
  background: radial-gradient(circle, rgba(214,181,133,.3) 0%, rgba(214,181,133,0) 68%);
  border-radius: 50%; pointer-events: none;
}
.daily > * { position: relative; z-index: 1; }
.daily h2 { color: #fff; }
.daily .lede { color: rgba(255,255,255,.82); }
.daily-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--s8); align-items: center; }
@media (max-width: 860px) { .daily-inner { grid-template-columns: 1fr; gap: var(--s6); } }

/* The campaign slogans — big, Devanagari, gold */
.slogan {
  display: block; font-weight: 800; letter-spacing: -.01em; line-height: 1.28;
  font-size: clamp(1.5rem, 3.6vw, 2.375rem);
  background: linear-gradient(92deg, #F0D9AE, var(--gold) 55%, #EBCF9C);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: var(--s2);
}
.slogan-sm {
  display: block; font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 600;
  color: rgba(255,255,255,.9); margin-bottom: var(--s5); line-height: 1.4;
}

/* ₹10 → ₹300 → ₹3,650 ladder */
.ladder { display: grid; gap: var(--s3); }
.rung {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: var(--s4) var(--s5);
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.rung:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.rung .k { font-size: .8125rem; color: rgba(255,255,255,.68); }
.rung .v { font-size: clamp(1.25rem, 2.6vw, 1.75rem); font-weight: 800; color: var(--gold);
           font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.rung:last-child { background: rgba(214,181,133,.16); border-color: rgba(214,181,133,.4); }

/* ---------- Velvet Investing lockup ---------- */
.velvet-lockup {
  display: inline-flex; flex-direction: column; gap: 6px;
  margin-bottom: var(--s4); transition: opacity .25s var(--ease);
}
.velvet-lockup:hover { text-decoration: none; opacity: .82; }
.velvet-lockup .cap {
  font-size: .6875rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.velvet-lockup img { height: 26px; width: auto; }
.site-footer .velvet-lockup .cap { color: rgba(255,255,255,.5); }
.hero .velvet-lockup .cap { color: rgba(255,255,255,.55); }

/* ---------- Stat block ---------- */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
@media (max-width: 620px) { .stat-row { grid-template-columns: 1fr; gap: var(--s4); } }
.stat b { display: block; font-size: clamp(1.75rem, 3.4vw, 2.5rem); font-weight: 800;
          color: var(--navy); line-height: 1.05; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.stat span { font-size: .875rem; color: var(--muted); }

/* ---------- Utilities ---------- */
.mt0 { margin-top: 0; } .mb0 { margin-bottom: 0; } .mt1 { margin-top: 1rem; }
.mt2 { margin-top: 2rem; } .mb2 { margin-bottom: 2rem; } .mb1 { margin-bottom: 1rem; }
.small { font-size: .875rem; } .xsmall { font-size: .8125rem; }
.muted { color: var(--muted); }
.pill {
  display: inline-block; background: var(--navy-light); color: var(--navy);
  font-size: .75rem; font-weight: 600; padding: 5px 12px; border-radius: 999px;
}
.pill-sky { background: var(--sky-light); color: var(--sky-dark); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
[hidden] { display: none !important; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* Print */
@media print {
  .site-header, .site-footer, .btn, .nav-toggle, .lang-select { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .page-head { background: none; border: 0; }
}
