:root {
  --max: 1180px;
  --bg0: #fff7ef;
  --bg1: #fffdfb;
  --card: rgba(255, 255, 255, 0.86);
  --card2: rgba(255, 255, 255, 0.72);
  --ink: #121212;
  --muted: rgba(18, 18, 18, 0.66);
  --border: rgba(18, 18, 18, 0.12);
  --border2: rgba(18, 18, 18, 0.08);
  --saffron: #ff7a18;
  --saffron2: #ffb24a;
  --orangeDeep: #ff4d00;
  --gold: #f7c948;
  --shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
  --shadow2: 0 14px 34px rgba(17, 24, 39, 0.1);
  --radius: 18px;
  --radius2: 26px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 600px at 5% -10%, rgba(255, 122, 24, 0.35), transparent 60%),
    radial-gradient(950px 700px at 105% 15%, rgba(255, 178, 74, 0.25), transparent 58%),
    radial-gradient(900px 650px at 50% 120%, rgba(247, 201, 72, 0.2), transparent 60%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 55%, var(--bg1) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 251, 0.72);
  border-bottom: 1px solid var(--border2);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.logo {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  box-shadow: 0 16px 34px rgba(255, 122, 24, 0.25);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
  letter-spacing: -0.2px;
}
.brand__name {
  font-weight: 950;
  letter-spacing: -0.6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand__sub {
  font-size: 12px;
  color: var(--muted);
  font-weight: 750;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.navLink {
  font-weight: 850;
  font-size: 13px;
  color: rgba(18, 18, 18, 0.72);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.navLink:hover {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.55);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
  font-weight: 900;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  border: none;
  background: linear-gradient(135deg, var(--saffron), var(--orangeDeep));
  color: #fff;
}
.btn--ghost {
  background: transparent;
  box-shadow: none;
}
.btn--sm {
  padding: 9px 12px;
  font-size: 13px;
}

/* Sections */
.section {
  padding: 54px 0;
}
.section--tight {
  padding: 34px 0;
}
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.section__title {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.9px;
  line-height: 1.05;
}
.section__sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 720;
  line-height: 1.55;
  max-width: 62ch;
}

/* Hero */
.hero {
  padding: 46px 0 22px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: center;
}
.heroCard {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 24px;
  overflow: hidden;
  position: relative;
}
.heroCard:before {
  content: "";
  position: absolute;
  inset: -220px -240px auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 122, 24, 0.28), transparent 60%);
  transform: rotate(12deg);
  pointer-events: none;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  color: rgba(18, 18, 18, 0.8);
}
.badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  box-shadow: 0 10px 22px rgba(255, 122, 24, 0.22);
}
.hero__title {
  margin: 14px 0 0;
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: -1.25px;
}
.hero__title b {
  color: var(--saffron);
}
.hero__sub {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 740;
  line-height: 1.55;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero__metaRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.metaPill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(18, 18, 18, 0.74);
}
.metaPill__k {
  color: rgba(18, 18, 18, 0.85);
}

/* Phone mock */
.phoneWrap {
  position: relative;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.64));
  border: 1px solid rgba(18, 18, 18, 0.12);
  box-shadow: var(--shadow);
  padding: 16px;
  overflow: hidden;
}
.phoneWrap:before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 122, 24, 0.35), transparent 70%);
}
.phone {
  position: relative;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.12);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.1);
}
.phone__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px 10px;
  border-bottom: 1px solid rgba(18, 18, 18, 0.06);
  background: linear-gradient(180deg, rgba(255, 122, 24, 0.08), rgba(255, 122, 24, 0.02));
}
.phone__title {
  font-weight: 950;
  letter-spacing: -0.4px;
}
.avatar {
  width: 30px;
  height: 30px;
  border-radius: 99px;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.34), rgba(247, 201, 72, 0.2));
  border: 1px solid rgba(18, 18, 18, 0.12);
  display: grid;
  place-items: center;
  font-weight: 950;
  color: rgba(18, 18, 18, 0.7);
}
.filters {
  display: flex;
  gap: 10px;
  padding: 12px;
  overflow: hidden;
}
.filterChip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 66px;
  padding: 10px 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  background: rgba(255, 250, 245, 0.92);
  font-weight: 850;
  font-size: 12px;
  color: rgba(18, 18, 18, 0.8);
}
.filterChip--active {
  background: rgba(255, 122, 24, 0.1);
  border-color: rgba(255, 122, 24, 0.35);
  box-shadow: 0 18px 34px rgba(255, 122, 24, 0.16);
}
.filterIcon {
  width: 34px;
  height: 34px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.28), rgba(247, 201, 72, 0.18));
  border: 1px solid rgba(18, 18, 18, 0.1);
}
.filterIcon--om {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.9), rgba(247, 201, 72, 0.62));
  color: #fff;
  font-weight: 950;
}
.phoneBody {
  padding: 0 12px 12px;
}
.miniHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0 10px;
}
.miniHead__t {
  font-weight: 950;
}
.miniHead__s {
  font-weight: 850;
  font-size: 12px;
  color: rgba(18, 18, 18, 0.55);
}
.miniGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.thumb {
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  background:
    radial-gradient(120px 120px at 30% 20%, rgba(255, 122, 24, 0.32), transparent 60%),
    radial-gradient(140px 140px at 70% 40%, rgba(247, 201, 72, 0.24), transparent 60%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.04));
  border: 1px solid rgba(18, 18, 18, 0.1);
  position: relative;
  overflow: hidden;
}
.thumb:after {
  content: "ॐ";
  position: absolute;
  right: 10px;
  top: 10px;
  width: 26px;
  height: 26px;
  border-radius: 99px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(18, 18, 18, 0.1);
  font-weight: 950;
  color: rgba(18, 18, 18, 0.75);
}
.statusRow {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 12px;
  align-items: center;
  background: rgba(255, 250, 245, 0.74);
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 18px;
  padding: 10px;
}
.statusCover {
  height: 84px;
  border-radius: 16px;
  background:
    radial-gradient(90px 90px at 30% 30%, rgba(255, 122, 24, 0.36), transparent 60%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.04));
  border: 1px solid rgba(18, 18, 18, 0.1);
}
.statusMeta {
  min-width: 0;
}
.statusTitle {
  font-weight: 950;
  letter-spacing: -0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.statusStats {
  margin-top: 6px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(18, 18, 18, 0.62);
  font-weight: 850;
  font-size: 12px;
}
.navBar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 10px 10px 12px;
  border-top: 1px solid rgba(18, 18, 18, 0.06);
  background: rgba(255, 255, 255, 0.95);
}
.navItem {
  display: grid;
  place-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 850;
  color: rgba(18, 18, 18, 0.62);
}
.navItem__dot {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(18, 18, 18, 0.06);
}
.navItem--active {
  color: rgba(18, 18, 18, 0.88);
}
.navItem--active .navItem__dot {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.55), rgba(247, 201, 72, 0.28));
}

/* Feature grid */
.grid3 {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow2);
}
.card--soft {
  background: var(--card2);
}
.feature {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: start;
}
.featureIcon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.22), rgba(247, 201, 72, 0.16));
  border: 1px solid rgba(18, 18, 18, 0.12);
  color: rgba(18, 18, 18, 0.8);
  font-weight: 950;
}
.feature h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.25px;
}
.feature p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 670;
  line-height: 1.55;
}

/* Two column */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 18px;
}
.stack {
  display: grid;
  gap: 12px;
}
.list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  background: rgba(255, 255, 255, 0.6);
  color: rgba(18, 18, 18, 0.76);
  font-weight: 750;
}
.checkDot {
  width: 18px;
  height: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.55), rgba(247, 201, 72, 0.26));
  box-shadow: 0 10px 20px rgba(255, 122, 24, 0.14);
}

/* CTA */
.cta {
  background: linear-gradient(135deg, rgba(255, 122, 24, 0.18), rgba(247, 201, 72, 0.14));
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: var(--radius2);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.cta__title {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.6px;
}
.cta__sub {
  margin: 8px 0 0;
  color: rgba(18, 18, 18, 0.66);
  font-weight: 740;
  line-height: 1.55;
  max-width: 65ch;
}
.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Legal */
.legal {
  padding: 36px 0;
}
.legalCard {
  max-width: 960px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 22px;
}
.legalCard h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.8px;
}
.legalCard small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}
.legalCard h2 {
  margin: 18px 0 8px;
  font-size: 18px;
}
.legalCard p,
.legalCard li {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.65;
}
.legalCard ul {
  margin: 10px 0 0;
  padding-left: 18px;
}
.legalCard ol {
  margin: 10px 0 0;
  padding-left: 18px;
}
.legalCard hr {
  border: 0;
  border-top: 1px solid rgba(18, 18, 18, 0.12);
  margin: 18px 0;
}
.legalCard table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  background: rgba(255, 255, 255, 0.6);
}
.legalCard th,
.legalCard td {
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
  padding: 10px 12px;
  vertical-align: top;
}
.legalCard th {
  text-align: left;
  background: rgba(255, 122, 24, 0.08);
  font-weight: 900;
}
.legalCard tr:last-child td {
  border-bottom: none;
}

/* Footer */
.footer {
  padding: 22px 0 26px;
  border-top: 1px solid rgba(18, 18, 18, 0.1);
  background: rgba(255, 253, 251, 0.72);
}
.footer__grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__muted {
  color: var(--muted);
  font-weight: 720;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: 40px;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover {
    transform: none;
  }
  .reveal,
  .reveal.is-visible {
    transition: none;
    transform: none;
    opacity: 1;
  }
}
