@charset "utf-8";

/* =====================================================================
   Flux — DNN Store product page (HTML editor module)
   Direction: "Studio Bench" — precision-creative-tool aesthetic.
   Tuned for an 848px content width (DNN Store product detail).
   Every selector is scoped under `.flux-store` so this file cannot
   leak into or be affected by the DNN Store theme.
   System font stacks only — no Google Fonts.
   ===================================================================== */

/* ---- Scoped reset (only affects .flux-store descendants) ---------- */
.flux-store *,
.flux-store *::before,
.flux-store *::after { box-sizing: border-box; }

.flux-store {
  /* palette */
  --fs-ink:    #11192B;
  --fs-paper:  #F5F6F8;
  --fs-surface:#FFFFFF;
  --fs-line:   #E4E7EE;
  --fs-accent: #FF5436;
  --fs-accent-soft: #FFE7E1;
  --fs-text:   #232C3D;
  --fs-muted:  #6A7384;

  /* type */
  --fs-font:   "Segoe UI", Roboto, "Helvetica Neue", system-ui, -apple-system, Arial, sans-serif;
  --fs-mono:   ui-monospace, "Cascadia Code", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;

  /* layout — 848px content width */
  --fs-wrap:   848px;
  --fs-radius: 16px;
  --fs-radius-sm: 11px;

  /* effects */
  --fs-shadow:    0 1px 2px rgba(17,25,43,.04), 0 16px 36px -22px rgba(17,25,43,.28);
  --fs-shadow-lg: 0 2px 6px rgba(17,25,43,.05), 0 36px 60px -30px rgba(17,25,43,.30);

  font-family: var(--fs-font);
  color: var(--fs-text);
  line-height: 1.65;
  font-size: 17px;
  background: var(--fs-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.flux-store h1, .flux-store h2, .flux-store h3, .flux-store h4,
.flux-store h5, .flux-store h6, .flux-store p, .flux-store ul,
.flux-store ol, .flux-store figure { margin: 0 !important; padding: 0 !important; font-weight: inherit; }
.flux-store ul, .flux-store ol { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.flux-store li { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.flux-store img { max-width: 100%; height: auto; display: block; }
/* Neutralise the DNN Store theme's global anchor rules
   (html.dnn-store a{color:#007bff} / a:hover{color;text-decoration:underline;transition:.3s}) */
.flux-store a { color: inherit !important; text-decoration: none !important; background-color: transparent !important; }
.flux-store a:hover { text-decoration: none !important; }

/* width container */
.flux-store .fs-wrap {
  width: 100%;
  max-width: var(--fs-wrap);
  margin: 0 auto;
  padding: 0 18px;
}

/* ---- Sections ----------------------------------------------------- */
.flux-store .fs-section { padding: 76px 0; position: relative; }
.flux-store .fs-section--tight { padding: 52px 0; }
.flux-store .fs-section--top-tight { padding-top: 0 !important; }
.flux-store .fs-section--tint { background: #EEF0F4; }

/* ---- Typography --------------------------------------------------- */
.flux-store .fs-eyebrow {
  font-family: var(--fs-mono);
  font-size: 13.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fs-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.flux-store .fs-eyebrow::before {
  content: ""; width: 24px; height: 1px;
  background: var(--fs-accent); display: inline-block;
}
.flux-store .fs-h1 {
  font-weight: 800; letter-spacing: -.03em; line-height: 1.04;
  color: var(--fs-ink) !important;
  font-size: clamp(30px, 5vw, 48px);
  margin: 0 0 32px !important;
}
.flux-store .fs-h2 {
  font-weight: 800; letter-spacing: -.025em; line-height: 1.2 !important;
  color: var(--fs-ink) !important;
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 0 0 14px !important;
}
/* Spacing between eyebrow label and the section heading */
.flux-store .fs-eyebrow + .fs-h2 { margin-top: 14px !important; }
.flux-store .fs-h3 {
  font-weight: 700; letter-spacing: -.015em; line-height: 1.25;
  color: var(--fs-ink) !important;
  font-size: clamp(18px, 2vw, 21px);
  margin: 0 0 10px !important;
}
.flux-store .fs-lead { font-size: 16px; color: var(--fs-text); max-width: 60ch; }
.flux-store .fs-muted { color: var(--fs-muted); }

/* centered head stack */
.flux-store .fs-head { text-align: center; max-width: 660px; margin: 0 auto 48px; }
.flux-store .fs-head .fs-eyebrow { justify-content: center; }
.flux-store .fs-head .fs-lead { margin: 18px auto 0 !important; }

/* head + inline CTA row */
.flux-store .fs-headrow {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 22px; flex-wrap: wrap; margin-bottom: 42px;
}
.flux-store .fs-headrow .fs-head { text-align: left; margin: 0; flex: 1 1 320px; }
.flux-store .fs-headrow .fs-head .fs-eyebrow { justify-content: flex-start; }
.flux-store .fs-headrow .fs-head .fs-lead { margin: 18px 0 0 !important; }
.flux-store .fs-headrow .fs-cta { flex: none; padding-bottom: 6px; }

/* ---- Buttons ------------------------------------------------------ */
.flux-store .fs-btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.flux-store .fs-btn {
  display: inline-flex !important; align-items: center; gap: 8px;
  font-family: var(--fs-font); font-weight: 700; font-size: 16px;
  line-height: 1; padding: 14px 24px; border-radius: 999px;
  background: var(--fs-accent) !important; color: #fff !important; border: 1px solid transparent;
  text-decoration: none !important; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease !important;
  box-shadow: 0 10px 22px -12px rgba(255,84,54,.7);
}
.flux-store .fs-btn:hover { transform: translateY(-2px) !important; box-shadow: 0 16px 28px -12px rgba(255,84,54,.8) !important; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease !important; }
.flux-store .fs-btn--ghost {
  background: var(--fs-surface) !important; color: var(--fs-ink) !important; border-color: var(--fs-line) !important; box-shadow: none;
}
.flux-store .fs-btn--ghost:hover { border-color: var(--fs-ink) !important; box-shadow: 0 10px 22px -16px rgba(17,25,43,.4) !important; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease !important; }
.flux-store .fs-btn svg { width: 17px; height: 17px; }

/* ---- Hero --------------------------------------------------------- */
.flux-store .fs-hero {
  padding: 88px 0 68px;
  background:
    radial-gradient(800px 440px at 82% -8%, rgba(255,84,54,.14), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--fs-paper) 100%);
  position: relative; overflow: hidden;
}
.flux-store .fs-hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.flux-store .fs-hero__title {
  font-weight: 800; letter-spacing: -.035em; line-height: 1.02;
  color: var(--fs-ink) !important;
  font-size: clamp(28px, 4.4vw, 44px);
  margin: 18px 0 24px !important;
}
.flux-store .fs-hero__sub { margin-top: 18px; font-size: 18px; color: var(--fs-muted); max-width: 44ch; }
.flux-store .fs-hero__sub b { color: var(--fs-text); font-weight: 700; }
.flux-store .fs-hero__ctas { margin-top: 28px; }

/* ---- Stats bar (standalone section) ------------------------------ */
.flux-store .fs-stats { padding: 0; }
.flux-store .fs-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--fs-ink);
  border-radius: var(--fs-radius);
  overflow: hidden;
  margin-top: -32px;
  position: relative;
  z-index: 5;
  box-shadow: var(--fs-shadow-lg);
}
.flux-store .fs-stats__item {
  padding: 30px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.flux-store .fs-stats__item:last-child { border-right: 0; }
.flux-store .fs-stats__item .num {
  display: block;
  font-family: var(--fs-mono); font-weight: 800; font-size: 36px;
  line-height: 1; color: var(--fs-accent); letter-spacing: -.03em;
}
.flux-store .fs-stats__item .lbl {
  display: block; margin-top: 8px;
  font-size: 13.5px; color: #9FAABD; letter-spacing: .02em;
}

/* ---- Signature: Prompt -> Page panel ------------------------------ */
.flux-store .fs-promptcard {
  position: relative; background: var(--fs-surface);
  border: 1px solid var(--fs-line); border-radius: 20px; padding: 18px;
  box-shadow: var(--fs-shadow-lg);
}
.flux-store .fs-promptcard__win { display: flex; align-items: center; gap: 6px; padding: 2px 4px 12px; }
.flux-store .fs-promptcard__dot { width: 10px; height: 10px; border-radius: 50%; }
.flux-store .fs-promptcard__dot:nth-child(1){ background:#FF5F57; }
.flux-store .fs-promptcard__dot:nth-child(2){ background:#FEBC2E; }
.flux-store .fs-promptcard__dot:nth-child(3){ background:#28C840; }

.flux-store .fs-promptbar {
  display: flex; align-items: center; gap: 11px;
  background: #0F1626; color: #E9EDF5; border-radius: 13px;
  padding: 15px 16px; font-family: var(--fs-mono); font-size: 13.5px;
}
.flux-store .fs-promptbar .ic {
  width: 28px; height: 28px; flex: none; border-radius: 8px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--fs-accent), #FF8A5C); color: #fff;
}
.flux-store .fs-promptbar .txt { flex: 1; }
.flux-store .fs-promptbar .txt em { color: #8A93A6; font-style: normal; }
.flux-store .fs-promptbar .cursor {
  display: inline-block; width: 7px; height: 16px;
  background: var(--fs-accent); vertical-align: -3px; margin-left: 2px;
  animation: fs-blink 1.1s steps(2,end) infinite;
}
@keyframes fs-blink { 50% { opacity: 0; } }

.flux-store .fs-flow {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  margin: 12px 0;
  font-family: var(--fs-mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--fs-muted);
}
.flux-store .fs-flow .arrow {
  flex: 1; height: 1px;
  background: repeating-linear-gradient(90deg, var(--fs-line) 0 6px, transparent 6px 12px);
  position: relative;
}
.flux-store .fs-flow .arrow::after {
  content: ""; position: absolute; right: -1px; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid var(--fs-line); border-right: 1px solid var(--fs-line);
  transform: translateY(-50%) rotate(45deg);
}

.flux-store .fs-mockpage {
  background: #FBFBFD; border: 1px solid var(--fs-line); border-radius: 13px; overflow: hidden;
}
.flux-store .fs-mockpage__top {
  display: flex; gap: 6px; padding: 11px 13px; border-bottom: 1px dashed var(--fs-line);
}
.flux-store .fs-mockpage__top b { width: 9px; height: 9px; border-radius: 50%; background: var(--fs-line); display: block; }
.flux-store .fs-mockpage__body { padding: 16px; }
.flux-store .fs-mockhero {
  background: linear-gradient(120deg, #11192B, #29375a);
  border-radius: 10px; padding: 16px; color: #fff; position: relative; overflow: hidden;
}
.flux-store .fs-mockhero .h { width: 70%; height: 11px; background: #fff; border-radius: 4px; opacity: .95; }
.flux-store .fs-mockhero .h2 { width: 45%; height: 8px; background: rgba(255,255,255,.6); border-radius: 4px; margin-top: 8px; }
.flux-store .fs-mockhero .pill { width: 72px; height: 20px; border-radius: 999px; background: var(--fs-accent); margin-top: 13px; }
.flux-store .fs-mockrow { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin-top: 11px; }
.flux-store .fs-mockcard { background: #fff; border: 1px solid var(--fs-line); border-radius: 8px; padding: 11px; }
.flux-store .fs-mockcard .ico { width: 20px; height: 20px; border-radius: 6px; background: var(--fs-accent-soft); }
.flux-store .fs-mockcard .ln { height: 6px; border-radius: 3px; background: var(--fs-line); margin-top: 9px; }
.flux-store .fs-mockcard .ln.s { width: 60%; }
.flux-store .fs-mockprice { display: flex; gap: 9px; margin-top: 11px; }
.flux-store .fs-mockprice .tier {
  flex: 1; height: 42px; border-radius: 8px; border: 1px solid var(--fs-line); background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.flux-store .fs-mockprice .tier.hot { border-color: var(--fs-accent); box-shadow: 0 0 0 3px var(--fs-accent-soft); }
.flux-store .fs-badge-live {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--fs-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--fs-accent); background: rgba(255,255,255,.92); border: 1px solid var(--fs-line);
  padding: 4px 8px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}
.flux-store .fs-badge-live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--fs-accent); box-shadow: 0 0 0 3px rgba(255,84,54,.18);
}

/* ---- Split feature (image + text) -------------------------------- */
.flux-store .fs-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.flux-store .fs-split + .fs-split { margin-top: 64px; }
.flux-store .fs-split--reverse .fs-split__media { order: 2; }
.flux-store .fs-split__media {
  border-radius: var(--fs-radius); overflow: hidden;
  border: 1px solid var(--fs-line); box-shadow: var(--fs-shadow); background: #fff;
}
.flux-store .fs-split__media img { width: 100%; }
.flux-store .fs-split__txt .fs-lead { margin-top: 14px; }
.flux-store .fs-checks { margin-top: 22px; display: grid; gap: 12px; }
.flux-store .fs-check { display: flex; gap: 11px; align-items: flex-start; font-size: 16px; color: var(--fs-text); }
.flux-store .fs-check .mk {
  flex: none; width: 21px; height: 21px; border-radius: 6px;
  background: var(--fs-accent-soft); color: var(--fs-accent);
  display: grid; place-items: center; margin-top: 2px;
}
.flux-store .fs-check b { color: var(--fs-ink); font-weight: 700; }

/* ---- AI pillars (2x2) -------------------------------------------- */
.flux-store .fs-grid-pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.flux-store .fs-pillar {
  background: var(--fs-surface); border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius); padding: 26px 24px; position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.flux-store .fs-pillar:hover { transform: translateY(-4px) !important; box-shadow: var(--fs-shadow) !important; border-color: #D7DCE6 !important; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease !important; }
.flux-store .fs-pillar__tag {
  position: absolute; top: 20px; right: 24px;
  font-family: var(--fs-mono); font-size: 30px; font-weight: 800;
  line-height: 1; letter-spacing: -.04em; color: var(--fs-accent); opacity: .22;
}
.flux-store .fs-pillar__ic {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--fs-accent-soft); color: var(--fs-accent);
  display: grid; place-items: center; margin-bottom: 16px;
}
.flux-store .fs-pillar__ic svg { width: 22px; height: 22px; }
.flux-store .fs-pillar h3 { margin-bottom: 7px; }
.flux-store .fs-pillar p { color: var(--fs-muted); font-size: 15.5px; }

/* ---- Why Flux (3 benefits) --------------------------------------- */
.flux-store .fs-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.flux-store .fs-benefit {
  background: var(--fs-surface); border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius); padding: 28px 24px;
}
.flux-store .fs-benefit .ic {
  width: 50px; height: 50px; border-radius: 13px;
  background: linear-gradient(135deg, var(--fs-accent) 0%, #FF8A5C 100%);
  color: #fff; display: grid; place-items: center; margin-bottom: 18px;
  box-shadow: 0 10px 20px -10px rgba(255,84,54,.6);
}
.flux-store .fs-benefit .ic svg { width: 26px; height: 26px; }
.flux-store .fs-benefit h3 { margin-bottom: 10px; }
.flux-store .fs-benefit p { color: var(--fs-muted); font-size: 15px; }

/* ---- Feature checklist ------------------------------------------- */
.flux-store .fs-checklist {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border: 1px solid var(--fs-line); border-radius: var(--fs-radius);
  overflow: hidden; background: var(--fs-surface);
}
.flux-store .fs-checklist__col { padding: 28px 24px; border-right: 1px solid var(--fs-line); }
.flux-store .fs-checklist__col:last-child { border-right: 0; }
.flux-store .fs-checklist__col h4 {
  font-family: var(--fs-mono); font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--fs-accent); margin-bottom: 16px;
}
.flux-store .fs-checklist li {
  position: relative; padding: 6px 0 6px 22px !important; font-size: 15px; color: var(--fs-text);
  border-bottom: 1px dashed var(--fs-line); list-style: none !important;
}
.flux-store .fs-checklist li:last-child { border-bottom: 0; }
.flux-store .fs-checklist li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 13px; height: 7px;
  border-left: 2px solid var(--fs-accent); border-bottom: 2px solid var(--fs-accent);
  transform: rotate(-45deg);
}

/* ---- Compatibility row ------------------------------------------- */
.flux-store .fs-compat {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px 48px;
}
.flux-store .fs-compat__item { text-align: center; }
.flux-store .fs-compat__item .img {
  height: 44px; display: grid; place-items: center; margin-bottom: 8px;
  color: var(--fs-muted); transition: color .2s ease, transform .2s ease;
}
.flux-store .fs-compat__item:hover .img { color: var(--fs-accent) !important; transform: translateY(-2px) !important; transition: color .2s ease, transform .2s ease !important; }
.flux-store .fs-compat__item .img svg { width: 38px; height: 38px; }
.flux-store .fs-compat__item h6 { font-size: 13.5px; color: var(--fs-muted); font-weight: 600; letter-spacing: .02em; }

/* ---- Template gallery (3 per row) -------------------------------- */
.flux-store .fs-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.flux-store .fs-tile {
  display: block !important; border-radius: var(--fs-radius-sm); overflow: hidden;
  background: #fff !important; border: 1px solid var(--fs-line); text-decoration: none !important;
  color: inherit !important;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease !important;
  position: relative;
}
.flux-store .fs-tile:hover { transform: translateY(-4px) !important; box-shadow: var(--fs-shadow) !important; border-color: #D7DCE6 !important; color: inherit !important; text-decoration: none !important; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease !important; }
.flux-store .fs-tile__shot { display: block; overflow: hidden; background: #EEF0F4; }
.flux-store .fs-tile__shot img { width: 100%; height: auto; display: block; transition: transform .4s ease; }
.flux-store .fs-tile:hover .fs-tile__shot img { transform: scale(1.02); transition: transform .4s ease !important; }
.flux-store .fs-tile__cap { display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; }
.flux-store .fs-tile__cap .title { display: block; font-size: 15.5px; font-weight: 600; color: var(--fs-ink) !important; }
.flux-store .fs-tile__new {
  position: absolute; top: 9px; left: 9px; z-index: 2;
  font-family: var(--fs-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: var(--fs-accent); padding: 3px 7px; border-radius: 999px;
}

/* ---- PageSpeed gauges -------------------------------------------- */
.flux-store .fs-speed { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 520px; margin: 0 auto; }
.flux-store .fs-speed__card {
  background: var(--fs-surface); border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius); padding: 28px 24px 24px; text-align: center;
}
.flux-store .fs-ring {
  --ring-size: 140px;
  position: relative; width: var(--ring-size); height: var(--ring-size);
  margin: 0 auto 12px; border-radius: 50%; display: grid; place-items: center;
}
.flux-store .fs-ring--83 { background: conic-gradient(#FFA400 0 298.8deg, #F1F1F4 298.8deg 360deg); }
.flux-store .fs-ring--95 { background: conic-gradient(#0CCE6B 0 342deg, #F1F1F4 342deg 360deg); }
.flux-store .fs-ring__hole {
  width: 86%; height: 86%; border-radius: 50%; background: var(--fs-surface);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.flux-store .fs-ring__num {
  font-family: var(--fs-mono); font-weight: 800; font-size: 42px; line-height: 1; letter-spacing: -.03em;
}
.flux-store .fs-ring__lbl {
  display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .02em;
  color: var(--fs-muted); margin-top: 2px; text-transform: capitalize;
}
.flux-store .fs-ring--83 .fs-ring__num, .flux-store .fs-ring--83 .fs-ring__lbl { color: #FFA400; }
.flux-store .fs-ring--95 .fs-ring__num, .flux-store .fs-ring--95 .fs-ring__lbl { color: #0CCE6B; }
.flux-store .fs-speed__card h3 { margin-top: 4px; }

/* ---- Tool icons grid (6 per row) --------------------------------- */
.flux-store .fs-tools { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.flux-store .fs-tool {
  background: var(--fs-surface); border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius-sm); padding: 18px 9px; text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.flux-store .fs-tool:hover { transform: translateY(-3px) !important; border-color: var(--fs-accent) !important; transition: transform .2s ease, border-color .2s ease !important; }
.flux-store .fs-tool .ic {
  width: 38px; height: 38px; margin: 0 auto 9px; color: var(--fs-ink);
  display: grid; place-items: center; transition: color .2s ease;
}
.flux-store .fs-tool:hover .ic { color: var(--fs-accent) !important; transition: color .2s ease !important; }
.flux-store .fs-tool .ic svg { width: 30px; height: 30px; }
.flux-store .fs-tool h4 { font-size: 13.5px; font-weight: 600; color: var(--fs-text); line-height: 1.3; }

/* ---- Inner pages ------------------------------------------------- */
.flux-store .fs-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.flux-store .fs-inner__col { display: grid; gap: 18px; }
.flux-store .fs-inner__col img {
  width: 100%; border-radius: var(--fs-radius-sm);
  border: 1px solid var(--fs-line); box-shadow: var(--fs-shadow);
}

/* ---- Banner CTA -------------------------------------------------- */
.flux-store .fs-banner {
  border-radius: var(--fs-radius); padding: 46px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 26px; flex-wrap: wrap;
  background: var(--fs-accent); color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 22px 46px -26px rgba(255,84,54,.7);
}
.flux-store .fs-banner::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(560px 280px at 100% 0%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.flux-store .fs-banner > * { position: relative; z-index: 1; }
.flux-store .fs-banner h3 { color: #fff; font-size: clamp(22px, 2.5vw, 28px); }
.flux-store .fs-banner p { color: rgba(255,255,255,.85); margin-top: 7px; }

/* ---- Core features grid (3 per row) ------------------------------ */
.flux-store .fs-core { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.flux-store .fs-core__item {
  background: var(--fs-surface); border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius); padding: 24px 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.flux-store .fs-core__item:hover { transform: translateY(-3px) !important; box-shadow: var(--fs-shadow) !important; transition: transform .2s ease, box-shadow .2s ease !important; }
.flux-store .fs-core__item .ic {
  width: 48px; height: 48px; margin-bottom: 14px; border-radius: 13px;
  background: var(--fs-accent-soft); color: var(--fs-accent);
  display: grid; place-items: center;
  transition: background .2s ease, color .2s ease;
}
.flux-store .fs-core__item:hover .ic { background: var(--fs-accent) !important; color: #fff !important; transition: background .2s ease, color .2s ease !important; }
.flux-store .fs-core__item .ic svg { width: 26px; height: 26px; }
.flux-store .fs-core__item h4 { font-size: 17px; font-weight: 700; color: var(--fs-ink); margin-bottom: 7px; }
.flux-store .fs-core__item p { color: var(--fs-muted); font-size: 15px; }

/* ---- FAQ (static cards — no JS) ---------------------------------- */
.flux-store .fs-faq { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; }
.flux-store .fs-faq__card {
  background: var(--fs-surface); border: 1px solid var(--fs-line);
  border-left: 3px solid var(--fs-accent); border-radius: var(--fs-radius-sm);
  padding: 20px 22px; display: flex; gap: 14px; align-items: flex-start;
  transition: transform .2s ease, box-shadow .2s ease;
}
.flux-store .fs-faq__card:hover { transform: translateY(-2px) !important; box-shadow: var(--fs-shadow) !important; transition: transform .2s ease, box-shadow .2s ease !important; }
.flux-store .fs-faq__q {
  flex: none; width: 28px; height: 28px; border-radius: 8px;
  background: var(--fs-accent-soft); color: var(--fs-accent);
  font-family: var(--fs-mono); font-weight: 700; font-size: 14px;
  display: grid; place-items: center; line-height: 1;
}
.flux-store .fs-faq__body { flex: 1; min-width: 0; }
.flux-store .fs-faq__body h3 { font-size: 16px; font-weight: 700; color: var(--fs-ink) !important; line-height: 1.35; margin: 0 0 8px !important; }
.flux-store .fs-faq__body p { color: var(--fs-muted); font-size: 15px; line-height: 1.55; }

/* ---- Legal / license --------------------------------------------- */
.flux-store .fs-legal {
  background: var(--fs-surface); border: 1px solid var(--fs-line);
  border-radius: var(--fs-radius); padding: 32px;
}
.flux-store .fs-legal + .fs-legal { margin-top: 18px; }
.flux-store .fs-legal h3 { font-size: 19px; font-weight: 700; color: var(--fs-ink); margin-bottom: 6px; }
.flux-store .fs-rule { height: 1px; background: var(--fs-line); margin: 18px 0; }
.flux-store .fs-legal p { color: var(--fs-muted); margin: 0 0 12px !important; font-size: 15px; }
.flux-store .fs-legal p:last-child { margin-bottom: 0 !important; }
.flux-store .fs-legal ul.bullets { margin-top: 6px; }
.flux-store .fs-legal ul.bullets li {
  position: relative; padding-left: 20px !important; padding-bottom: 7px !important;
  color: var(--fs-muted); font-size: 15px; list-style: none !important; margin: 0 !important;
}
.flux-store .fs-legal ul.bullets li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--fs-accent);
}
.flux-store .fs-note {
  background: var(--fs-accent-soft); border-left: 3px solid var(--fs-accent);
  padding: 13px 16px; border-radius: 8px; color: var(--fs-text); font-size: 15px; margin-top: 6px;
}
.flux-store .fs-note b { color: var(--fs-accent); }
.flux-store .fs-history li {
  border-left: 2px solid var(--fs-line) !important; padding: 0 0 22px 22px !important; position: relative;
  list-style: none !important; margin: 0 !important;
}
.flux-store .fs-history li::before {
  content: ""; position: absolute; left: -6px; top: 4px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--fs-surface); border: 2px solid var(--fs-accent);
}
.flux-store .fs-history li h3 { margin: 0 0 8px !important; }
.flux-store .fs-history li p { margin: 0 !important; }

/* ---- Final contact CTA ------------------------------------------- */
.flux-store .fs-contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 32px; }
.flux-store .fs-contact-card {
  background: var(--fs-surface) !important; border: 1px solid var(--fs-line) !important;
  border-radius: var(--fs-radius-sm); padding: 24px 22px;
  display: flex !important; align-items: center; gap: 15px; color: var(--fs-text) !important; text-decoration: none !important;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.flux-store .fs-contact-card:hover { border-color: var(--fs-accent) !important; transform: translateY(-3px) !important; box-shadow: var(--fs-shadow) !important; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease !important; }
.flux-store .fs-contact-card .ic {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: var(--fs-accent-soft); color: var(--fs-accent);
  display: grid; place-items: center;
}
.flux-store .fs-contact-card .ic svg { width: 21px; height: 21px; }
.flux-store .fs-contact-card .lbl { font-size: 13.5px; color: var(--fs-muted) !important; }
.flux-store .fs-contact-card .val { font-size: 17px; font-weight: 700; color: var(--fs-ink) !important; word-break: break-all; }

/* ---- Focus visibility (a11y) ------------------------------------- */
.flux-store a:focus-visible, .flux-store .fs-btn:focus-visible {
  outline: 3px solid var(--fs-accent); outline-offset: 3px; border-radius: 6px;
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 900px) {
  .flux-store .fs-hero__grid, .flux-store .fs-split { grid-template-columns: 1fr; gap: 30px; }
  .flux-store .fs-split--reverse .fs-split__media { order: 0; }
  .flux-store .fs-gallery { grid-template-columns: repeat(2, 1fr); }
  .flux-store .fs-tools { grid-template-columns: repeat(4, 1fr); }
  .flux-store .fs-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .flux-store .fs-stats__item:nth-child(2) { border-right: 0; }
  .flux-store .fs-stats__item:nth-child(1),
  .flux-store .fs-stats__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 720px) {
  .flux-store .fs-section { padding: 56px 0; }
  .flux-store .fs-hero { padding: 68px 0 52px; }
  .flux-store .fs-wrap { padding: 0 16px; }
  .flux-store .fs-grid-pillars,
  .flux-store .fs-grid-3,
  .flux-store .fs-core,
  .flux-store .fs-inner,
  .flux-store .fs-speed,
  .flux-store .fs-contact-grid,
  .flux-store .fs-faq { grid-template-columns: 1fr; }
  .flux-store .fs-tools { grid-template-columns: repeat(3, 1fr); }
  .flux-store .fs-gallery { grid-template-columns: 1fr; }
  .flux-store .fs-checklist { grid-template-columns: 1fr; }
  .flux-store .fs-checklist__col { border-right: 0; border-bottom: 1px solid var(--fs-line); }
  .flux-store .fs-checklist__col:last-child { border-bottom: 0; }
  .flux-store .fs-banner { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .flux-store .fs-legal { padding: 24px 20px; }
}

@media (max-width: 440px) {
  .flux-store .fs-tools { grid-template-columns: repeat(2, 1fr); }
  .flux-store .fs-btns { flex-direction: column; align-items: stretch; }
  .flux-store .fs-btn { justify-content: center; }
}

/* ---- Reduced motion ---------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .flux-store *, .flux-store *::before, .flux-store *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .flux-store .fs-promptbar .cursor { opacity: 1; animation: none; }
}
