:root {
  --bg: #06070d;
  --bg-2: #0c0f1b;
  --card: #12162273;
  --line: rgba(255, 255, 255, 0.09);
  --amber: #ffb84f;
  --amber-dim: #ffb84f33;
  --accent: #ff5c62;
  --text: #ffffff;
  --muted: #a6adc2;
  --radius: 20px;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Noto Sans", "Noto Sans Devanagari", "Nirmala UI", "Mangal",
    "Kohinoor Devanagari", "Devanagari Sangam MN", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* language layers: English is the fallback when JS never runs */
html[data-lang="hi"] .i18n-en { display: none !important; }
html:not([data-lang="hi"]) .i18n-hi { display: none !important; }

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  flex: none;
}

.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 7px 13px;
  cursor: pointer;
  line-height: 1.2;
}

.lang-switch button:hover { color: var(--text); }
.lang-switch button.on { background: var(--amber); color: #1a1005; }

.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(760px 520px at 78% 8%, rgba(255, 184, 79, 0.16), transparent 70%),
    radial-gradient(680px 520px at 12% 30%, rgba(255, 92, 98, 0.12), transparent 70%);
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

/* ---------------------------------------------------------------- header */
header.top {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(6, 7, 13, 0.72);
  border-bottom: 1px solid var(--line);
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand span { font-weight: 800; letter-spacing: -0.02em; font-size: 19px; }

.top nav { display: flex; gap: 20px; font-size: 15px; }
.top nav a { color: var(--muted); text-decoration: none; }
.top nav a:hover { color: var(--text); }

/* ---------------------------------------------------------------- hero */
.hero {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 54px;
  align-items: center;
  padding: 74px 0 60px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 184, 79, 0.45);
  background: rgba(255, 184, 79, 0.08);
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 15px;
  border-radius: 999px;
}

.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }

h1 {
  font-size: clamp(38px, 5.6vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 22px 0 0;
  font-weight: 800;
}

h1 em { font-style: normal; color: var(--amber); }

.lead {
  color: var(--muted);
  font-size: 19px;
  margin: 20px 0 0;
  max-width: 34em;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: center; }

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--amber);
  color: #1a1005;
  text-decoration: none;
  font-weight: 800;
  padding: 15px 26px 15px 22px;
  border-radius: 15px;
  box-shadow: 0 16px 40px rgba(255, 184, 79, 0.24);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-store:hover { transform: translateY(-2px); box-shadow: 0 20px 48px rgba(255, 184, 79, 0.32); }
.btn-store svg { width: 22px; height: 22px; flex: none; }
.btn-store small { display: block; font-size: 11px; font-weight: 700; opacity: 0.72; letter-spacing: 0.06em; }
.btn-store b { display: block; font-size: 17px; line-height: 1.2; }

.fineprint { color: #7f8699; font-size: 14px; margin-top: 18px; }

.phone-shot {
  justify-self: center;
  width: min(310px, 74vw);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  display: block;
}

/* ---------------------------------------------------------------- sections */
section { padding: 56px 0; }

.eyebrow {
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(27px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 12px 0 0;
  font-weight: 800;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}

.card .num {
  font-size: 15px;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: 0.06em;
}

.card h3 { margin: 12px 0 8px; font-size: 20px; letter-spacing: -0.02em; }
.card p { margin: 0; color: var(--muted); font-size: 16px; }

.terms-box {
  border: 1px solid rgba(255, 184, 79, 0.32);
  background: linear-gradient(180deg, rgba(255, 184, 79, 0.09), rgba(255, 184, 79, 0.03));
  border-radius: var(--radius);
  padding: 30px 28px;
  margin-top: 34px;
}

.terms-box h3 { margin: 0 0 6px; font-size: 24px; letter-spacing: -0.02em; }
.terms-box > p { margin: 0 0 20px; color: var(--muted); }

.terms-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.terms-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.terms-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.terms-list b { min-width: 190px; font-weight: 700; }
.terms-list span { color: var(--muted); }

details {
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 18px 22px;
  margin-top: 12px;
  background: rgba(255, 255, 255, 0.02);
}
details summary { cursor: pointer; font-weight: 700; list-style: none; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: "+"; float: right; color: var(--amber); font-weight: 800; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: 14px 0 0; font-size: 16px; }

/* ---------------------------------------------------------------- footer */
footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 38px 0 120px;
  color: var(--muted);
  font-size: 15px;
}

.foot-links { display: flex; flex-wrap: wrap; gap: 22px; margin-bottom: 16px; }
footer a { color: var(--muted); }
footer a:hover { color: var(--text); }
footer .fine { color: #6e7488; font-size: 13px; }

/* ---------------------------------------------------------------- legal pages */
.legal { padding: 46px 0 40px; max-width: 780px; }
.legal h1 { font-size: clamp(30px, 4vw, 44px); }
.legal h2 { font-size: 23px; margin-top: 40px; }
.legal p, .legal li { color: #c4cadb; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 9px; }
.updated { color: #7f8699; font-size: 15px; margin-top: 14px; }
.note {
  border-left: 3px solid var(--amber);
  background: rgba(255, 184, 79, 0.07);
  padding: 14px 20px;
  border-radius: 0 12px 12px 0;
  margin: 26px 0;
  font-size: 16px;
}
.back { display: inline-block; margin-bottom: 8px; color: var(--amber); text-decoration: none; font-weight: 700; font-size: 15px; }

/* ---------------------------------------------------------------- mobile bar */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(6, 7, 13, 0), rgba(6, 7, 13, 0.96) 34%);
  display: none;
}
.sticky-cta .btn-store { width: 100%; justify-content: center; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 48px 0 34px; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .terms-list li { flex-direction: column; gap: 4px; }
  .terms-list b { min-width: 0; }
  .top nav { display: none; }
  .sticky-cta { display: block; }
  footer { padding-bottom: 130px; }
  .btn-store { width: 100%; justify-content: center; }
}
