/* ============================================================
   VitalMaa — launch page
   Dark, saffron-lit, typographic. No product imagery.
   ============================================================ */

:root {
  --saffron:  #F18635;   /* logo core            */
  --saffron-2:#E2711F;   /* deeper, for panels   */
  --saffron-3:#F8C094;   /* logo highlight tone  */
  --ink:      #0A0908;
  --ink-2:    #121010;
  --ink-3:    #1A1716;
  --line:     rgba(253,251,248,.10);
  --line-2:   rgba(253,251,248,.06);
  --white:    #FDFBF8;
  --grey:     #A29B93;
  --grey-2:   #6E675F;

  /* Playfair and DM Sans carry no Devanagari or Telugu, so the Noto faces are
     the real typeface whenever the page is switched to हिंदी or తెలుగు. */
  --serif: 'Playfair Display', 'Noto Serif Devanagari', 'Noto Serif Telugu', Georgia, serif;
  --sans:  'DM Sans', 'Noto Sans Devanagari', 'Noto Sans Telugu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1180px;
  --ease: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3 { font-family: var(--serif); font-weight: 700; line-height: .98; margin: 0; letter-spacing: -.035em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; height: auto; display: block; }
:focus-visible { outline: 2px solid var(--saffron); outline-offset: 4px; border-radius: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; position: relative; z-index: 2; }
section { position: relative; }

.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; }

/* ============================================================
   header
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.solid {
  background: rgba(10,9,8,.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom-color: var(--line-2);
}
.site-header .wrap { display: flex; align-items: center; gap: 16px; min-height: 74px; }
/* Header CTA is deliberately outline-only: a solid saffron pill here has ~10x
   the area of the logo mark and visually swallows it. Saffron in the header
   belongs to the logo alone. */
.site-header .btn { background: transparent; color: var(--white);
                    box-shadow: inset 0 0 0 1.5px rgba(253,251,248,.22); }
.site-header .btn:hover { background: rgba(253,251,248,.07); transform: none;
                          box-shadow: inset 0 0 0 1.5px rgba(253,251,248,.45); }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 1.38rem; font-weight: 700; letter-spacing: -.02em; }
.brand img { width: 38px; height: 38px; border-radius: 11px;
             box-shadow: 0 0 0 1px rgba(248,192,148,.22), 0 4px 18px -4px rgba(241,134,53,.5); }
.header-cta { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* ---- language switcher -------------------------------------------------
   The site is the demo: one tap turns the whole page into हिंदी or తెలుగు,
   which is the claim the app makes. Sits left of the CTA in the header. */
.langsw { display: inline-flex; gap: 2px; padding: 3px;
          border: 1px solid var(--line); border-radius: 999px; }
.langsw button {
  min-width: 46px; height: 40px; padding: 0 12px;
  border: 0; border-radius: 999px; background: transparent; cursor: pointer;
  font-family: var(--sans); font-size: .86rem; font-weight: 700; line-height: 1.3;
  color: var(--grey); transition: background .2s, color .2s;
}
.langsw button:hover { color: var(--white); background: rgba(253,251,248,.07); }
.langsw button[aria-pressed="true"] { background: var(--saffron); color: #1A1005; }
@media (max-width: 560px) {
  /* On a phone the CTA and the switcher cannot both fit — the switcher wins,
     since every section below still ends in a "get early access" button. */
  .site-header .header-cta .btn { display: none; }
  .langsw button { min-width: 44px; padding: 0 9px; }
}

/* Devanagari and Telugu sit lower and taller than Latin; the display sizes
   here are tuned for Playfair, so give the Indic faces a little more room. */
html[data-lang="hi"] .big, html[data-lang="te"] .big,
html[data-lang="hi"] h1,   html[data-lang="te"] h1 { line-height: 1.16; letter-spacing: -.02em; }
html[data-lang="hi"] .fig b, html[data-lang="te"] .fig b { line-height: 1.18; }
html[data-lang="hi"] .marquee span, html[data-lang="te"] .marquee span { font-size: clamp(1.02rem, 2.1vw, 1.5rem); }

/* ============================================================
   buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 54px; padding: 0 30px; border: 0; cursor: pointer;
  border-radius: 999px; font-family: var(--sans);
  font-size: 1rem; font-weight: 700; letter-spacing: -.01em;
  background: var(--saffron); color: #1A0E04;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  box-shadow: 0 0 0 0 rgba(241,134,53,.5);
}
.btn:hover { transform: translateY(-2px); background: var(--saffron-3); box-shadow: 0 10px 40px -8px rgba(241,134,53,.6); }
.btn:active { transform: translateY(0); }
.btn[disabled] { opacity:.55; cursor: not-allowed; transform:none; }
.btn-sm { min-height: 44px; padding: 0 20px; font-size: .92rem; }
.btn-line {
  background: transparent; color: var(--white);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-line:hover { background: rgba(253,251,248,.06); box-shadow: inset 0 0 0 1.5px rgba(253,251,248,.3); }
.btn .ig { width: 20px; height: 20px; flex: none; }

/* ============================================================
   hero
   ============================================================ */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding: 112px 0 72px; overflow: hidden;
}
/* saffron light bleeding up from below the fold */
.hero::before {
  content:''; position: absolute; z-index: 0; pointer-events: none;
  left: 50%; bottom: -46%; transform: translateX(-50%);
  width: min(1500px, 190vw); aspect-ratio: 1.35;
  background: radial-gradient(ellipse at center,
    rgba(241,134,53,.34) 0%, rgba(241,134,53,.13) 34%, transparent 66%);
  animation: bloom 11s ease-in-out infinite;
}
@keyframes bloom { 0%,100% { opacity:.75; transform:translateX(-50%) scale(1); }
                   50%      { opacity:1;   transform:translateX(-50%) scale(1.09); } }
.hero::after {
  content:''; position:absolute; inset:0; z-index:1; pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  opacity:.045; mix-blend-mode:screen;
}

.kicker {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: .74rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
  color: var(--saffron-3); margin-bottom: 26px;
}
.kicker { align-items: flex-start; }
.kicker .live { margin-top: .42em; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--saffron); box-shadow: 0 0 0 0 rgba(241,134,53,.7); animation: ping 2.4s infinite; }
@keyframes ping { 0%{box-shadow:0 0 0 0 rgba(241,134,53,.65);} 70%{box-shadow:0 0 0 11px rgba(241,134,53,0);} 100%{box-shadow:0 0 0 0 rgba(241,134,53,0);} }

.hero h1 {
  font-size: clamp(2.65rem, 7.4vw, 6.6rem);
  letter-spacing: -.042em; line-height: .92; text-transform: uppercase;
  max-width: 15ch;
}
.hero h1 .glow { color: var(--saffron); text-shadow: 0 0 62px rgba(241,134,53,.55); }
.hero .sub {
  margin-top: 28px; max-width: 42ch;
  font-size: clamp(1.08rem, 1.9vw, 1.32rem); color: var(--grey); line-height: 1.55;
}
.hero .sub b { color: var(--white); font-weight: 500; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 13px; align-items: center; }
.hero-note { margin-top: 20px; font-size: .87rem; color: var(--grey-2); letter-spacing: .01em; }

/* ============================================================
   audience marquee
   ============================================================ */
.strip { border-block: 1px solid var(--line-2); padding: 30px 0; overflow: hidden; background: var(--ink-2); }
/* Duration tracks the strip's width — add items and this must grow with them,
   or the same 42s just scrolls everything past twice as fast. */
.marquee { display: flex; gap: 0; width: max-content; animation: slide 80s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee span {
  font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.75rem);
  padding: 0 30px; white-space: nowrap; color: var(--white);
  display: inline-flex; align-items: center; gap: 30px;
}
.marquee span::after { content:''; width: 5px; height: 5px; border-radius: 50%; background: var(--saffron); flex: none; }

/* ============================================================
   generic section rhythm
   ============================================================ */
.band { padding: clamp(88px, 13vw, 176px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: 26px;
}
.eyebrow::before { content:''; width: 22px; height: 1.5px; background: var(--saffron); }

.big {
  font-size: clamp(2.3rem, 6.4vw, 5.3rem);
  line-height: .96; letter-spacing: -.04em; max-width: 17ch;
}
.big .glow { color: var(--saffron); }
.lede { margin-top: 26px; font-size: clamp(1.04rem, 1.6vw, 1.22rem); color: var(--grey); max-width: 52ch; line-height: 1.6; }
.center { text-align: center; }
/* `.center` may sit on a wrapper OR on the element itself — match both, or a
   max-width'd heading keeps its text centred while the box hugs the left. */
.center .big, .center .lede,
.big.center, .lede.center { margin-inline: auto; }
.center .eyebrow { justify-content: center; }

/* ============================================================
   problem — hard-hitting lines
   ============================================================ */
.hits { margin-top: clamp(46px, 6vw, 74px); display: grid; gap: 0; border-top: 1px solid var(--line-2); }
.hit {
  padding: 30px 0; border-bottom: 1px solid var(--line-2);
  display: grid; grid-template-columns: 66px 1fr; gap: 22px; align-items: baseline;
}
.hit .n { font-family: var(--serif); font-size: 1.02rem; color: var(--saffron); letter-spacing: .08em; }
.hit p { font-size: clamp(1.1rem, 2.2vw, 1.62rem); font-family: var(--serif); line-height: 1.3; letter-spacing: -.02em; color: var(--white); }
.hit p em { font-style: normal; color: var(--grey-2); }
@media (max-width: 620px) { .hit { grid-template-columns: 42px 1fr; gap: 14px; } }

/* ============================================================
   saffron slam panel
   ============================================================ */
.slam { background: var(--saffron-2); color: #200E02; overflow: hidden; }
.slam::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 22% 0%, rgba(255,255,255,.3) 0%, transparent 55%);
  pointer-events: none;
}
.slam .eyebrow { color: #4A1D02; }
.slam .eyebrow::before { background: #4A1D02; }
.slam .big { color: #180A01; }
.slam .lede { color: rgba(32,14,2,.78); }
.slam .btn { background: #180A01; color: var(--saffron-3); }
.slam .btn:hover { background: #000; box-shadow: 0 10px 40px -10px rgba(0,0,0,.55); }

/* ============================================================
   feature doors — names only
   ============================================================ */
.doors { margin-top: clamp(46px, 6vw, 76px); display: grid; gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: 20px; overflow: hidden; grid-template-columns: repeat(auto-fit, minmax(min(268px, 100%), 1fr)); }
.door {
  background: var(--ink); padding: 38px 32px 42px;
  transition: background .4s var(--ease);
  position: relative; min-height: 196px;
  display: flex; flex-direction: column;
}
.door:hover { background: var(--ink-3); }
.door .gl { width: 42px; height: 42px; margin-bottom: 26px; color: var(--saffron); }
.door .gl svg { width: 100%; height: 100%; }
.door h3 { font-size: 1.42rem; letter-spacing: -.025em; line-height: 1.1; }
.door > span { margin-top: 10px; font-size: .93rem; color: var(--grey-2); }
.door::after {
  content:''; position:absolute; left:0; bottom:0; height:2px; width:0;
  background: var(--saffron); transition: width .5s var(--ease);
}
.door:hover::after { width: 100%; }

/* ============================================================
   numbers
   ============================================================ */
.figs { margin-top: clamp(46px, 6vw, 76px); display: grid; gap: 1px; background: var(--line-2); border-block: 1px solid var(--line-2); grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); }
.fig { background: var(--ink); padding: 40px 26px; text-align: center; }
.fig b { display: block; font-family: var(--serif); font-size: clamp(2.3rem, 4.6vw, 3.5rem); font-weight: 700; letter-spacing: -.04em; line-height: 1; color: var(--white); }
.fig b .u { color: var(--saffron); }
.fig > span { display: block; margin-top: 13px; font-size: .88rem; color: var(--grey-2); line-height: 1.45; }
.fig b .u { font-size: .62em; }
.fig b.all { color: var(--saffron); }

/* ============================================================
   band-or-no-band
   ============================================================ */
.ways { margin-top: clamp(40px, 5vw, 62px); display: grid; gap: 20px; text-align: left;
        grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); }
.way { border: 1px solid var(--line-2); border-radius: 20px; padding: 36px 34px; background: var(--ink-2); }
.way .tag { font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
            color: var(--grey-2); margin-bottom: 16px; }
.way h3 { font-size: clamp(1.45rem, 2.6vw, 1.95rem); letter-spacing: -.03em; margin-bottom: 14px; }
.way p { color: var(--grey); font-size: 1rem; line-height: 1.6; }
/* the "with a band" side is the upgrade — light it up */
.way.hot { border-color: rgba(241,134,53,.4); background:
           linear-gradient(160deg, rgba(241,134,53,.12) 0%, rgba(241,134,53,.03) 55%, transparent 100%); }
.way.hot .tag { color: var(--saffron); }
.way.hot h3 { color: var(--saffron-3); }

/* ============================================================
   waitlist
   ============================================================ */
.join { padding: clamp(88px, 13vw, 168px) 0; text-align: center; overflow: hidden; }
.join::before {
  content:''; position:absolute; z-index:0; pointer-events:none;
  left:50%; top:50%; transform:translate(-50%,-50%);
  width:min(1200px,170vw); aspect-ratio:1;
  background: radial-gradient(circle, rgba(241,134,53,.2) 0%, transparent 62%);
}
.capture { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; max-width: 580px; margin: 40px auto 18px; }
.capture input {
  flex: 1 1 180px; min-height: 54px; padding: 0 22px;
  border-radius: 999px; border: 1.5px solid var(--line);
  background: rgba(253,251,248,.05); color: var(--white);
  font-family: var(--sans); font-size: 1rem;
}
.capture input::placeholder { color: var(--grey-2); }
.capture input:focus { outline: none; border-color: var(--saffron); background: rgba(253,251,248,.08); }
.capture .btn { flex: 1 1 100%; }
@media (min-width: 600px) { .capture .btn { flex: 0 0 auto; } }
.micro { font-size: .85rem; color: var(--grey-2); }

.thanks { max-width: 540px; margin: 34px auto 0; padding: 36px 32px; border-radius: 22px; background: rgba(241,134,53,.1); border: 1px solid rgba(241,134,53,.32); }
.thanks h3 { font-size: 1.6rem; margin-bottom: 12px; }
.thanks p { color: var(--grey); font-size: .98rem; }
.share { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; margin-top: 22px; }
.share a, .share button {
  min-height: 48px; padding: 0 22px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--line); background: transparent; color: var(--white);
  font-family: var(--sans); font-weight: 700; font-size: .93rem;
  display: inline-flex; align-items: center; gap: 8px;
}
.share a:hover, .share button:hover { background: rgba(253,251,248,.07); }
.share a.wa { background: #25D366; border-color: #25D366; color: #062511; }

/* ============================================================
   footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--line-2); padding: 60px 0 40px; background: var(--ink-2); }
.foot { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between; }
.foot .brand { font-size: 1.15rem; }
.foot nav { display: flex; flex-wrap: wrap; gap: 22px; font-size: .9rem; }
.foot nav a { color: var(--grey-2); }
.foot nav a:hover { color: var(--saffron); }
.legal-note { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line-2); font-size: .82rem; color: var(--grey-2); line-height: 1.6; max-width: 78ch; }
.legal-note b { color: var(--grey); }
.copy { margin-top: 22px; font-size: .82rem; color: var(--grey-2); }

/* ============================================================
   legal pages (privacy / terms / support)
   ============================================================ */
.legal { padding: 140px 0 100px; }
.legal .doc { max-width: 780px; margin-inline: auto; }
.legal h1 { font-size: clamp(2.1rem,5vw,3.2rem); margin-bottom: .5em; letter-spacing: -.035em; }
.legal h2 { font-size: clamp(1.28rem,2.4vw,1.7rem); margin: 2.2em 0 .6em; letter-spacing: -.025em; }
.legal h3 { font-size: 1.12rem; margin: 1.8em 0 .5em; }
.legal p, .legal li { color: var(--grey); margin-bottom: 1em; }
.legal a { color: var(--saffron); }
.legal a:hover { text-decoration: underline; }
.legal strong { color: var(--white); }
.legal .meta { font-size: .9rem; padding: 14px 20px; background: var(--ink-3); border: 1px solid var(--line-2); border-radius: 12px; }
.legal blockquote { margin: 1.4em 0; padding: 20px 24px; background: var(--ink-3); border: 1px solid var(--line-2); border-left: 3px solid var(--saffron); border-radius: 12px; }
.legal table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: .89rem; display: block; overflow-x: auto; }
.legal th, .legal td { padding: 12px 14px; border: 1px solid var(--line-2); text-align: left; vertical-align: top; color: var(--grey); }
.legal th { background: var(--ink-3); color: var(--white); font-weight: 700; }
.legal ul, .legal ol { padding-left: 22px; }

/* ============================================================
   reveal
   ============================================================ */
.js .rv { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .rv { opacity: 1; transform: none; } }
