/* ============================================================
   GRAPHITE — MARKETING WEB LAYER
   Public sites: JaggaValuation.com (light) · NepalValuation.com (dark)
   Builds on tokens.css + components.css. Uses ROLE tokens so a
   [data-theme="dark"] root flips the whole site.
   --web-accent / --web-accent-2 are per-site brand overrides.
   ============================================================ */

.web {
  --web-accent:   var(--blue-500);
  --web-accent-2: var(--cyan-500);
  --web-ink:      var(--text-primary);
  --web-grad:        linear-gradient(135deg, #1e47e6 0%, #2d5bff 48%, #19c6e6 100%);
  --web-grad-strong: linear-gradient(135deg, #1639c2 0%, #2d5bff 55%, #1e47e6 100%);
  --web-grad-band:   linear-gradient(135deg, #1535b8 0%, #2d5bff 52%, #1b46e0 100%);
  /* append a Devanagari fallback so रू and Nepali eyebrows render for every
     visitor (the base fonts carry no Devanagari glyphs). */
  --font-display: "Archivo", "Noto Sans Devanagari", sans-serif;
  --font-sans:    "Hanken Grotesk", "Noto Sans Devanagari", sans-serif;
  --font-mono:    "IBM Plex Mono", "Noto Sans Devanagari", monospace;
  --web-max: 1180px;
  --nav-h: 70px;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--bg-app);
  -webkit-font-smoothing: antialiased;
  line-height: var(--lh-normal);
  overflow-x: hidden;
}
.web * { box-sizing: border-box; }
.web img { max-width: 100%; display: block; }
.web a { color: inherit; text-decoration: none; }

/* gradient-text accent — the signature "refined-light" flourish */
.web .grad {
  background: var(--web-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- brand marks (self-contained; accent-driven) ---------- */
.web .jv-mark { display: inline-grid; place-items: center; position: relative; overflow: hidden;
  background: linear-gradient(150deg, color-mix(in srgb, var(--web-accent) 62%, #fff) 2%, var(--web-accent) 50%, color-mix(in srgb, var(--web-accent) 72%, #000)); }
.web .jv-mark__shine { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 26% 16%, rgba(255,255,255,0.34), transparent 52%); }
.web .jv-mark svg { position: relative; z-index: 1; }
.web .jv-word { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; display: inline-flex; align-items: baseline; line-height: 1; }
.web .nv-mark { display: inline-grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(150deg, color-mix(in srgb, var(--web-accent) 70%, #fff), var(--web-accent) 55%, color-mix(in srgb, var(--web-accent) 70%, #000)); }
.web .nv-mark svg { display: block; }

/* accent-driven primary button override — gradient + soft glow */
.web .btn--primary { background: var(--web-grad-strong); border-color: transparent; color: #fff;
  box-shadow: 0 6px 18px -8px color-mix(in srgb, var(--web-accent) 75%, transparent); }
.web .btn--primary:hover { filter: brightness(1.06); box-shadow: 0 12px 26px -8px color-mix(in srgb, var(--web-accent) 80%, transparent); }
.web .btn--primary:active { filter: brightness(0.96); }

/* ---------- layout primitives ---------- */
.wrap { width: 100%; max-width: var(--web-max); margin: 0 auto; padding: 0 32px; }
.wrap--narrow { max-width: 940px; }
.sec { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.sec--tight { padding: clamp(48px, 6vw, 80px) 0; }
.sec--alt { background: var(--bg-sunken); }
.sec--ink { background: var(--bg-inverse); color: var(--text-inverse); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--web-accent);
}
.eyebrow::before { content: ""; width: 18px; height: 1.5px; background: currentColor; opacity: 0.6; }
.eyebrow--plain::before { display: none; }

.sec__head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.sec__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec__title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.025em;
  font-size: clamp(28px, 4vw, 44px); line-height: 1.08; margin: 16px 0 0;
  text-wrap: balance;
}
.sec__lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--text-secondary); margin: 18px 0 0; max-width: 60ch; line-height: 1.55; }
.sec__head--center .sec__lead { margin-left: auto; margin-right: auto; }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: sticky; top: 0; z-index: 50; height: var(--nav-h); display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg-app) 82%, transparent); backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent; transition: border-color var(--dur-base), background var(--dur-base); }
.nav--scrolled { border-bottom-color: var(--border); }
.nav__inner { display: flex; align-items: center; gap: 28px; width: 100%; }
.nav__brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav__link { font-size: 14.5px; font-weight: 500; color: var(--text-secondary); padding: 8px 14px; border-radius: var(--r-sm);
  transition: color var(--dur-fast), background var(--dur-fast); }
.nav__link:hover { color: var(--text-primary); background: var(--bg-sunken); }
.nav__spacer { flex: 1; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__ghost { font-size: 14.5px; font-weight: 600; color: var(--text-secondary); padding: 9px 12px; transition: color var(--dur-fast); }
.nav__ghost:hover { color: var(--text-primary); }
.nav__toggle { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: var(--r-md);
  background: transparent; border: 1px solid var(--border); color: var(--text-secondary); cursor: pointer;
  transition: color var(--dur-fast), background var(--dur-fast), border-color var(--dur-fast); }
.nav__toggle:hover { color: var(--text-primary); background: var(--bg-sunken); border-color: var(--border-strong); }
.nav__toggle .ico { width: 18px; height: 18px; }
.nav__burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 7vw, 104px); position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.hero--center .hero__grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.hero__title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(38px, 5.4vw, 66px); line-height: 1.02; margin: 22px 0 0; text-wrap: balance;
}
.hero__title .accent { color: var(--web-accent); }
.hero__sub { font-size: clamp(17px, 1.7vw, 21px); color: var(--text-secondary); margin: 22px 0 0; max-width: 54ch; line-height: 1.5; }
.hero--center .hero__sub { margin-left: auto; margin-right: auto; }
.hero__cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero--center .hero__cta { justify-content: center; }
.hero__note { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13.5px; color: var(--text-tertiary); }
.hero__note .ico { width: 15px; height: 15px; color: var(--success-500); }
.hero--center .hero__note { justify-content: center; }

/* hero faint background grid + glow */
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg::before { content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px; opacity: 0.4;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 25%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 25%, transparent 75%); }
.hero__bg::after { content: ""; position: absolute; top: -24%; left: 46%; transform: translateX(-50%);
  width: 880px; height: 600px; border-radius: 50%; filter: blur(90px); opacity: 0.2;
  background: radial-gradient(circle, var(--web-accent), color-mix(in srgb, var(--web-accent-2) 60%, transparent) 40%, transparent 68%); }
.hero .wrap { position: relative; z-index: 1; }

/* faint upward-arrow watermark (echoes the app feature graphics) */
.hero__motif { position: absolute; top: -90px; right: -120px; z-index: 0; pointer-events: none;
  opacity: 0.06; transform: rotate(8deg); }
.hero__motif svg { display: block; }
@media (max-width: 1000px) { .hero__motif { right: -180px; opacity: 0.045; } }

/* trust / logo strip */
.trustbar { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); flex-wrap: wrap; margin-top: 44px; }
.trustbar__label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); }
.trustbar__logos { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 32px); flex-wrap: wrap; }
.trustlogo { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text-secondary); opacity: 0.78; }
.trustlogo .ico { width: 18px; height: 18px; color: var(--text-tertiary); }

/* ============================================================
   HERO VISUAL — framed product/app panel
   ============================================================ */
.heroviz { position: relative; }
.heroviz__panel { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl); overflow: hidden; }
.heroviz__bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--border); background: var(--bg-sunken); }
.heroviz__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.heroviz__url { margin-left: 10px; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-tertiary);
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--r-full); padding: 4px 12px; }
.heroviz__float { position: absolute; background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 13px 15px; display: flex; align-items: center; gap: 11px; }
.heroviz__float--tl { top: -22px; left: -26px; }
.heroviz__float--br { bottom: -24px; right: -22px; }
.heroviz__fico { width: 36px; height: 36px; border-radius: var(--r-md); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.heroviz__fico .ico { width: 19px; height: 19px; }
.heroviz__fk { font-size: 11px; color: var(--text-tertiary); font-weight: 600; }
.heroviz__fv { font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: -0.01em; }

/* ============================================================
   STAT ROW
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.stat { background: var(--bg-surface); padding: 26px 24px; }
.stat__v { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3.2vw, 42px); letter-spacing: -0.02em; }
.stat__v .unit { background: var(--web-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.stat__k { font-size: 13px; color: var(--text-secondary); margin-top: 6px; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 26px;
  display: flex; flex-direction: column; gap: 13px; position: relative; overflow: hidden;
  transition: box-shadow var(--dur-base), transform var(--dur-base), border-color var(--dur-base); }
.svc::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--web-grad);
  opacity: 0; transition: opacity var(--dur-base); }
.svc:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: color-mix(in srgb, var(--web-accent) 40%, var(--border)); }
.svc:hover::before { opacity: 1; }
.svc__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.svc__ico { width: 46px; height: 46px; border-radius: var(--r-md); display: grid; place-items: center; color: #fff; flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 4px 10px -4px rgba(20,22,26,0.3); }
.svc__ico .ico { width: 23px; height: 23px; }
.svc__no { font-family: var(--font-mono); font-size: 12px; color: var(--text-tertiary); }
.svc__name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.01em; }
.svc__blurb { font-size: 14px; color: var(--text-secondary); line-height: 1.5; flex: 1; }
.svc__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); }
.svc__from { font-size: 12.5px; color: var(--text-tertiary); }
.svc__from b { font-family: var(--font-display); font-size: 16px; color: var(--text-primary); font-weight: 800; }
.svc__eta { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-tertiary); }

/* ============================================================
   FEATURE / STEP CARDS
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat-grid--2 { grid-template-columns: repeat(2, 1fr); }
.feat { display: flex; flex-direction: column; gap: 12px; }
.feat__ico { width: 48px; height: 48px; border-radius: var(--r-md); display: grid; place-items: center;
  background: var(--soft-blue-bg); color: var(--web-accent); }
.feat__ico .ico { width: 24px; height: 24px; }
.feat__title { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.feat__body { font-size: 14.5px; color: var(--text-secondary); line-height: 1.55; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
.step { position: relative; padding: 0 22px 0 0; }
.step__n { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--web-accent);
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--web-accent); display: grid; place-items: center; margin-bottom: 18px; }
.step::after { content: ""; position: absolute; top: 19px; left: 48px; right: 4px; height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--border-strong) 0 6px, transparent 6px 12px); }
.step:last-child::after { display: none; }
.step__title { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin-bottom: 7px; }
.step__body { font-size: 13.5px; color: var(--text-secondary); line-height: 1.5; }

/* ============================================================
   AUDIENCE CARDS
   ============================================================ */
.aud-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.aud { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px 18px;
  display: flex; flex-direction: column; gap: 12px; transition: border-color var(--dur-base), transform var(--dur-base); }
.aud:hover { border-color: var(--web-accent); transform: translateY(-2px); }
.aud__ico { width: 40px; height: 40px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--bg-sunken); color: var(--text-primary); }
.aud__ico .ico { width: 21px; height: 21px; }
.aud__name { font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.aud__body { font-size: 13px; color: var(--text-secondary); line-height: 1.45; }

/* ============================================================
   SPLIT (text + visual) sections
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split--flip .split__media { order: -1; }
.split__media { border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: var(--bg-surface); }
.chk-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 14px; }
.chk-list li { display: flex; gap: 12px; font-size: 15px; color: var(--text-secondary); line-height: 1.45; }
.chk-list .ico { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; color: var(--success-500);
  background: var(--soft-success-bg); border-radius: 50%; padding: 3px; }
.chk-list b { color: var(--text-primary); font-weight: 600; }

/* image placeholder visual */
.ph { display: grid; place-items: center; background: var(--bg-sunken); color: var(--text-tertiary);
  border: 1px dashed var(--border-strong); border-radius: var(--r-lg); font-family: var(--font-mono); font-size: 12px; gap: 8px; min-height: 220px; }
.ph .ico { width: 26px; height: 26px; opacity: 0.5; }
image-slot { border-radius: var(--r-lg); overflow: hidden; }

.eyebrow--inverse { color: rgba(255,255,255,0.92); }
.chk-list--inverse li { color: rgba(255,255,255,0.86); }
.chk-list--inverse b { color: #fff; }
.chk-list--inverse .ico { color: #fff; background: rgba(255,255,255,0.18); }

/* ============================================================
   APP SHOWCASE — bold gradient band (the feature-graphic moment)
   ============================================================ */
.appshow { position: relative; overflow: hidden; border-radius: var(--r-2xl); color: #fff;
  background: var(--web-grad-band); box-shadow: 0 30px 70px -34px color-mix(in srgb, var(--web-accent) 70%, transparent);
  display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(28px, 4vw, 56px); align-items: center;
  padding: clamp(34px, 5vw, 64px); }
.appshow::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 12% 0%, rgba(255,255,255,0.18), transparent 46%); }
.appshow > * { position: relative; z-index: 1; }
.appshow__motif { position: absolute; z-index: 0; right: -90px; bottom: -150px; opacity: 0.1; transform: rotate(-6deg); }
.appshow__title { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.025em;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.06; margin: 16px 0 0; text-wrap: balance; }
.appshow__lead { font-size: clamp(15px, 1.6vw, 18px); color: rgba(255,255,255,0.86); margin: 16px 0 0; max-width: 46ch; line-height: 1.55; }
.appshow__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 26px; }
/* .web a { color: inherit } (0,1,1) would otherwise override a single-class
   rule here — this anchor-button needs the higher-specificity selector. */
.web .appshow__dl { background: #fff; color: var(--ink-900); border-color: #fff; box-shadow: 0 10px 28px -12px rgba(0,0,0,0.5); }
.web .appshow__dl:hover { background: #fff; filter: brightness(0.96); }
.appshow__store { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; color: rgba(255,255,255,0.9); }
.appshow__store .ico { width: 15px; height: 15px; }
.appshow__note { font-size: 12.5px; color: rgba(255,255,255,0.72); margin-top: 14px; max-width: 44ch; line-height: 1.5; }
.appshow__device { display: grid; place-items: center; }
/* two real app screens, overlapped and tilted for a premium showcase */
.appshow__phones { position: relative; display: grid; place-items: center; width: 100%; min-height: 480px; }
.appshow__phone { display: block; width: clamp(178px, 20vw, 226px); height: auto; border-radius: 30px;
  filter: drop-shadow(0 28px 54px rgba(8,18,60,0.5)); }
.appshow__phone--back { position: absolute; left: 50%; top: 50%;
  transform: translate(-88%, -52%) rotate(-7deg) scale(0.9); opacity: 0.97; }
.appshow__phone--front { position: relative; transform: translateX(15%) rotate(3deg); z-index: 1; }
@media (max-width: 1000px) {
  .appshow { grid-template-columns: 1fr; text-align: left; }
  .appshow__device { margin-top: 12px; }
}
@media (max-width: 560px) {
  .appshow__phones { min-height: 440px; }
  .appshow__phone { width: 188px; }
  .appshow__phone--back { transform: translate(-72%, -52%) rotate(-7deg) scale(0.86); opacity: 0.85; }
  .appshow__phone--front { transform: translateX(26%) rotate(3deg); }
}

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 20px; position: relative; }
.price--featured { border-color: var(--web-accent); box-shadow: var(--shadow-lg); }
.price--featured::before { content: "Most popular"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--web-accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; padding: 5px 14px; border-radius: var(--r-full);
  font-family: var(--font-mono); text-transform: uppercase; white-space: nowrap; }
.price__name { font-family: var(--font-display); font-weight: 700; font-size: 20px; }
.price__desc { font-size: 13.5px; color: var(--text-secondary); margin-top: 4px; min-height: 38px; }
.price__amt { display: flex; align-items: baseline; gap: 6px; }
.price__amt .num { font-family: var(--font-display); font-weight: 800; font-size: 40px; letter-spacing: -0.02em; }
.price__amt .per { font-size: 13.5px; color: var(--text-tertiary); }
.price__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.price__list li { display: flex; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.price__list .ico { width: 17px; height: 17px; color: var(--web-accent); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   TESTIMONIAL / QUOTE
   ============================================================ */
.quote { max-width: 880px; margin: 0 auto; text-align: center; }
.quote__mark { font-family: var(--font-display); font-size: 72px; line-height: 0.5; color: var(--web-accent); opacity: 0.3; }
.quote__text { font-family: var(--font-display); font-weight: 500; font-size: clamp(20px, 2.6vw, 30px); line-height: 1.32; letter-spacing: -0.015em; margin: 8px 0 26px; text-wrap: balance; }
.quote__who { display: inline-flex; align-items: center; gap: 13px; }
.quote__meta { text-align: left; }
.quote__name { font-weight: 700; font-size: 15px; }
.quote__role { font-size: 13px; color: var(--text-tertiary); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.ctab { border-radius: var(--r-2xl); padding: clamp(40px, 6vw, 72px); text-align: center; position: relative; overflow: hidden;
  background: var(--bg-inverse); color: var(--text-inverse); }
.ctab__glow { position: absolute; inset: 0; opacity: 0.5;
  background: radial-gradient(circle at 30% 0%, color-mix(in srgb, var(--web-accent) 50%, transparent), transparent 55%),
              radial-gradient(circle at 80% 100%, color-mix(in srgb, var(--web-accent-2) 40%, transparent), transparent 55%); }
.ctab > * { position: relative; z-index: 1; }
.ctab__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 4vw, 42px); letter-spacing: -0.025em; line-height: 1.08; text-wrap: balance; }
.ctab__sub { font-size: clamp(15px, 1.6vw, 18px); opacity: 0.82; margin: 16px auto 0; max-width: 52ch; }
.ctab__cta { display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.ctab .btn--inverse { background: var(--web-accent); color: #fff; }
.ctab .btn--inverse:hover { background: color-mix(in srgb, var(--web-accent) 84%, #fff); opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--bg-inverse); color: var(--text-inverse); padding: clamp(48px, 6vw, 72px) 0 36px; }
.foot__top { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; padding-bottom: 40px; border-bottom: 1px solid color-mix(in srgb, var(--text-inverse) 14%, transparent); }
.foot__brand-blurb { font-size: 14px; opacity: 0.7; margin-top: 16px; max-width: 34ch; line-height: 1.5; }
.foot__col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; margin: 0 0 16px; }
.foot__col a { display: block; font-size: 14px; opacity: 0.78; padding: 5px 0; transition: opacity var(--dur-fast); }
.foot__col a:hover { opacity: 1; }
.foot__bot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 28px; flex-wrap: wrap; }
.foot__copy { font-size: 13px; opacity: 0.55; }
.foot__badges { display: flex; gap: 10px; align-items: center; }
.foot__badge { font-family: var(--font-mono); font-size: 11px; opacity: 0.6; border: 1px solid color-mix(in srgb, var(--text-inverse) 22%, transparent); border-radius: var(--r-sm); padding: 4px 10px; }

/* ============================================================
   SECTION-INK overrides (dark band inside a light page)
   ============================================================ */
.sec--ink .sec__lead, .sec--ink .feat__body, .sec--ink .stat__k { color: color-mix(in srgb, var(--text-inverse) 70%, transparent); }
.sec--ink .stat { background: transparent; }
.sec--ink .stats { background: color-mix(in srgb, var(--text-inverse) 12%, transparent); border-color: color-mix(in srgb, var(--text-inverse) 12%, transparent); }

/* ============================================================
   INNER-PAGE HERO · FAQ · COMPARISON TABLE
   ============================================================ */
.pagehero { padding: clamp(48px, 7vw, 88px) 0 clamp(28px, 4vw, 44px); position: relative; overflow: hidden; text-align: center; }
.pagehero__title { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; font-size: clamp(34px, 5vw, 56px); line-height: 1.04; margin: 18px 0 0; text-wrap: balance; }
.pagehero__title .accent { color: var(--web-accent); }
.pagehero__sub { font-size: clamp(16px, 1.7vw, 20px); color: var(--text-secondary); margin: 18px auto 0; max-width: 56ch; }
.pagehero .eyebrow { justify-content: center; }

.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 19px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 600; font-size: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; width: 11px; height: 11px; border-right: 2px solid var(--text-tertiary); border-bottom: 2px solid var(--text-tertiary);
  transform: rotate(45deg); transition: transform var(--dur-base); flex-shrink: 0; margin-right: 4px; }
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq__a { padding: 0 22px 20px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.6; max-width: 70ch; }

.cmp { width: 100%; border-collapse: collapse; }
.cmp th, .cmp td { text-align: center; padding: 15px 16px; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.cmp thead th { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.cmp thead th .per { display: block; font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: var(--text-tertiary); margin-top: 3px; }
.cmp tbody th { text-align: left; font-weight: 500; color: var(--text-secondary); }
.cmp .yes { color: var(--web-accent); }
.cmp .no { color: var(--text-tertiary); opacity: 0.5; }
.cmp .cmp__feat-col { width: 34%; }
.cmp tr.cmp__group td, .cmp tr.cmp__group th { background: var(--bg-sunken); font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-tertiary); text-align: left; }
.cmp-wrap { max-width: 940px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--bg-surface); }
.cmp td .ico, .cmp th .ico { width: 19px; height: 19px; }

/* rate-card rows (Jagga services pricing) */
.rate { display: grid; grid-template-columns: auto 1fr auto auto; gap: 20px; align-items: center; padding: 20px 22px; border-bottom: 1px solid var(--border); }
.rate:last-child { border-bottom: none; }
.rate__ico { width: 46px; height: 46px; border-radius: var(--r-md); display: grid; place-items: center; color: #fff; }
.rate__ico .ico { width: 23px; height: 23px; }
.rate__name { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.rate__blurb { font-size: 13.5px; color: var(--text-secondary); margin-top: 3px; max-width: 52ch; }
.rate__eta { font-family: var(--font-mono); font-size: 12px; color: var(--text-tertiary); white-space: nowrap; text-align: right; }
.rate__from { text-align: right; white-space: nowrap; }
.rate__from .lbl { font-size: 11.5px; color: var(--text-tertiary); }
.rate__from .amt { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.ratecard { max-width: 940px; margin: 0 auto; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--bg-surface); box-shadow: var(--shadow-sm); }
@media (max-width: 700px) {
  .rate { grid-template-columns: auto 1fr; gap: 14px; }
  .rate__eta, .rate__from { grid-column: 2; text-align: left; }
  .rate__from { margin-top: 4px; }
  .cmp { font-size: 12.5px; }
  .cmp th, .cmp td { padding: 11px 9px; }
}

/* reveal — content is always visible. (Entrance animations are intentionally
   omitted: a re-rendering screenshot/PDF capture restarts CSS animations at
   frame 0, which would capture the hidden start-state. Reliability > flourish.) */
.reveal { opacity: 1; }

/* ============================================================
   DARK-BAND PIN — footer + CTA banner are the page's dark anchor and
   must stay dark in BOTH themes. (--bg-inverse flips to white under
   [data-theme="dark"], so reference explicit values here instead.)
   ============================================================ */
.foot, .ctab { background: var(--ink-900); color: #fff; }
.foot__top { border-bottom-color: rgba(255,255,255,0.14); }
.foot__brand-blurb { color: rgba(255,255,255,0.7); opacity: 1; }
.foot__col h4 { color: rgba(255,255,255,0.5); opacity: 1; }
.foot__col a { color: rgba(255,255,255,0.78); opacity: 1; }
.foot__col a:hover { color: #fff; opacity: 1; }
.foot__copy { color: rgba(255,255,255,0.55); opacity: 1; }
.foot__badge { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.22); opacity: 1; }
/* CTA band: stronger gradient glow on the dark anchor */
.ctab__glow { background:
  radial-gradient(circle at 28% 0%, color-mix(in srgb, var(--web-accent) 65%, transparent), transparent 55%),
  radial-gradient(circle at 82% 110%, color-mix(in srgb, var(--web-accent-2) 50%, transparent), transparent 55%); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .hero__grid, .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .svc-grid, .feat-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .aud-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .step::after { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .foot__top { grid-template-columns: 1fr 1fr; }
  .heroviz__float--tl { left: 0; }
  .heroviz__float--br { right: 0; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav__links { display: none; }
  .svc-grid, .feat-grid, .price-grid, .aud-grid { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero__cta .btn { flex: 1; }
}
