/* NexProIndia — public funnel. Light, fast, conversion-focused. NP Academy card
   style with indigo/violet accents. System fonts for a quick LCP on ad traffic. */

:root {
  --brand: #4F46E5; --brand-2: #7C3AED; --brand-soft: #eef0fe;
  --bg: #f7f8fc; --card: #ffffff; --line: #e9eaf1;
  --ink: #191c2b; --muted: #616a7d; --success: #16a34a; --danger: #dc2626;
  --whatsapp: #25D366;
  --radius: 18px; --radius-sm: 12px; --maxw: 1120px;
  --font: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, -apple-system,
          "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 16px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body.funnel {
  margin: 0; font-family: var(--font); color: var(--ink); line-height: 1.6;
  min-height: 100vh; display: flex; flex-direction: column;
  background:
    radial-gradient(900px 420px at 90% -80px, rgba(124,58,237,.10), transparent 60%),
    radial-gradient(760px 380px at -5% -60px, rgba(79,70,229,.10), transparent 55%),
    var(--bg);
}
a { color: var(--brand); }
img { max-width: 100%; display: block; }

/* Header / footer */
.site-header { padding: 16px 20px; max-width: var(--maxw); width: 100%; margin: 0 auto; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 700; color: var(--ink); }
/* Kill a white/light background baked into a logo image on the light header.
   A transparent PNG is ideal; this makes a white-bg logo sit flush too. */
.brand__logo { height: 48px; width: auto; max-width: 240px; object-fit: contain;
  background: transparent; mix-blend-mode: multiply; }
.brand__mark { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; font-size: 1.2rem;
  font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.brand__name { font-size: 1.15rem; letter-spacing: -.01em; }
@media (max-width: 520px) { .brand__logo { height: 40px; } }
.site-main { flex: 1; width: 100%; }
.site-footer { border-top: 1px solid var(--line); margin-top: 48px; }
.site-footer__inner { max-width: var(--maxw); margin: 0 auto; padding: 22px 20px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: .9rem; }
.site-footer__links a { color: var(--muted); text-decoration: none; margin-left: 16px; }
.site-footer__links a:hover { color: var(--brand); }

/* Layout */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 560px; }
.section { padding: 30px 0; }
.muted { color: var(--muted); }
.center { text-align: center; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font: inherit;
  font-weight: 700; cursor: pointer; text-decoration: none; padding: 13px 22px; border-radius: 12px;
  border: 1px solid transparent; transition: transform .06s, filter .15s, background .15s, border-color .15s; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: 0 10px 24px rgba(79,70,229,.24); }
.btn--primary:hover { filter: brightness(1.06); }
.btn--ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--block { width: 100%; }
.btn--lg { padding: 16px 26px; font-size: 1.08rem; }
.btn--whatsapp { background: var(--whatsapp); color: #05351c; }
.btn--whatsapp:hover { filter: brightness(1.04); }

/* Hero / landing */
.hero { padding: 20px 0 8px; }
.eyebrow { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-soft); border: 1px solid #dcdffb; padding: 6px 12px; border-radius: 999px; }
.hero h1 { font-size: clamp(1.9rem, 5vw, 3rem); line-height: 1.12; margin: 18px 0 12px; letter-spacing: -.02em; }
.hero p.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

.meta-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.meta-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--line);
  padding: 10px 14px; border-radius: 12px; font-size: .95rem; }
.meta-pill b { font-weight: 700; }

.banner { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin: 24px 0;
  box-shadow: 0 20px 50px rgba(20,24,45,.08); }
.prose { color: #2b3242; }
.prose h2 { margin-top: 28px; font-size: 1.4rem; letter-spacing: -.01em; }
.instructor { display: flex; gap: 16px; align-items: center; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px; margin: 24px 0; }
.instructor__avatar { width: 56px; height: 56px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-2)); }

/* Discovery cards */
.grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .12s, box-shadow .15s, border-color .15s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(20,24,45,.10); border-color: #dcdffb; }
.card__thumb { aspect-ratio: 16/9; object-fit: cover; background: linear-gradient(135deg, var(--brand-soft), #f6edff); }
.card__body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__title { font-size: 1.2rem; font-weight: 700; margin: 0; letter-spacing: -.01em; }
.badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; background: var(--brand-soft); color: var(--brand); width: fit-content; }
.badge--free { background: #dcfce7; color: #166534; }

/* Forms */
.form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  box-shadow: 0 24px 60px rgba(20,24,45,.10); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; margin-bottom: 7px; font-size: .95rem; }
.input { width: 100%; padding: 14px 15px; font: inherit; color: var(--ink); background: #fff;
  border: 1px solid #dfe1ea; border-radius: 12px; transition: border-color .15s, box-shadow .15s; }
.input::placeholder { color: #9aa1b2; }
.input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(79,70,229,.16); }
.input[aria-invalid="true"] { border-color: var(--danger); }
.field__error { color: var(--danger); font-size: .85rem; margin-top: 6px; min-height: 1em; }
.consent { color: var(--muted); font-size: .86rem; margin: 12px 0 0; }

.alert { border-radius: 12px; padding: 14px 16px; margin-bottom: 16px; border: 1px solid; }
.alert--error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.alert--info { background: var(--brand-soft); border-color: #dcdffb; color: #3730a3; }
.alert--success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }

/* Success page */
.success { text-align: center; padding-top: 12px; }
.success h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); margin: 8px 0; letter-spacing: -.02em; }
.success .program-name { font-size: 1.25rem; font-weight: 700; }
.next-step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px;
  margin: 26px 0; text-align: left; box-shadow: 0 16px 40px rgba(20,24,45,.07); }
.perks { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; grid-template-columns: 1fr 1fr; }
.perks li::before { content: "✓ "; color: var(--success); font-weight: 800; }
.qr-wrap { display: grid; place-items: center; margin: 22px 0; }
.qr-wrap img { width: 220px; height: 220px; background: #fff; padding: 12px; border-radius: 14px; border: 1px solid var(--line); }
.qr-caption { color: var(--muted); font-size: .9rem; margin-top: 8px; }
.whatsapp-cta { margin: 8px auto 0; max-width: 460px; }
.whatsapp-cta .btn { font-size: 1.25rem; padding: 20px; box-shadow: 0 16px 36px rgba(37,211,102,.32); }

.empty { text-align: center; padding: 60px 20px; color: var(--muted); }

/* ==================================================================
   Bright education-LMS landing (Edunex-style) — light, friendly,
   colourful category accents. Motion is CSS/JS, respects reduced-motion.
   ================================================================== */

/* ---- Hero banner slider ---- */
.hero-slider { position: relative; overflow: hidden; border-radius: 22px; margin: 6px 0 12px;
  background: var(--brand-soft); box-shadow: 0 20px 50px rgba(20,24,45,.10); }
.hero-slider__track { display: flex; transition: transform .6s cubic-bezier(.4,0,.2,1); will-change: transform; }
.hero-slide { position: relative; flex: 0 0 100%; min-width: 100%; aspect-ratio: 16 / 6; overflow: hidden;
  background-size: cover; background-position: center; display: flex; align-items: center; text-decoration: none; color: #fff; }
.hero-slide--text::before { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(10,15,31,.62), rgba(10,15,31,.20) 55%, transparent); }
.hero-slide__inner { position: relative; z-index: 1; max-width: 560px; margin-left: clamp(20px,5vw,60px); padding: 20px; }
.hero-slide__inner h1 { font-size: clamp(1.5rem,3.4vw,2.7rem); line-height: 1.1; margin: 0 0 10px; letter-spacing: -.02em; }
.hero-slide__inner p { margin: 0 0 18px; font-size: clamp(.95rem,1.4vw,1.1rem); color: rgba(255,255,255,.92); }
.hero-slider__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.9); color: #111; font-size: 1.6rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; z-index: 2; box-shadow: 0 4px 14px rgba(0,0,0,.18); transition: background .15s; }
.hero-slider__nav:hover { background: #fff; }
.hero-slider__prev { left: 14px; } .hero-slider__next { right: 14px; }
.hero-slider__dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hero-slider__dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: rgba(255,255,255,.55); cursor: pointer; transition: width .2s, background .2s; }
.hero-slider__dot.is-active { background: #fff; width: 26px; border-radius: 6px; }
@media (max-width: 640px) {
  .hero-slide { aspect-ratio: 4 / 3; }
  .hero-slider__nav { width: 36px; height: 36px; font-size: 1.3rem; }
}

/* ---- Hero: bright, soft pastel blobs ---- */
.home-hero { position: relative; overflow: hidden; border-radius: 28px; color: var(--ink);
  margin: 6px 0 10px; padding: clamp(34px, 6vw, 72px) clamp(24px, 5vw, 60px);
  background: #fff; border: 1px solid var(--line); isolation: isolate; }
.home-hero::before { content: ""; position: absolute; inset: -30%; z-index: -1; filter: blur(8px);
  background:
    radial-gradient(28% 40% at 88% 8%, rgba(124,58,237,.14), transparent 60%),
    radial-gradient(32% 46% at 98% 82%, rgba(20,184,166,.12), transparent 60%),
    radial-gradient(30% 42% at 4% 92%, rgba(245,158,11,.10), transparent 60%); }
.home-hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.home-hero .eyebrow .ping { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: #16a34a;
  margin-right: 7px; box-shadow: 0 0 0 0 rgba(22,163,74,.5); animation: ping 1.8s ease-out infinite; vertical-align: 1px; }
@keyframes ping { 70%,100% { box-shadow: 0 0 0 7px rgba(22,163,74,0); } }
.home-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.06; letter-spacing: -.03em; margin: 16px 0 14px; font-weight: 800; }
.grad-text { background: linear-gradient(90deg,#4F46E5,#7C3AED,#ec4899,#4F46E5); background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmer 7s linear infinite; }
@keyframes shimmer { to { background-position: 200% center; } }
.home-hero .lead { color: var(--muted); font-size: clamp(1.02rem,1.4vw,1.2rem); max-width: 48ch; margin: 0; }
.home-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.btn .arr { transition: transform .18s ease; }
.btn:hover .arr { transform: translateX(4px); }
.hero-trust { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; color: var(--muted); font-size: .88rem; }
.hero-trust b { display: block; color: var(--ink); font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }

/* Hero visual: featured session card + floating badges */
.hero-visual { position: relative; }
.hero-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 22px;
  box-shadow: 0 30px 60px rgba(20,24,45,.12); animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-card__label { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--brand); }
.hero-card h3 { margin: 9px 0 14px; font-size: 1.35rem; line-height: 1.18; letter-spacing: -.01em; }
.hero-card__row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.hero-card__row span { font-size: .82rem; background: var(--bg); border: 1px solid var(--line); padding: 6px 10px; border-radius: 9px; }
.hero-card__cd { display: flex; gap: 8px; margin: 4px 0 16px; }
.hero-card__cd .u { flex: 1; text-align: center; background: var(--brand-soft); border: 1px solid #e0e3fb; border-radius: 12px; padding: 10px 4px; }
.hero-card__cd .n { font-size: 1.5rem; font-weight: 800; color: var(--brand); font-variant-numeric: tabular-nums; letter-spacing: -.02em; line-height: 1; }
.hero-card__cd .l { font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-top: 5px; }
.hero-badge { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px 13px;
  box-shadow: 0 14px 30px rgba(20,24,45,.14); display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: .88rem; animation: floaty 6s ease-in-out infinite; }
.hero-badge small { display: block; font-weight: 500; color: var(--muted); font-size: .72rem; }
.hero-badge .d { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex: none; }
.hero-badge .d svg { width: 17px; height: 17px; }
.hero-badge--tl { top: -16px; left: -16px; }
.hero-badge--br { bottom: -16px; right: -16px; animation-delay: 1.4s; }
.btn--white { background: #fff; color: #4338ca; box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.btn--white:hover { transform: translateY(-2px); }

/* ---- Category tiles (filter the course grid) ---- */
.cat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 6px 0 34px; }
.cat { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 16px; border-radius: 16px;
  border: 1px solid var(--line); background: #fff; cursor: pointer; text-align: left; transition: transform .15s, box-shadow .15s, border-color .15s; }
.cat:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(20,24,45,.08); }
.cat.is-active { border-color: currentColor; box-shadow: 0 0 0 2px currentColor inset; }
.cat__ic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; }
.cat__ic svg { width: 22px; height: 22px; }
.cat__name { font-weight: 700; color: var(--ink); font-size: .98rem; }
.cat__count { color: var(--muted); font-size: .82rem; }

/* ---- Stats bar ---- */
.stats-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin: 0 0 10px;
  background: linear-gradient(120deg, #4F46E5, #7C3AED); border-radius: 22px; padding: 26px clamp(18px, 3vw, 34px); }
.stat-b { color: #fff; text-align: center; }
.stat-b b { display: block; font-size: clamp(1.6rem,3vw,2rem); font-weight: 800; letter-spacing: -.02em; }
.stat-b span { color: rgba(255,255,255,.85); font-size: .9rem; }

/* ---- Section headers ---- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 26px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -.02em; }
.section-head p { color: var(--muted); margin: 10px 0 0; font-size: 1.05rem; }

/* ---- Value cards ---- */
.value-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin: 0 0 12px; }
.value { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 22px; transition: transform .18s, box-shadow .18s, border-color .18s; }
.value:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,24,45,.09); border-color: #dcdffb; }
.value__ic { width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg,var(--brand),var(--brand-2)); color: #fff; display: grid; place-items: center; margin-bottom: 14px; }
.value__ic svg { width: 22px; height: 22px; }
.value b { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.value span { color: var(--muted); font-size: .92rem; }

/* ---- How it works ---- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.step { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.step__n { width: 38px; height: 38px; border-radius: 11px; background: var(--brand-soft); color: var(--brand);
  font-weight: 800; display: grid; place-items: center; margin-bottom: 14px; }
.step h3 { margin: 0 0 6px; font-size: 1.12rem; }
.step p { margin: 0; color: var(--muted); font-size: .92rem; }

/* ---- Session cards (ad-banner style, like the reference) ---- */
.card { transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .2s, border-color .18s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 52px rgba(20,24,45,.14); border-color: #dcdffb; }
/* The advertise image is locked to ONE consistent size at the top of the card. */
.card__thumb-wrap { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--brand-soft); }
.card__thumb { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.card:hover .card__thumb { transform: scale(1.05); }
.card__thumb-ph { width: 100%; height: 100%; display: grid; place-items: center; font-size: 2.2rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, #4F46E5, #7C3AED); letter-spacing: .04em; }
.card__body { gap: 10px; padding: 16px 18px 18px; }
.card__badge { display: inline-flex; align-items: center; gap: 6px; width: fit-content; font-size: .7rem; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; }
.card__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.card__chip { font-size: .76rem; font-weight: 600; color: #4b5563; background: var(--bg); border: 1px solid var(--line); padding: 5px 10px; border-radius: 9px; }
.card__title { font-size: 1.16rem; font-weight: 700; margin: 2px 0 0; letter-spacing: -.01em; }
.card__price { display: flex; align-items: baseline; gap: 9px; margin-top: 2px; }
.card__price s { color: var(--muted); font-weight: 600; }
.card__price .free { color: #16a34a; font-weight: 800; }
.card__price .amount { font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.card__cta { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px; margin-top: 4px;
  border-radius: 13px; background: #0f1220; color: #fff; font-weight: 700; font-size: .95rem; transition: background .18s; }
.card:hover .card__cta { background: linear-gradient(135deg, var(--brand), var(--brand-2)); }
.card__cta .arr { transition: transform .18s ease; }
.card:hover .card__cta .arr { transform: translateX(4px); }

/* ---- Playful decorative shapes (Edunex-style) ---- */
.deco { position: absolute; z-index: 0; pointer-events: none; }
.deco--dots { width: 104px; height: 64px; color: var(--brand); opacity: .16;
  background-image: radial-gradient(currentColor 2px, transparent 2.5px); background-size: 16px 16px; }
.deco--ring { width: 74px; height: 74px; border: 12px solid rgba(124,58,237,.14); border-radius: 50%; }
.deco--blob { width: 116px; height: 116px; border-radius: 46% 54% 62% 38% / 48% 42% 58% 52%;
  background: linear-gradient(135deg, rgba(245,158,11,.18), rgba(236,72,153,.14)); animation: floaty 9s ease-in-out infinite; }
.deco--sq { width: 26px; height: 26px; border-radius: 8px; background: rgba(13,148,136,.22); transform: rotate(18deg); }
.deco--star { color: #f59e0b; opacity: .5; }
.deco--star svg { width: 26px; height: 26px; }

/* ---- How-it-works connector + polish ---- */
.step { transition: transform .18s, box-shadow .18s; }
.step:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(20,24,45,.08); }
.step__n { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-size: 1.05rem; }
@media (min-width: 760px) {
  .steps { position: relative; }
  .step:not(:last-child)::after { content: ""; position: absolute; top: 42px; right: -13px; width: 26px; height: 2px;
    background-image: linear-gradient(90deg, var(--brand) 55%, transparent 0); background-size: 9px 2px; opacity: .5; }
}

/* ---- Stats bar icons ---- */
.stat-b { display: flex; flex-direction: column; align-items: center; gap: 2px; }

/* ---- Category filter ---- */
.card.is-hidden { display: none; }

/* ---- Final CTA band ---- */
.cta-band { position: relative; overflow: hidden; text-align: center; color: #fff; border-radius: 26px;
  padding: clamp(34px, 5vw, 60px); margin-top: 12px; isolation: isolate;
  background: linear-gradient(120deg, #4F46E5 0%, #6d43e6 50%, #7C3AED 100%); }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px); background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(#000, transparent 80%); mask-image: linear-gradient(#000, transparent 80%); }
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -.02em; margin: 0 0 10px; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0 auto 24px; max-width: 46ch; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .07s; }
.reveal[data-delay="2"] { transition-delay: .14s; }
.reveal[data-delay="3"] { transition-delay: .21s; }
.reveal[data-delay="4"] { transition-delay: .28s; }

@media (max-width: 820px) {
  .home-hero__grid { grid-template-columns: 1fr; }
  .home-hero__media { display: none; }
}
@media (max-width: 520px) {
  .perks { grid-template-columns: 1fr; }
  .site-footer__inner { flex-direction: column; }
  .hero-stats { gap: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
