:root {
  --nav-h: 64px;
  --color-brand: #10b981; /* Emerald */
  --color-accent: #06b6d4; /* Cyan */
  --color-success: #25D366; /* WhatsApp green */
  --color-ink: #0b1220;
}

/* Typography */
body {
  font-family: 'Inter', sans-serif;
  color: var(--color-ink);
  background: #fff;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Merriweather', serif;
  letter-spacing: -0.01em;
}
p { line-height: 1.65; }

/* Header 
header { height: var(--nav-h); }
*/
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 9999px;
  padding: .7rem 1.2rem;
  font-size: .95rem;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:focus-visible { outline: 3px solid rgba(16,185,129,.4); outline-offset: 2px; }
.btn-primary {
  background: var(--color-brand);
  color: #fff;
  box-shadow: 0 10px 25px rgba(16,185,129,.25);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-muted {
  border: 1px solid #e2e8f0;
  background: #fff;
  color: var(--color-ink);
}
.btn-success {
  background: var(--color-success);
  color: #fff;
}

/* Timeline */
.timeline::before {
  content:'';
  position:absolute; left:1rem; top:0; bottom:0;
  width:2px; background:linear-gradient(#cbd5e1,#e2e8f0);
}
.timeline li { position:relative; padding-left:2.25rem; }
.timeline li::marker { content:''; }
.timeline li::before {
  content:''; position:absolute; left:.75rem; top:.35rem;
  height:.75rem; width:.75rem; border-radius:9999px;
  background:var(--color-brand);
  box-shadow:0 0 0 4px rgba(16,185,129,.15);
}

/* Sticky Lead */
.lead-sticky { position: sticky; top: calc(var(--nav-h) + 16px); }

/* Effects */
.box-shadow{box-shadow:0 8px 24px rgba(2,6,23,.08);}
.glass { background: radial-gradient(120% 120% at 10% 0%, rgba(6,182,212,.12), rgba(255,255,255,.65)), rgba(255,255,255,.45); backdrop-filter: blur(8px) saturate(125%); }
.hero-grid { mask-image: radial-gradient(120% 100% at 50% 10%, black 60%, transparent 100%); }
.hotspot::after{ content:''; position:absolute; inset:-2px; border-radius:9999px; border:1px dashed rgba(6,182,212,.55); }
.spec-dot{ box-shadow:0 0 0 6px rgba(6,182,212,.12); }

/* Scroll Progress */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, #10b981, #0ea5e9, #7c3aed);
  z-index: 60;
}

.bg-line-svg {
  background-image: url(https://cdn.prod.website-files.com/636496d3f0ebfdaba9784655/681aadf702863e74ef7e283c_580568535c3241197c59edbdc95c05ba_bg-stripes.svg);
  background-repeat: repeat;
}
.bg-dots-svg {
  background-image: url(https://dholera.info/dholera-images/footer-dot.svg);
  background-repeat: repeat;
  background-position: center;
}