/* ============================================================
   Reonix — shared styles for sub-pages
   (Privacy Policy, Terms of Service, Contact)
   ============================================================ */
:root {
  --bg: #0E2A23;
  --bg-deep: #0A211B;
  --band: #183539;
  --lime: #C8EC4B;
  --lime-hover: #D2F25E;
  --teal: #3FE0C5;
  --cream: #F3F0E6;
  --cream-muted: #AEB8B0;
  --cream-faint: #6E7C73;
  --ink: #16352B;
  --ink-soft: #2C4A33;
  --border: rgba(243, 240, 230, 0.10);
  --border-strong: rgba(243, 240, 230, 0.22);
  --on-lime: #0A211B;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --gutter: clamp(18px, 4vw, 48px);
  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #fff; }
body {
  color: var(--ink);
  font-family: var(--sans);
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--lime); color: var(--on-lime); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }

/* ───────── NAV ───────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--border);
  background: var(--band);
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}
.nav.scrolled {
  background: rgba(24, 53, 57, 0.82);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom-color: var(--border-strong);
}
.nav-inner {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.brand { display: inline-flex; align-items: center; height: 30px; }
.brand img { height: 24px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links a {
  font-size: 14.5px;
  color: var(--cream-muted);
  transition: color 120ms ease;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--cream); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  padding: 11px 20px;
  border-radius: 9999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cream);
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}
.nav-cta:hover {
  border-color: var(--cream-muted);
  background: rgba(243,240,230,0.05);
  transform: translateY(-1px);
}
.nav-cta .wa { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }
@media (max-width: 820px) { .nav-links { display: none; } }

/* ───────── PAGE TITLE BAND ───────── */
.page-band {
  position: relative;
  background: var(--band);
  overflow: hidden;
  padding: clamp(48px, 9vh, 92px) 0 clamp(54px, 10vh, 104px);
}
.page-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(200,236,75,0.30) 1.3px, transparent 1.4px);
  background-size: 22px 22px;
  background-position: center top;
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 6%, #000 0%, transparent 60%);
  mask-image: radial-gradient(ellipse 60% 80% at 50% 6%, #000 0%, transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.page-band h1 {
  position: relative;
  margin: 0;
  text-align: center;
  font-family: var(--sans);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.page-band .crumb {
  position: relative;
  display: block;
  text-align: center;
  margin: 0 0 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

/* ───────── LEGAL CONTENT ───────── */
.legal {
  background: #fff;
  padding: clamp(56px, 9vh, 104px) 0 clamp(64px, 10vh, 120px);
}
.legal-inner { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.legal section { margin: 0 0 clamp(34px, 5vh, 52px); }
.legal h2 {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.legal p { margin: 0 0 14px; color: #4A5C53; font-size: 16px; line-height: 1.7; text-wrap: pretty; }
.legal p:last-child { margin-bottom: 0; }
.legal ul {
  margin: 0 0 14px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.legal li { color: #4A5C53; font-size: 16px; line-height: 1.55; }
.legal li::marker { color: #9AA89F; }
.legal a.inline { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.contact-block { color: #4A5C53; font-size: 16px; line-height: 1.7; }
.contact-block strong { color: var(--ink); font-weight: 600; }
.updated {
  display: inline-block;
  margin-top: 8px;
  padding: 7px 14px;
  border-radius: 9999px;
  background: rgba(200,236,75,0.22);
  color: #4F5E1E;
  font-size: 13px;
  font-weight: 500;
}

/* ───────── FOOTER (yellow card) ───────── */
.site-footer {
  background: var(--band);
  color: #C9D6CF;
  padding: clamp(20px, 3vw, 36px) clamp(16px, 3vw, 36px) 0;
  overflow: hidden;
}
.footer-card { background: #F8FF7F; color: var(--ink); border-radius: 28px; padding: clamp(36px, 4.5vw, 64px); }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); }
.footer-brand .logo { height: 42px; width: auto; display: block; }
.footer-brand .blurb { margin: 28px 0 0; font-size: clamp(15px, 1.4vw, 17px); line-height: 1.5; color: var(--ink-soft); max-width: 34ch; }
.footer-brand .gstin { margin: 30px 0 0; display: inline-flex; align-items: center; gap: 9px; font-size: 15px; color: var(--ink-soft); }
.footer-social { margin-top: 26px; display: flex; gap: 14px; }
.footer-social a { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--lime); display: grid; place-items: center; transition: transform 140ms ease, background 140ms ease; }
.footer-social a:hover { transform: translateY(-2px); background: #0F2620; }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-col h4 { margin: 0; font-family: var(--sans); font-optical-sizing: auto; font-weight: 600; font-size: clamp(18px, 1.6vw, 21px); letter-spacing: -0.01em; color: var(--ink); }
.footer-contact { margin-top: clamp(36px, 6vw, 88px); }
.footer-contact .label { font-family: var(--sans); font-optical-sizing: auto; font-weight: 600; font-size: 18px; color: var(--ink); }
.footer-contact .lines { margin-top: 12px; display: flex; flex-direction: column; gap: 4px; font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.footer-contact .lines a { color: var(--ink-soft); }
.footer-contact .lines a:hover { color: var(--ink); }
.footer-bottom {
  max-width: var(--max);
  margin: clamp(28px, 4vw, 48px) auto 0;
  padding: 30px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(201,214,207,0.16);
  border-top: 1px solid rgba(201,214,207,0.16);
  flex-wrap: wrap;
}
.footer-bottom .copy { font-size: 14px; color: #6E817A; }
.footer-bottom .legal { display: flex; gap: 40px; background: none; padding: 0; }
.footer-bottom .legal a { font-size: 14px; color: #8FA197; transition: color 120ms ease; }
.footer-bottom .legal a:hover { color: #C9D6CF; }
.footer-watermark { max-width: var(--max); margin: 0 auto; padding: clamp(20px, 3vw, 40px) var(--gutter) 0; overflow: hidden; }
.footer-watermark img { width: 100%; display: block; opacity: 0.6; }
@media (max-width: 760px) {
  .footer-top { grid-template-columns: 1fr; gap: 0; }
  .footer-divider { display: block; height: 1px; background: rgba(22,53,43,0.18); margin: 28px 0; }
  .footer-cols { display: flex; gap: 64px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 22px; }
  .footer-bottom .legal { flex-direction: column; gap: 18px; }
}
@media (min-width: 761px) { .footer-divider { display: none; } }
