:root {
  --felt: #10241a;
  --felt-deep: #0a1611;
  --felt-mid: #173526;
  --gold: #d4af37;
  --gold-soft: #f0d78c;
  --cream: #f4efe2;
  --muted: #b7c4bb;
  --line: rgba(212, 175, 55, 0.22);
  --card: rgba(255, 255, 255, 0.04);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html, body { margin: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(212, 175, 55, 0.12), transparent 55%),
    linear-gradient(180deg, var(--felt-deep), var(--felt) 28%, var(--felt-deep));
  color: var(--cream);
  letter-spacing: 0;
  line-height: 1.6;
  font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 6vw;
  background: rgba(10, 22, 17, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
}

.nav-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a:hover { color: var(--cream); }

.nav-cta {
  color: var(--felt-deep) !important;
  background: var(--gold);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  padding: 10px 11px;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--cream);
}

.hero, .section, .footer {
  width: min(var(--max), calc(100% - 10vw));
  margin-inline: auto;
}

.hero {
  padding: 88px 0 72px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 800;
}

h2 { margin: 0 0 12px; font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { margin: 0 0 8px; font-size: 1.15rem; }

.kannada {
  font-family: "Noto Sans Kannada", "DM Sans", sans-serif;
  color: var(--gold-soft);
  font-size: 1.05rem;
  margin: 0 0 18px;
}

.lede {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 28px;
}

.hero-actions, .cta-card {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.btn-gold { background: var(--gold); color: var(--felt-deep); }
.btn-highlight {
  background: var(--cream);
  color: var(--felt-deep);
  border: 2px solid var(--gold);
  font-weight: 700;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.22);
}
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--cream);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  max-width: 560px;
}

.hero-stats li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--card);
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1.1;
}

.section { padding: 28px 0 72px; }

.section-head { max-width: 62ch; margin-bottom: 28px; }
.section-head p:last-child { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.split p { margin: 0; color: var(--muted); font-size: 1.02rem; }

.section-felt {
  background: var(--felt-mid);
  width: 100%;
  padding: 72px 5vw;
  border-block: 1px solid var(--line);
}

.section-felt .section-head,
.section-felt .steps,
.section-felt .tiers {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(10, 22, 17, 0.45);
  border: 1px solid var(--line);
}

.steps span {
  display: block;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.steps p { margin: 0; color: var(--muted); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
}

.feature-grid p { margin: 0; color: var(--muted); }

.tiers {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tiers li {
  text-align: center;
  padding: 18px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--gold-soft);
  font-weight: 600;
}

.cta { padding-bottom: 96px; }

.cta-card {
  flex-direction: column;
  align-items: flex-start;
  padding: 36px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    radial-gradient(500px 180px at 100% 0%, rgba(212, 175, 55, 0.16), transparent 60%),
    var(--felt-mid);
}

.cta-card p { color: var(--muted); max-width: 58ch; }

.footer {
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--cream);
}

.footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand p, .footer-note { margin: 4px 0 0; color: var(--muted); font-weight: 400; }

.hero-promise {
  margin: 22px 0 0;
  color: var(--gold-soft);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.section-promise {
  padding-bottom: 80px;
}

.promise-banner {
  margin: 0 0 24px;
  padding: 18px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--gold);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 1.05rem;
  max-width: 72ch;
}

.promise-grid,
.charge-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.promise-grid article,
.charge-grid article,
.not-list {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
}

.promise-grid h3,
.charge-grid h3,
.not-list h3 {
  margin-bottom: 12px;
}

.promise-grid ul,
.not-list ul {
  margin: 0;
  padding-left: 1.15em;
  color: var(--muted);
}

.promise-grid li,
.not-list li {
  margin: 0 0 8px;
}

.promise-grid li:last-child,
.not-list li:last-child { margin-bottom: 0; }

.charge-grid p {
  margin: 0;
  color: var(--muted);
}

.not-list { margin-bottom: 16px; }

@media (max-width: 900px) {
  .split,
  .steps,
  .feature-grid,
  .tiers,
  .promise-grid,
  .charge-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 6vw 16px;
    background: var(--felt-deep);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .nav-cta { text-align: center; }
  .hero { padding-top: 48px; }
  .split,
  .steps,
  .feature-grid,
  .tiers,
  .hero-stats,
  .promise-grid,
  .charge-grid { grid-template-columns: 1fr; }
}
