/* MaSécurité Cloud — shared design system (dark-first "Aurora Noir").
   Tokens: near-black violet canvas, glass surfaces, luminous violet accent, mint verify.
   Fonts: Sora (headings/display) + Plus Jakarta Sans (body/UI) + IBM Plex Mono (labels).
   NOTE token names are legacy; values are dark-mode. cream-* = dark surfaces, ink = light text. */

:root {
  /* palette — dark-first */
  --amber-1: #b69bff;      /* light violet accent */
  --amber-2: #8b6dff;      /* primary violet (links, accents) — tuned for dark contrast */
  --amber-grad: linear-gradient(135deg, #a78bff, #7c4dff);
  --ink: #f5f2ff;          /* titles — light on dark */
  --ink-2: #e3def7;        /* strong body */
  --slate: #b1aad4;        /* running text */
  --muted: #837ca6;        /* captions */
  --green: #2ee6c4;        /* success, verified (mint) */
  --green-soft: rgba(46, 230, 196, .12);
  --green-line: rgba(46, 230, 196, .34);
  --amber-tint: rgba(139, 109, 255, .13);   /* violet wash on dark */
  --cream-50: #16122e;     /* cards / glass base */
  --cream-100: #0b0817;    /* page canvas (near-black violet) */
  --cream-200: #110d24;    /* section bands */
  --cream-300: #0e0a1f;    /* cooler band */
  --line: rgba(255, 255, 255, .09);   /* hairlines on dark */
  --line-2: rgba(255, 255, 255, .055);
  --input-border: rgba(255, 255, 255, .15);
  --glass: rgba(28, 23, 56, .55);     /* frosted panel */
  --shadow-card: 0 24px 60px -30px rgba(0, 0, 0, .75);
  /* fonts */
  --font-display: 'Sora', 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  /* easings */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-std: cubic-bezier(.4, 0, .2, 1);
  /* sharp-shape radius scale (pill-free) */
  --r-sm: 4px; --r-md: 7px; --r-lg: 10px; --r-xl: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { text-decoration: none; color: inherit; }
body {
  background: var(--cream-100);
  font-family: var(--font-body);
  color: var(--ink-2);
  -webkit-font-smoothing: antialiased;
  /* ambient aurora wash on the dark canvas */
  background-image:
    radial-gradient(60% 50% at 78% -8%, rgba(124, 77, 255, .22), transparent 60%),
    radial-gradient(48% 42% at 8% 4%, rgba(46, 230, 196, .10), transparent 55%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }

/* ---- motion language (from the design @keyframes) ---- */
@keyframes msc-shieldPop { 0% { opacity: 0; transform: scale(.6); } 60% { transform: scale(1.08); } 100% { opacity: 1; transform: scale(1); } }
@keyframes msc-drawCheck { to { stroke-dashoffset: 0; } }
@keyframes msc-fadeRise { 0% { opacity: 0; transform: translateY(16px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes msc-meshA { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(5%, -4%) scale(1.1); } 100% { transform: translate(0, 0) scale(1); } }
@keyframes msc-meshB { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-6%, 5%) scale(1.12); } 100% { transform: translate(0, 0) scale(1); } }
@keyframes msc-pulse { 0% { transform: scale(.85); opacity: .55; } 70% { transform: scale(1.6); opacity: 0; } 100% { opacity: 0; } }
@keyframes msc-pulseDot { 0% { box-shadow: 0 0 0 0 rgba(18, 181, 160,.5); } 70% { box-shadow: 0 0 0 7px rgba(18, 181, 160,0); } 100% { box-shadow: 0 0 0 0 rgba(18, 181, 160,0); } }
@keyframes msc-float { 0% { transform: translateY(0); } 50% { transform: translateY(-9px); } 100% { transform: translateY(0); } }
@keyframes msc-recGlow {
  0%, 100% { box-shadow: 0 28px 60px -28px rgba(139, 109, 255, .55), 0 0 0 1.5px rgba(139, 109, 255, .5); }
  50% { box-shadow: 0 34px 72px -26px rgba(139, 109, 255, .75), 0 0 0 1.5px rgba(139, 109, 255, .85); }
}
@keyframes msc-shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes msc-confetti { 0% { transform: translateY(0) rotate(0); opacity: 0; } 15% { opacity: 1; } 100% { transform: translateY(120px) rotate(220deg); opacity: 0; } }
@keyframes msc-bannerRise { 0% { opacity: 0; transform: translateY(24px); } 100% { opacity: 1; transform: translateY(0); } }

/* scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---- layout ---- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.panel-band { background: var(--cream-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.panel-tint { background: var(--cream-300); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.kicker { display: inline-block; font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--amber-2); padding: 8px 16px; border: 1px solid rgba(139, 109, 255,.32); background: var(--amber-tint); border-radius: 8px; }
.h1 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; color: var(--ink); line-height: 1.05; }
.h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; color: var(--ink); margin: 0; }
.h3 { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin: 0; }
.standfirst { font-size: 18px; line-height: 1.6; color: var(--slate); }
.card { background: var(--cream-50); border: 1px solid var(--line); border-radius: 14px; }
.mono { font-family: var(--font-mono); }
.hidden { display: none !important; }
.center { text-align: center; }
.num { font-variant-numeric: tabular-nums lining-nums; }

/* generic responsive grids used by the design pages */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* card hover lift used across feature/service/blog cards */
.lift { transition: transform .25s var(--ease-out), border-color .25s ease, box-shadow .25s ease; }
.lift:hover { transform: translateY(-3px); border-color: var(--amber-2); }

/* ---- nav (shared, injected) ---- */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: rgba(13, 10, 28, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.site-nav .inner { max-width: 1180px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; gap: 24px; }
.site-nav .brand { display: flex; align-items: center; gap: 11px; text-decoration: none; animation: msc-fadeRise .6s var(--ease-out) both; }
.site-nav .brand svg { animation: msc-shieldPop .55s var(--ease-spring) both; }
.site-nav .brand .draw { stroke-dasharray: 46; stroke-dashoffset: 46; animation: msc-drawCheck .55s var(--ease-out) .35s forwards; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -.02em; color: var(--ink); }
.brand-name .s { color: var(--amber-2); }
.site-nav .links { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.site-nav .links a.lnk { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--slate); transition: color .2s; }
.site-nav .links a.lnk:hover { color: var(--amber-2); }
.site-nav .links a.lnk.active { color: var(--ink); }
.nav-cta {
  text-decoration: none; font-weight: 700; font-size: 15px; color: #fff;
  background: var(--amber-grad); padding: 11px 20px; border-radius: 12px;
  box-shadow: 0 8px 20px -8px rgba(139, 109, 255, .6);
  transition: transform .25s var(--ease-spring), box-shadow .25s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(139, 109, 255, .7); }
.lang-btn { display: flex; align-items: center; gap: 6px; background: var(--cream-50); border: 1px solid var(--input-border); border-radius: 10px; padding: 7px 10px; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--ink); transition: border-color .2s ease; }
.lang-btn:hover { border-color: var(--amber-2); }
.lang-btn .code { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; }
.nav-burger { display: none; margin-left: auto; background: var(--cream-50); border: 1px solid var(--input-border); border-radius: 10px; width: 42px; height: 40px; cursor: pointer; align-items: center; justify-content: center; }
.nav-mobile { display: none; }
@media (max-width: 980px) {
  .site-nav .links { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-mobile.open { display: block; border-top: 1px solid var(--line); background: rgba(13, 10, 28,.95); }
  .nav-mobile .inner-m { max-width: 1180px; margin: 0 auto; padding: 12px 22px 18px; display: flex; flex-direction: column; gap: 4px; }
  .nav-mobile a { text-decoration: none; font-weight: 600; font-size: 16px; color: var(--ink); padding: 11px 8px; border-radius: 10px; }
  .nav-mobile a:hover { background: var(--amber-tint); color: var(--amber-2); }
  .nav-mobile .m-cta { background: var(--amber-grad); color: #fff; text-align: center; margin-top: 8px; }
}

/* ---- buttons ---- */
.btn { border: none; cursor: pointer; font-family: var(--font-body); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px; transition: transform .25s var(--ease-spring), box-shadow .25s ease, border-color .25s ease, color .25s ease, background .25s ease; }
.btn-primary { color: #fff; background: var(--amber-grad); padding: 15px 26px; border-radius: 12px; font-size: 16px; box-shadow: 0 14px 30px -10px rgba(139, 109, 255, .6); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -10px rgba(139, 109, 255, .72); }
.btn-secondary { color: var(--ink); background: var(--cream-50); border: 1.5px solid var(--input-border); padding: 14px 24px; border-radius: 14px; font-size: 16px; }
.btn-secondary:hover { border-color: var(--amber-2); color: var(--amber-2); background: var(--amber-tint); }
.btn-block { width: 100%; }
.btn[disabled], .btn:disabled { cursor: not-allowed; color: var(--muted); background: var(--line-2); box-shadow: none; transform: none; }
.btn-ghost { background: var(--cream-50); border: 1.5px solid var(--input-border); color: var(--ink); padding: 13px 22px; border-radius: 13px; font-size: 15px; }
.btn-ghost:hover { border-color: var(--amber-2); color: var(--amber-2); background: var(--amber-tint); transform: none; }
.btn-light { background: var(--cream-50); color: var(--ink); padding: 16px 32px; border-radius: 14px; font-size: 17px; box-shadow: 0 16px 34px -12px rgba(0,0,0,.4); }
.btn-light:hover { transform: translateY(-3px); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); padding: 15px 28px; border-radius: 14px; font-size: 17px; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }
.arrow-link { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; font-weight: 700; font-size: 14.5px; color: var(--amber-2); }
.arrow-link:hover { gap: 10px; }

/* ---- inputs ---- */
.field { display: flex; flex-direction: column; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field-req::after { content: ' *'; color: var(--amber-2); }
input, select, textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  background: var(--cream-50); border: 1.5px solid var(--input-border); border-radius: 11px;
  padding: 13px 15px; outline: none; transition: border-color .2s, box-shadow .2s;
}
select { appearance: none; cursor: pointer; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--amber-2); box-shadow: 0 0 0 4px rgba(139, 109, 255, .15); }

/* ---- chips / segmented ---- */
.toggle-set { display: inline-flex; background: var(--cream-200); border: 1px solid var(--line); border-radius: 16px; padding: 6px; gap: 3px; flex-wrap: wrap; }
.toggle-btn { padding: 12px 22px; border-radius: 11px; cursor: pointer; border: none; font-family: var(--font-body); font-weight: 600; font-size: 15px; color: var(--slate); background: transparent; transition: all .3s var(--ease-out); white-space: nowrap; }
.toggle-btn.is-active { font-weight: 700; color: #fff; background: var(--amber-grad); box-shadow: 0 8px 18px -6px rgba(139, 109, 255, .55); }
.chip { padding: 11px 18px; border-radius: 999px; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 15px; border: 1.5px solid var(--input-border); background: var(--cream-50); color: var(--slate); transition: all .25s var(--ease-spring); }
.chip.is-active { border-color: var(--amber-2); background: var(--amber-grad); color: #fff; box-shadow: 0 8px 18px -6px rgba(139, 109, 255, .5); }
.chip .ct { opacity: .55; }
.chip.is-active .ct { opacity: .8; }

/* badges */
.tag-rec { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--amber-grad); padding: 7px 14px; border-radius: 999px; }
.tag-save { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--green); padding: 7px 14px; border-radius: 999px; }
.tag-verified { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--green); background: var(--green-soft); padding: 7px 12px; border-radius: 999px; }

/* feature row */
.spec-line { display: flex; align-items: center; gap: 12px; }
.spec-ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--amber-tint); display: flex; align-items: center; justify-content: center; }

/* trust pill (hero floats / status) */
.pill { display: inline-flex; align-items: center; gap: 9px; background: var(--cream-50); border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; box-shadow: 0 6px 16px -10px rgba(21, 19, 43,.3); }

/* hero shared (home + tiers + comparison) */
.hero { position: relative; overflow: hidden; }
.hero-grid { max-width: 1180px; margin: 0 auto; padding: 70px 28px 60px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; position: relative; }
.hero-visual { position: relative; }
.spotlight-card { position: relative; border-radius: 18px; overflow: hidden; background: #0a0714; box-shadow: 0 40px 80px -36px rgba(21, 19, 43,.6); }
.float-chip { position: absolute; background: var(--cream-50); border-radius: 16px; box-shadow: 0 20px 40px -18px rgba(21, 19, 43,.4); display: flex; align-items: center; gap: 12px; }

/* steps grid (how it works) */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step-card { background: var(--cream-50); border: 1px solid var(--line); border-radius: 20px; padding: 30px; }
.step-num { font-family: var(--font-display); font-weight: 800; font-size: 34px; color: var(--line-2); }
.step-ic { width: 48px; height: 48px; border-radius: 14px; background: var(--amber-grad); display: flex; align-items: center; justify-content: center; }

/* faq */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--cream-50); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: transparent; border: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-body); }
.faq-q span:first-child { font-weight: 700; font-size: 17px; color: var(--ink); }
.faq-icon { display: flex; flex: none; transition: transform .3s ease; }
.faq-panel { overflow: hidden; transition: max-height .4s var(--ease-out), opacity .3s ease, padding .3s ease; max-height: 0; opacity: 0; padding: 0 24px 0; }
.faq-panel > div { font-size: 15.5px; line-height: 1.6; color: var(--slate); }

/* cta band */
.promo-band { position: relative; overflow: hidden; border-radius: 28px; background: linear-gradient(150deg, #15132b, #251f48); padding: 64px 48px; text-align: center; }
.promo-band-amber { position: relative; overflow: hidden; border-radius: 0; background: var(--amber-grad); padding: 72px 28px; text-align: center; }

/* tier cards (comparison / home pricing) */
.pricing { max-width: 1180px; margin: 0 auto; padding: 84px 28px 40px; }
.plan-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; margin-top: 24px; padding: 10px 0; }
.plan-box { background: var(--cream-50); border: 1px solid var(--line); border-radius: 16px; padding: 32px 28px; display: flex; flex-direction: column; box-shadow: 0 18px 40px -28px rgba(21, 19, 43,.3); }
.plan-box.is-featured { background: var(--cream-50); border: none; border-radius: 18px; padding: 36px 30px; position: relative; z-index: 2; margin-top: -10px; animation: msc-recGlow 3.4s ease-in-out infinite; }
.plan-tag { display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--amber-2); padding: 7px 14px; border: 1px solid rgba(139, 109, 255,.32); background: var(--amber-tint); border-radius: 8px; }
.plan-box.is-featured .plan-tag { color: #fff; background: var(--amber-grad); border-color: transparent; margin-top: 6px; }
.plan-name { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--ink); margin-top: 4px; }
.plan-desc { font-size: 14.5px; color: var(--slate); margin-top: 6px; line-height: 1.5; }
.tier-price-row { margin-top: 22px; display: flex; align-items: baseline; gap: 8px; }
.plan-price { font-family: var(--font-display); font-weight: 800; font-size: 46px; letter-spacing: -.02em; color: var(--ink); }
.plan-box.is-featured .plan-price { font-size: 52px; }
.tier-price-suffix { font-weight: 700; font-size: 18px; color: var(--slate); }
.tier-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }
.tier-once { font-size: 13px; color: var(--green); font-weight: 600; margin-top: 6px; }
.plan-feats { display: flex; flex-direction: column; gap: 14px; }
.plan-feats .spec-line span:last-child { font-size: 14.5px; color: var(--ink-2); }
.ribbon { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--amber-grad); padding: 7px 16px; border-radius: 999px; box-shadow: 0 8px 18px -6px rgba(139, 109, 255,.6); white-space: nowrap; }

/* trust bar */
.assurance-bar { max-width: 1180px; margin: 0 auto; padding: 22px 28px; display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: space-between; }
.assurance-bar > div { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14.5px; color: var(--ink); }

/* avatar (testimonials) */
.avatar { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--amber-grad); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 15px; }
.avatar-ink { background: #0a0714; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 6px, transparent 6px 12px); color: transparent; }

/* image-slot fallback styling (filled <img> or styled placeholder) */
.media-slot { position: relative; overflow: hidden; background: #0a0714; border-radius: 16px; }
.media-slot img { width: 100%; height: 100%; object-fit: cover; }
.media-slot.ph { background: linear-gradient(135deg, #2a2350, #15132b); display: flex; align-items: center; justify-content: center; }
.media-slot.ph::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 12px, transparent 12px 24px); }
.media-slot .media-cap { position: relative; font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; color: rgba(255,255,255,.45); text-transform: uppercase; text-align: center; padding: 0 16px; }

/* ---- footer (shared, injected) ---- */
.site-footer { background: #0a0714; color: rgba(255, 255, 255, .7); font-family: var(--font-body); }
.site-footer .inner { max-width: 1180px; margin: 0 auto; padding: 56px 28px 40px; }
.site-footer .top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.site-footer .brand-row { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.site-footer .brand-name { color: #fff; font-size: 19px; }
.site-footer .brand-name .s { color: var(--amber-1); }
.site-footer p { font-size: 14px; line-height: 1.6; margin: 0 0 14px; }
.site-footer .entity { font-size: 13px; line-height: 1.7; color: rgba(255, 255, 255, .55); }
.site-footer .cols { display: flex; gap: 56px; flex-wrap: wrap; }
.site-footer .col-h { font-weight: 700; font-size: 13px; color: #fff; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer .col-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.site-footer a { color: rgba(255, 255, 255, .7); text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: #fff; }
.site-footer .bottom { border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 40px; padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 13px; color: rgba(255, 255, 255, .5); }

/* cookie banner (shared, injected) */
.cookie-wrap { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; justify-content: center; padding: 14px; pointer-events: none; }
.cookie-card { pointer-events: auto; width: 100%; max-width: 980px; background: rgba(17, 13, 36,.94); backdrop-filter: saturate(140%) blur(14px); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 24px 60px -24px rgba(21, 19, 43,.45); padding: 22px 24px; animation: msc-bannerRise .45s var(--ease-out) both; }
.cookie-row { display: flex; align-items: flex-start; gap: 18px; flex-wrap: wrap; }
.ck-pref { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; background: var(--cream-50); border: 1px solid var(--line); border-radius: 13px; cursor: pointer; transition: border-color .2s ease; }
.ck-pref:hover { border-color: var(--amber-2); }
.ck-mini { flex: none; width: 18px; height: 18px; border-radius: 5px; display: flex; align-items: center; justify-content: center; margin-top: 1px; border: 1.5px solid var(--input-border); background: var(--cream-50); transition: all .2s ease; }
.ck-mini.on { background: var(--amber-2); border-color: var(--amber-2); }
.ck-mini svg { display: none; }
.ck-mini.on svg { display: block; }

/* shared hero mesh blobs */
.mesh { position: absolute; pointer-events: none; }
.mesh-a { background: radial-gradient(closest-side, rgba(167, 139, 255, .35), transparent); filter: blur(40px); animation: msc-meshA 18s ease-in-out infinite; }
.mesh-b { background: radial-gradient(closest-side, rgba(139, 109, 255, .22), transparent); filter: blur(50px); animation: msc-meshB 22s ease-in-out infinite; }

/* sticky buy bar (tier + product pages) */
.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: rgba(17, 13, 36,.9); backdrop-filter: blur(10px); border-top: 1px solid var(--line); padding: 11px 20px; display: flex; align-items: center; gap: 16px; box-shadow: 0 -8px 24px -16px rgba(21, 19, 43,.45); }

/* responsive helpers */
.hide-sm { }
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-2x2, .plan-row, .steps-grid { grid-template-columns: 1fr !important; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr !important; }
  .h1 { font-size: 38px !important; }
  .plan-box.is-featured { margin-top: 0; }
  .hide-sm { display: none !important; }
  .reverse-sm > *:first-child { order: 2; }
  .reverse-sm > *:last-child { order: 1; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .grid-4 { grid-template-columns: 1fr; }
  .promo-band { padding: 48px 26px; }
}
