@charset "utf-8";

/* =====================================================================
   Flux — Sales Page (HTML Module)
   Direction: "Studio Bench" — a precision-creative-tool aesthetic.
   Every selector is scoped under `.flux-sales` so this file cannot
   leak into or be overridden by the surrounding DNN theme.
   System font stacks only — no Google Fonts.
   ===================================================================== */

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

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

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

  /* layout */
  --flux-wrap:   1070px;
  --flux-radius: 18px;
  --flux-radius-sm: 12px;

  /* effects */
  --flux-shadow:    0 1px 2px rgba(17,25,43,.04), 0 18px 40px -24px rgba(17,25,43,.28);
  --flux-shadow-lg: 0 2px 6px rgba(17,25,43,.05), 0 40px 70px -32px rgba(17,25,43,.30);

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

/* All real text lives inside containers; keep base element styles minimal */
.flux-sales h1,
.flux-sales h2,
.flux-sales h3,
.flux-sales h4,
.flux-sales h5,
.flux-sales h6,
.flux-sales p,
.flux-sales ul,
.flux-sales ol,
.flux-sales figure {
  margin: 0;
  padding: 0;
  font-weight: inherit;
}
.flux-sales ul,
.flux-sales ol { list-style: none; }
.flux-sales img { max-width: 100%; height: auto; display: block; }
.flux-sales a { color: inherit; }

/* Shared width container */
.flux-sales .flux-wrap {
  width: 100%;
  max-width: var(--flux-wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Sections ----------------------------------------------------- */
.flux-sales .flux-section {
  padding: 96px 0;
  position: relative;
}
.flux-sales .flux-section--tight { padding: 64px 0; }
/* Trim only the top spacing — used when the previous section already provides
   ample bottom padding, to avoid a double gap (e.g. FAQ right after Core Features). */
.flux-sales .flux-section--top-tight { padding-top: 48px; }
/* `--dark` kept as a class hook but now renders as a light surface so no
   section uses a dark background anywhere on the page. */
.flux-sales .flux-section--dark {
  background: var(--flux-surface);
  color: var(--flux-text);
}
.flux-sales .flux-section--tint { background: #EEF0F4; }

/* ---- Typography --------------------------------------------------- */
.flux-sales .flux-eyebrow {
  font-family: var(--flux-mono);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--flux-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.flux-sales .flux-eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--flux-accent);
  display: inline-block;
}
.flux-sales .flux-section--dark .flux-eyebrow { color: var(--flux-accent); }

.flux-sales .flux-display {
  font-family: var(--flux-font);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.04;
  color: var(--flux-ink);
  font-size: clamp(34px, 5vw, 56px);
}
.flux-sales .flux-section--dark .flux-display { color: var(--flux-ink); }

.flux-sales .flux-h2 {
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  color: var(--flux-ink);
  font-size: clamp(28px, 3.4vw, 40px);
}
.flux-sales .flux-section--dark .flux-h2 { color: var(--flux-ink); }

.flux-sales .flux-h3 {
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--flux-ink);
  font-size: clamp(20px, 2vw, 24px);
}

.flux-sales .flux-lead {
  font-size: 19px;
  color: var(--flux-text);
  max-width: 62ch;
}
.flux-sales .flux-muted { color: var(--flux-muted); }
.flux-sales .flux-section--dark .flux-muted { color: var(--flux-muted); }

.flux-sales .flux-accent-text { color: var(--flux-accent); }

/* center stack helper */
.flux-sales .flux-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.flux-sales .flux-head .flux-eyebrow { justify-content: center; }
.flux-sales .flux-head .flux-lead { margin: 20px auto 0; }

/* Heading + inline CTA on one row (title left, button right) */
.flux-sales .flux-headrow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.flux-sales .flux-headrow .flux-head {
  text-align: left;
  margin: 0;
  flex: 1 1 360px;
}
.flux-sales .flux-headrow .flux-head .flux-eyebrow { justify-content: flex-start; }
.flux-sales .flux-headrow .flux-head .flux-lead { margin-left: 0; }
.flux-sales .flux-headrow .flux-cta { flex: none; padding-bottom: 6px; }

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

/* ---- Hero --------------------------------------------------------- */
.flux-sales .flux-hero {
  padding: 120px 0 90px;
  background:
    radial-gradient(900px 480px at 82% -8%, rgba(255,84,54,.14), transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, var(--flux-paper) 100%);
  position: relative;
  overflow: hidden;
}
.flux-sales .flux-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.flux-sales .flux-hero__title {
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.02;
  color: var(--flux-ink);
  font-size: clamp(40px, 6.4vw, 72px);
  margin: 20px 0 0;
}
.flux-sales .flux-hero__sub {
  margin-top: 22px;
  font-size: 20px;
  color: var(--flux-muted);
  max-width: 46ch;
}
.flux-sales .flux-hero__sub b { color: var(--flux-text); font-weight: 700; }
.flux-sales .flux-hero__ctas { margin-top: 34px; }
.flux-sales .flux-hero__stats {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
.flux-sales .flux-hero__stat .num {
  font-family: var(--flux-mono);
  font-weight: 700;
  font-size: 28px;
  color: var(--flux-ink);
  letter-spacing: -.02em;
}
.flux-sales .flux-hero__stat .lbl {
  display: block;
  font-size: 13px;
  color: var(--flux-muted);
  margin-top: 2px;
}

/* ---- Signature: Prompt -> Page panel ------------------------------ */
.flux-sales .flux-promptcard {
  position: relative;
  background: var(--flux-surface);
  border: 1px solid var(--flux-line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--flux-shadow-lg);
}
.flux-sales .flux-promptcard__win {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 4px 6px 14px;
}
.flux-sales .flux-promptcard__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--flux-line); }
.flux-sales .flux-promptcard__dot:nth-child(1){ background:#FF5F57; }
.flux-sales .flux-promptcard__dot:nth-child(2){ background:#FEBC2E; }
.flux-sales .flux-promptcard__dot:nth-child(3){ background:#28C840; }
.flux-sales .flux-promptbar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0F1626;
  color: #E9EDF5;
  border-radius: 14px;
  padding: 16px 18px;
  font-family: var(--flux-mono);
  font-size: 14.5px;
}
.flux-sales .flux-promptbar .ic {
  width: 30px; height: 30px; flex: none;
  border-radius: 8px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--flux-accent), #FF8A5C);
  color: #fff;
}
.flux-sales .flux-promptbar .txt { flex: 1; }
.flux-sales .flux-promptbar .txt em { color: #8A93A6; font-style: normal; }
.flux-sales .flux-promptbar .cursor {
  display: inline-block;
  width: 8px; height: 17px;
  background: var(--flux-accent);
  vertical-align: -3px;
  margin-left: 2px;
  animation: flux-blink 1.1s steps(2,end) infinite;
}
@keyframes flux-blink { 50% { opacity: 0; } }

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

/* rendered mini page mock */
.flux-sales .flux-mockpage {
  background: #FBFBFD;
  border: 1px solid var(--flux-line);
  border-radius: 14px;
  overflow: hidden;
}
.flux-sales .flux-mockpage__top {
  display: flex; gap: 6px;
  padding: 12px 14px;
  border-bottom: 1px dashed var(--flux-line);
}
.flux-sales .flux-mockpage__top b { width: 10px; height: 10px; border-radius: 50%; background: var(--flux-line); display:block; }
.flux-sales .flux-mockpage__body { padding: 18px; }
.flux-sales .flux-mockhero {
  background: linear-gradient(120deg, #11192B, #29375a);
  border-radius: 10px;
  padding: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.flux-sales .flux-mockhero .h { width: 70%; height: 12px; background: #fff; border-radius: 4px; opacity:.95; }
.flux-sales .flux-mockhero .h2 { width: 45%; height: 9px; background: rgba(255,255,255,.6); border-radius: 4px; margin-top: 8px; }
.flux-sales .flux-mockhero .pill { width: 78px; height: 22px; border-radius: 999px; background: var(--flux-accent); margin-top: 14px; }
.flux-sales .flux-mockrow {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 12px;
}
.flux-sales .flux-mockcard {
  background: #fff;
  border: 1px solid var(--flux-line);
  border-radius: 8px;
  padding: 12px;
}
.flux-sales .flux-mockcard .ico { width: 22px; height: 22px; border-radius: 6px; background: var(--flux-accent-soft); }
.flux-sales .flux-mockcard .ln { height: 7px; border-radius: 3px; background: var(--flux-line); margin-top: 10px; }
.flux-sales .flux-mockcard .ln.s { width: 60%; }
.flux-sales .flux-mockprice {
  display: flex; gap: 10px; margin-top: 12px;
}
.flux-sales .flux-mockprice .tier {
  flex: 1; height: 46px; border-radius: 8px; border: 1px solid var(--flux-line); background:#fff;
  display:flex; align-items:center; justify-content:center;
}
.flux-sales .flux-mockprice .tier.hot { border-color: var(--flux-accent); box-shadow: 0 0 0 3px var(--flux-accent-soft); }

.flux-sales .flux-badge-live {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--flux-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--flux-accent);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--flux-line);
  padding: 5px 9px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}
.flux-sales .flux-badge-live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--flux-accent);
  box-shadow: 0 0 0 4px rgba(255,84,54,.18);
}

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

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

/* ---- Why Flux (3 benefits) --------------------------------------- */
.flux-sales .flux-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.flux-sales .flux-benefit {
  background: var(--flux-surface);
  border: 1px solid var(--flux-line);
  border-radius: var(--flux-radius);
  padding: 34px 30px;
  text-align: left;
}
.flux-sales .flux-benefit .ic {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, var(--flux-accent) 0%, #FF8A5C 100%);
  color: #fff;
  display: grid; place-items: center; margin-bottom: 22px;
  box-shadow: 0 10px 22px -10px rgba(255,84,54,.6);
}
.flux-sales .flux-benefit .ic svg { width: 28px; height: 28px; }
.flux-sales .flux-benefit h3 { margin-bottom: 12px; }
.flux-sales .flux-benefit p { color: var(--flux-muted); }

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

/* ---- Compatibility row ------------------------------------------- */
.flux-sales .flux-compat {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 22px 56px;
}
.flux-sales .flux-compat__item { text-align: center; }
.flux-sales .flux-compat__item .img {
  height: 48px; display: grid; place-items: center; margin-bottom: 10px;
  color: var(--flux-muted);
  transition: color .2s ease, transform .2s ease;
}
.flux-sales .flux-compat__item:hover .img { color: var(--flux-accent); transform: translateY(-2px); }
.flux-sales .flux-compat__item .img svg { width: 40px; height: 40px; }
.flux-sales .flux-compat__item h6 {
  font-size: 13px; color: var(--flux-muted); font-weight: 600; letter-spacing: .02em;
}

/* ---- Template gallery -------------------------------------------- */
.flux-sales .flux-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.flux-sales .flux-tile {
  display: block;
  border-radius: var(--flux-radius-sm);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--flux-line);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.flux-sales .flux-tile:hover { transform: translateY(-4px); box-shadow: var(--flux-shadow); border-color: #D7DCE6; }
.flux-sales .flux-tile__shot { overflow: hidden; aspect-ratio: 16 / 11; background: #EEF0F4; }
.flux-sales .flux-tile__shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.flux-sales .flux-tile:hover .flux-tile__shot img { transform: scale(1.04); }
.flux-sales .flux-tile__cap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 15px;
}
.flux-sales .flux-tile__cap h4 { font-size: 15px; font-weight: 600; color: var(--flux-ink); }
.flux-sales .flux-tile__new {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: var(--flux-mono); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; background: var(--flux-accent);
  padding: 4px 8px; border-radius: 999px;
}

/* ---- PageSpeed card ---------------------------------------------- */
.flux-sales .flux-speed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 600px;
  margin: 0 auto;
}
.flux-sales .flux-speed__card {
  background: var(--flux-surface);
  border: 1px solid var(--flux-line);
  border-radius: var(--flux-radius);
  padding: 32px 26px 26px;
  text-align: center;
}
/* Lighthouse-style score gauge (replaces the score screenshot images).
   Matches the real PageSpeed Insights gauge:
   - thin colored arc, no visible track ring (just the unfilled arc)
   - Lighthouse colors: green #0CCE6B (>=90), orange #FFA400 (50-89), red #FF4E42 (<50)
   - center shows the numeric score + rating word
   Angle = score/100 * 360. Mobile 83 => 298.8deg, Desktop 95 => 342deg. */
.flux-sales .flux-ring {
  --ring-size: 150px;
  position: relative;
  width: var(--ring-size);
  height: var(--ring-size);
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.flux-sales .flux-ring--83 {
  background: conic-gradient(#FFA400 0 298.8deg, #F1F1F4 298.8deg 360deg);
}
.flux-sales .flux-ring--95 {
  background: conic-gradient(#0CCE6B 0 342deg, #F1F1F4 342deg 360deg);
}
/* Inner hole (white disc) + center label */
.flux-sales .flux-ring__hole {
  width: 86%;
  height: 86%;
  border-radius: 50%;
  background: var(--flux-surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.flux-sales .flux-ring__num {
  font-family: var(--flux-mono);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -.03em;
}
.flux-sales .flux-ring__lbl {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--flux-muted);
  margin-top: 2px;
  text-transform: capitalize;
}
/* Lighthouse score colors on the number */
.flux-sales .flux-ring--83 .flux-ring__num,
.flux-sales .flux-ring--83 .flux-ring__lbl { color: #FFA400; }
.flux-sales .flux-ring--95 .flux-ring__num,
.flux-sales .flux-ring--95 .flux-ring__lbl { color: #0CCE6B; }
.flux-sales .flux-speed__card h3 { margin-top: 4px; }

/* ---- Tool icons grid --------------------------------------------- */
.flux-sales .flux-tools {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.flux-sales .flux-tool {
  background: var(--flux-surface);
  border: 1px solid var(--flux-line);
  border-radius: var(--flux-radius-sm);
  padding: 20px 10px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.flux-sales .flux-tool:hover { transform: translateY(-3px); border-color: var(--flux-accent); }
.flux-sales .flux-tool .ic {
  width: 40px; height: 40px; margin: 0 auto 10px;
  color: var(--flux-ink);
  display: grid; place-items: center;
  transition: color .2s ease;
}
.flux-sales .flux-tool:hover .ic { color: var(--flux-accent); }
.flux-sales .flux-tool .ic svg { width: 32px; height: 32px; }
.flux-sales .flux-tool h4 { font-size: 12.5px; font-weight: 600; color: var(--flux-text); line-height: 1.3; }

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

/* ---- Banner CTA -------------------------------------------------- */
.flux-sales .flux-banner {
  border-radius: var(--flux-radius);
  padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  background: var(--flux-accent);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 50px -28px rgba(255,84,54,.7);
}
.flux-sales .flux-banner::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 100% 0%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}
.flux-sales .flux-banner > * { position: relative; z-index: 1; }
.flux-sales .flux-banner h3 { color: #fff; font-size: clamp(24px, 2.6vw, 32px); }
.flux-sales .flux-banner p { color: rgba(255,255,255,.85); margin-top: 8px; }
/* Ghost button reads correctly on the coral fill */
.flux-sales .flux-banner .flux-btn--ghost {
  --fg: #fff;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.4);
}
.flux-sales .flux-banner .flux-btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.22); }

/* ---- Core features grid ------------------------------------------ */
.flux-sales .flux-core {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.flux-sales .flux-core__item {
  background: var(--flux-surface);
  border: 1px solid var(--flux-line);
  border-radius: var(--flux-radius);
  padding: 28px 26px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.flux-sales .flux-core__item:hover { transform: translateY(-3px); box-shadow: var(--flux-shadow); }
.flux-sales .flux-core__item .ic {
  width: 52px; height: 52px; margin-bottom: 16px;
  border-radius: 14px;
  background: var(--flux-accent-soft); color: var(--flux-accent);
  display: grid; place-items: center;
  transition: background .2s ease, color .2s ease;
}
.flux-sales .flux-core__item:hover .ic { background: var(--flux-accent); color: #fff; }
.flux-sales .flux-core__item .ic svg { width: 28px; height: 28px; }
.flux-sales .flux-core__item h4 { font-size: 17px; font-weight: 700; color: var(--flux-ink); margin-bottom: 8px; }
.flux-sales .flux-core__item p { color: var(--flux-muted); font-size: 14.5px; }

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

/* ---- License / Policy / History ---------------------------------- */
.flux-sales .flux-legal {
  background: var(--flux-surface);
  border: 1px solid var(--flux-line);
  border-radius: var(--flux-radius);
  padding: 40px;
}
.flux-sales .flux-legal + .flux-legal { margin-top: 22px; }
.flux-sales .flux-legal h3 {
  font-size: 19px; font-weight: 700; color: var(--flux-ink);
  margin-bottom: 6px;
}
.flux-sales .flux-legal .flux-rule {
  height: 1px; background: var(--flux-line); margin: 22px 0;
}
.flux-sales .flux-legal p { color: var(--flux-muted); margin-bottom: 12px; font-size: 15.5px; }
.flux-sales .flux-legal ul.bullets { margin-top: 8px; }
.flux-sales .flux-legal ul.bullets li {
  position: relative; padding-left: 22px; padding-bottom: 8px;
  color: var(--flux-muted); font-size: 15px;
}
.flux-sales .flux-legal ul.bullets li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--flux-accent);
}
.flux-sales .flux-legal .flux-note {
  background: var(--flux-accent-soft);
  border-left: 3px solid var(--flux-accent);
  padding: 14px 18px; border-radius: 8px;
  color: var(--flux-text); font-size: 15px; margin-top: 6px;
}
.flux-sales .flux-legal .flux-note b { color: var(--flux-accent); }

.flux-sales .flux-history li {
  border-left: 2px solid var(--flux-line);
  padding: 0 0 26px 26px; position: relative;
}
.flux-sales .flux-history li::before {
  content: ""; position: absolute; left: -7px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--flux-surface); border: 2px solid var(--flux-accent);
}
.flux-sales .flux-history li h3 { margin-bottom: 8px; }

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

/* ---- Divider ------------------------------------------------------ */
.flux-sales .flux-divider { height: 1px; background: var(--flux-line); margin: 0; border: 0; }

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

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 960px) {
  .flux-sales .flux-hero__grid,
  .flux-sales .flux-split { grid-template-columns: 1fr; gap: 36px; }
  .flux-sales .flux-split--reverse .flux-split__media { order: 0; }
  .flux-sales .flux-tools { grid-template-columns: repeat(4, 1fr); }
  .flux-sales .flux-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .flux-sales .flux-section { padding: 64px 0; }
  .flux-sales .flux-hero { padding: 80px 0 64px; }
  .flux-sales .flux-wrap { padding: 0 18px; }
  .flux-sales .flux-grid-3,
  .flux-sales .flux-grid-4,
  .flux-sales .flux-core,
  .flux-sales .flux-inner,
  .flux-sales .flux-speed,
  .flux-sales .flux-contact-grid { grid-template-columns: 1fr; }
  .flux-sales .flux-tools { grid-template-columns: repeat(3, 1fr); }
  .flux-sales .flux-gallery { grid-template-columns: 1fr; }
  .flux-sales .flux-checklist { grid-template-columns: 1fr; }
  .flux-sales .flux-checklist__col { border-right: 0; border-bottom: 1px solid var(--flux-line); }
  .flux-sales .flux-checklist__col:last-child { border-bottom: 0; }
  .flux-sales .flux-faq { grid-template-columns: 1fr; }
  .flux-sales .flux-banner { padding: 36px 26px; flex-direction: column; align-items: flex-start; }
  .flux-sales .flux-legal { padding: 26px 22px; }
  .flux-sales .flux-hero__stats { gap: 24px; }
}

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

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