/* ============================================================
   PRIME IA — Landing page
   Flat, low-radius design system with switchable color themes.

   HOW THEMES WORK
   ----------------
   Every color/radius is a CSS variable. The default theme lives in
   :root. Alternate themes override variables under [data-theme="..."].
   Switch theme by setting  <html data-theme="indigo">  (see index.html)
   or use the floating theme switcher (enabled in app.js CONFIG).
   Once you pick one, hardcode it on <html> and delete the switcher.
   ============================================================ */

/* ---------- DESIGN TOKENS (default theme: Indigo, light) ---------- */
:root {
  /* radius — technical/product: tight, near-square (density as honesty) */
  --r-chip: 3px;
  --r-btn: 4px;
  --r-card: 5px;
  --r-lg: 6px;
  --r-phone: 26px;

  /* mono layer — labels, numeric readouts, status */
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* surfaces */
  --bg: #f5f6f9;
  --surface: #ffffff;
  --surface-2: #f1f3f7;
  --border: #e4e7ee;
  --border-strong: #d3d8e2;

  /* text */
  --text: #161922;
  --text-muted: #565d6e;
  --text-dim: #8b91a1;

  /* accent */
  --accent: #4f46e5;
  --accent-strong: #4338ca;
  --accent-light: #6d64f0;
  --accent-contrast: #ffffff;
  --accent-soft: #eef0fe;
  --accent-border: #c7ccf7;
  --accent-rgb: 79, 70, 229;

  /* semantic */
  --danger: #dc2626;
  --danger-soft: #fef2f2;
  --danger-border: #f6cdcd;
  --danger-rgb: 220, 38, 38;
  --success: #16a34a;
  --success-soft: #f0fdf4;
  --success-border: #bbe7c6;
  --gold: #d4a017;
  /* secondary "trust" hue — used sparingly (security / secure access) */
  --info: #2563eb;
  --info-soft: #eff6ff;
  --info-border: #bfdbfe;

  /* layout */
  --maxw: 560px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .08);
  --shadow-md: 0 6px 20px rgba(16, 24, 40, .09);
  --shadow-lg: 0 18px 44px rgba(16, 24, 40, .14);

  /* depth helpers (driven by --accent-rgb so they follow each theme) */
  --grad-accent: linear-gradient(180deg, var(--accent-light), var(--accent) 55%, var(--accent-strong));
  --grad-surface: linear-gradient(180deg, var(--surface), var(--surface-2));
  --glow: rgba(var(--accent-rgb), .18);
  --shadow-accent: 0 10px 28px rgba(var(--accent-rgb), .30);
  --shadow-accent-lg: 0 16px 40px rgba(var(--accent-rgb), .38);
  --ring-accent: 0 0 0 1px rgba(var(--accent-rgb), .18);
}

/* ---------- ALTERNATE THEMES ---------- */

/* Prestige — DEFAULT. Technical/product: graphite mono UI, one signal color
   (electric lime) used only on price, primary action, and live status.
   Borders over shadows; density over decoration. */
[data-theme="prestige"] {
  --bg: #0c0d10; --surface: #121317; --surface-2: #16181d;
  --border: #23262d; --border-strong: #333842;
  --text: #eef0f2; --text-muted: #9aa0aa; --text-dim: #6b7280;
  --accent: #c6f24e; --accent-strong: #b2e02f; --accent-light: #d8fa7e; --accent-contrast: #10130a;
  --accent-soft: rgba(198,242,78,.09); --accent-border: rgba(198,242,78,.34); --accent-rgb: 198, 242, 78;
  --danger: #ff6b5e; --danger-soft: rgba(255,107,94,.10); --danger-border: rgba(255,107,94,.32); --danger-rgb: 255, 107, 94;
  --success: #48d597; --success-soft: rgba(72,213,151,.10); --success-border: rgba(72,213,151,.30);
  --gold: #e0b64a;
  --info: #6fb2ff; --info-soft: rgba(111,178,255,.10); --info-border: rgba(111,178,255,.30);
  /* signal color is flat — no foil. "gradient" tokens resolve to solid fills. */
  --grad-accent: var(--accent);
  --grad-surface: var(--surface);
  --shadow-sm: 0 0 0 1px rgba(0,0,0,.2);
  --shadow-md: 0 8px 24px rgba(0,0,0,.4);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.5);
}

/* Emerald (light) */
[data-theme="emerald"] {
  --accent: #059669; --accent-strong: #047857; --accent-light: #10b981; --accent-contrast: #ffffff;
  --accent-soft: #ecfdf5; --accent-border: #a7f3d0; --accent-rgb: 5, 150, 105;
}

/* Violet (light) */
[data-theme="violet"] {
  --accent: #7c3aed; --accent-strong: #6d28d9; --accent-light: #9061f5; --accent-contrast: #ffffff;
  --accent-soft: #f5f3ff; --accent-border: #ddd6fe; --accent-rgb: 124, 58, 237;
}

/* Amber (light, warm but flat — no gold foil) */
[data-theme="amber"] {
  --accent: #d97706; --accent-strong: #b45309; --accent-light: #f59e0b; --accent-contrast: #ffffff;
  --accent-soft: #fffbeb; --accent-border: #fde68a; --accent-rgb: 217, 119, 6;
}

/* Blue (light) */
[data-theme="blue"] {
  --accent: #2563eb; --accent-strong: #1d4ed8; --accent-light: #3b82f6; --accent-contrast: #ffffff;
  --accent-soft: #eff6ff; --accent-border: #bfdbfe; --accent-rgb: 37, 99, 235;
}

/* Slate (dark, blue accent) */
[data-theme="slate-dark"] {
  --bg: #0e1117; --surface: #161b23; --surface-2: #1c222c;
  --border: #262d39; --border-strong: #333c4a;
  --text: #eef1f6; --text-muted: #a4adbd; --text-dim: #717a8a;
  --accent: #3b82f6; --accent-strong: #2563eb; --accent-light: #60a5fa; --accent-contrast: #ffffff;
  --accent-soft: #16223a; --accent-border: #284268; --accent-rgb: 59, 130, 246;
  --danger: #f0876f; --danger-soft: #2a1414; --danger-border: #4a1f1f;
  --success: #34d399; --success-soft: #0f231a; --success-border: #1f4634;
  --info: #67b0ff; --info-soft: #0f1f33; --info-border: #284268;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 8px 22px rgba(0,0,0,.45);
  --shadow-lg: 0 20px 44px rgba(0,0,0,.6);
  --grad-surface: linear-gradient(180deg, #1a212b, #141a22);
}

/* Midnight (dark, indigo accent) */
[data-theme="midnight"] {
  --bg: #0c0d16; --surface: #151723; --surface-2: #1b1e2e;
  --border: #262a3d; --border-strong: #353a52;
  --text: #eceef6; --text-muted: #a3a8bd; --text-dim: #6f7488;
  --accent: #818cf8; --accent-strong: #6366f1; --accent-light: #a5adfb; --accent-contrast: #0c0d16;
  --accent-soft: #1a1d33; --accent-border: #2f3560; --accent-rgb: 129, 140, 248;
  --danger: #f0876f; --danger-soft: #2a1414; --danger-border: #4a1f1f;
  --success: #34d399; --success-soft: #0f231a; --success-border: #1f4634;
  --info: #8bb8ff; --info-soft: #161a33; --info-border: #2f3560;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 8px 22px rgba(0,0,0,.45);
  --shadow-lg: 0 20px 44px rgba(0,0,0,.6);
  --grad-surface: linear-gradient(180deg, #191c2b, #131525);
}

/* ---------- RESET / BASE ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Manrope, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.4;
}
::selection { background: var(--accent); color: var(--accent-contrast); }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
a { color: inherit; }

/* keyboard focus — visible ring for every interactive element (a11y) */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }

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

/* Ambient background — technical grid texture. A faint fixed graph-paper grid
   plus a single soft top wash. No pulsing glow: static, structural, quiet. */
.bg-glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(var(--border) 1px, transparent 1px) 0 0 / 100% 34px,
    linear-gradient(90deg, var(--border) 1px, transparent 1px) 0 0 / 34px 100%,
    radial-gradient(90% 40% at 50% -10%, rgba(var(--accent-rgb), .05), transparent 60%);
  opacity: .55;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 65%);
          mask-image: linear-gradient(180deg, #000, transparent 65%);
}
.bg-glow::before, .bg-glow::after { content: none; }
@keyframes glowPulse { 0%, 100% { opacity: .5; } 50% { opacity: .9; } }

/* ---------- LAYOUT ---------- */
.page { position: relative; z-index: 1; }
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
}
.block { margin-top: 48px; }
.block--center { text-align: center; }

/* ---------- TYPOGRAPHY ---------- */
.h2 {
  margin: 0 0 8px;
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--text);
}
.h2--center { text-align: center; }
.lead {
  margin: 0 auto 20px;
  max-width: 440px;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.block:not(.block--center) > .h2 { text-align: center; }
.eyebrow {
  text-align: center;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.eyebrow--accent { color: var(--accent); }
.eyebrow--danger { color: var(--danger); }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announce {
  position: sticky; top: 0; z-index: 60;
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--accent-border);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.announce__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 9px 14px;
  display: flex; align-items: center; justify-content: center;
  gap: 9px; flex-wrap: nowrap; white-space: nowrap; text-align: center;
}
.announce__tag { font-weight: 800; font-size: 11px; letter-spacing: .03em; color: var(--accent-strong); flex: none; }
.announce__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-strong); flex: none; }
.announce__label { font-weight: 700; font-size: 11px; color: var(--text-dim); flex: none; }

/* ---------- WAVE / LIMITED ACCESS BAR ---------- */
.announce__lock { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-weight: 600; font-size: 11px; color: var(--danger); flex: none; }
/* live status dot — replaces the lock emoji (technical readout, not decoration) */
.announce__ic { width: 6px; height: 6px; border-radius: 50%; background: var(--danger); flex: none; box-shadow: 0 0 0 0 rgba(var(--danger-rgb), .5); animation: statusPulse 2.4s ease-out infinite; }
@keyframes statusPulse { 0% { box-shadow: 0 0 0 0 rgba(var(--danger-rgb), .5); } 70%, 100% { box-shadow: 0 0 0 5px rgba(var(--danger-rgb), 0); } }
.announce__wave { font-family: var(--mono); font-weight: 600; font-size: 11px; color: var(--text); flex: none; }
.announce__wave b { color: var(--accent); }
.announce__left { font-family: var(--mono); font-weight: 600; font-size: 11px; color: var(--text-muted); flex: none; }
.announce__left b { color: var(--danger); }
.announce__next { font-family: var(--mono); font-weight: 600; font-size: 11px; color: var(--text-muted); flex: none; }
.announce__next b { color: var(--gold); }
.announce__dot--next { background: var(--accent-border); }
.announce__progress { height: 3px; background: var(--surface-2); }
.announce__progress > span { display: block; height: 100%; width: 8%; background: var(--grad-accent); transition: width .6s cubic-bezier(.2,.7,.2,1); }

/* keep it on ONE line on small screens */
@media (max-width: 460px) {
  .announce__inner { gap: 6px; padding: 8px 10px; }
  .announce__lead { display: none; }       /* keep just the lock icon */
  .announce__lock, .announce__wave, .announce__left, .announce__next { font-size: 10px; }
}

/* countdown */
.countdown { display: inline-flex; gap: 3px; font-family: var(--mono); font-weight: 700; font-size: 11.5px; }
.countdown__cell {
  background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-border);
  border-radius: var(--r-chip); padding: 2px 5px; min-width: 20px; text-align: center;
}
.countdown--lg { gap: 4px; font-size: 14px; align-items: center; color: var(--accent); }
.countdown--lg .countdown__cell { padding: 5px 9px; }

/* ---------- BRAND ---------- */
.brand { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 24px 0 8px; }
.brand__logo { color: var(--accent); }
.brand__name { font-weight: 800; font-size: 17px; letter-spacing: .18em; color: var(--text); }

/* ---------- HERO ---------- */
.hero { text-align: center; padding: 8px 0 4px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  border-radius: var(--r-chip); padding: 7px 13px; margin-bottom: 18px;
  font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-strong);
}
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.hero__title {
  margin: 0;
  font-family: Archivo, sans-serif; font-weight: 900;
  font-size: 40px; line-height: 1.0; letter-spacing: -.02em;
  text-transform: uppercase; color: var(--text);
}
.hero__sub { margin: 20px auto 0; max-width: 430px; font-weight: 700; font-size: 18px; line-height: 1.4; color: var(--text); }
.pill-danger { color: #fff; background: var(--danger); padding: 1px 9px; border-radius: var(--r-chip); font-weight: 800; white-space: nowrap; }
.pill-accent { color: var(--accent-contrast); background: var(--grad-accent); padding: 1px 9px; border-radius: var(--r-chip); font-weight: 800; white-space: nowrap; box-shadow: 0 4px 12px rgba(var(--accent-rgb), .3); }
.strike-soft { text-decoration: line-through; color: var(--text-dim); font-weight: 700; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-chip); padding: 9px 15px;
  font-weight: 700; font-size: 13.5px; color: var(--text);
  box-shadow: var(--shadow-sm);
}
.chip svg { color: var(--accent); flex: none; }

/* ---------- LOGO MARQUEE ---------- */
.marquee {
  position: relative; margin: 22px calc(50% - 50vw) 2px; width: 100vw; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee__row { display: flex; width: max-content; }
.marquee__row + .marquee__row { margin-top: 10px; }
.marquee__row { animation: marquee 60s linear infinite; will-change: transform; }
.marquee__row--rev { animation-direction: reverse; animation-duration: 75s; }
.marquee:hover .marquee__row { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.mq-chip {
  display: inline-flex; align-items: center; gap: 9px; flex: none; margin-right: 10px;
  padding: 8px 15px 8px 8px; border-radius: var(--r-btn);
  background: var(--grad-surface); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.mq-chip__logo {
  flex: none; width: 28px; height: 28px; border-radius: 8px; background: #fff;
  display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--border);
}
.mq-chip__logo img { width: 18px; height: 18px; object-fit: contain; }
.mq-chip__fallback { display: none; width: 100%; height: 100%; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; color: var(--accent); }
.mq-chip__name { font-weight: 700; font-size: 12.5px; color: var(--text); white-space: nowrap; }

/* ---------- ECONOMY BLOCK ---------- */
.economy {
  position: relative; margin-top: 26px; margin-bottom: 26px; text-align: center;
  border-radius: var(--r-lg); padding: 28px 20px 22px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(var(--accent-rgb), .10), transparent 60%),
    var(--grad-surface);
  border: 1px solid var(--accent-border);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}
/* accent top hairline */
.economy::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-accent);
}
.economy__kicker { font-weight: 800; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
.economy__amount {
  font-family: var(--mono); font-weight: 700; font-size: 62px; line-height: .9; letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.economy__unit { font-weight: 800; font-size: 22px; color: var(--text); margin-top: 4px; }
.economy__unit span { color: var(--text-dim); }
.economy__tags { margin-top: 16px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-chip); padding: 7px 12px;
  font-weight: 700; font-size: 11.5px; color: var(--text-muted);
}

/* ---------- BUTTONS ---------- */
.btn {
  border: none; cursor: pointer; border-radius: var(--r-btn);
  font-family: var(--mono); font-weight: 700; letter-spacing: .02em;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.btn--block { width: 100%; }
.btn--primary {
  position: relative;
  padding: 18px 20px; font-size: 16px; text-transform: uppercase;
  background: var(--accent); color: var(--accent-contrast);
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--accent-light); box-shadow: var(--shadow-accent-lg); }
.btn--primary:active { transform: translateY(0); }
.btn--primary:disabled:hover { transform: none; background: var(--accent); box-shadow: var(--shadow-accent); }
.buybar .btn--primary { padding: 13px 20px; font-size: 13px; white-space: nowrap; }

.reassure {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 11px; font-weight: 600; font-size: 11.5px; color: var(--text-dim);
  flex-wrap: wrap;
}

/* ---------- RARE ACCESS STRIP ---------- */
.rare {
  margin-top: 22px; display: flex; align-items: center; gap: 13px;
  padding: 14px 16px; border-radius: var(--r-card);
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  box-shadow: var(--ring-accent);
}
.rare__icon { font-size: 22px; flex: none; }
.rare p { margin: 0; font-weight: 600; font-size: 13px; line-height: 1.5; color: var(--text); }
.rare strong { color: var(--accent); font-weight: 800; }

/* ---------- ACCESS CONSOLE (hero right block) ----------
   Honest product panel: window chrome, live status, the real tool
   stack, and the price math. Replaces the decorative phone mockup. */
.console {
  margin: 28px 0 0; width: auto; max-width: 100%;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-lg);
}
.console__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.console__id { font-family: var(--mono); font-weight: 600; font-size: 11px; letter-spacing: .1em; color: var(--text-dim); }
.console__status { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-weight: 600; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--success); }
.console__led { width: 6px; height: 6px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(72,213,151,.55); animation: statusPulse 2.4s ease-out infinite; }
.console__body { padding: 16px 16px 18px; }
.console__label { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.console__label > span:first-child { font-family: var(--mono); font-weight: 600; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }
.console__count { font-family: var(--mono); font-weight: 700; font-size: 13px; color: var(--accent); }
.console__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.tile { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.tile__logo {
  position: relative; width: 100%; aspect-ratio: 1; border-radius: var(--r-btn);
  background: #fff; display: flex; align-items: center; justify-content: center;
  padding: 14%; border: 1px solid var(--border); overflow: hidden;
}
.tile__logo img { width: 100%; height: 100%; object-fit: contain; }
.tile__fallback { display: none; position: absolute; inset: 0; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; }
.tile__name { font-weight: 600; font-size: 9.5px; color: var(--text-dim); }

/* price math strip inside the console */
.console__math { margin-top: 16px; border-top: 1px dashed var(--border); padding-top: 14px; display: grid; gap: 8px; }
.console__row { display: flex; align-items: baseline; justify-content: space-between; }
.console__k { font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-dim); }
.console__v { font-family: var(--mono); font-weight: 700; font-variant-numeric: tabular-nums; font-size: 15px; color: var(--text); }
.console__v--strike { text-decoration: line-through; color: var(--text-dim); font-weight: 500; }
.console__v--accent { color: var(--accent); font-size: 17px; }

/* ---------- SOCIAL PROOF ---------- */
.social { margin: 26px 0 4px; display: flex; align-items: center; justify-content: center; gap: 13px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatar { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--bg); }
.avatar--1 { background: linear-gradient(135deg, #b6a36a, #4f46e5); }
.avatar--2 { background: linear-gradient(135deg, #6aa3b6, #2563eb); margin-left: -9px; }
.avatar--3 { background: linear-gradient(135deg, #b66a8f, #db2777); margin-left: -9px; }
.avatar--4 { background: linear-gradient(135deg, #6ab695, #059669); margin-left: -9px; }
.social__text { text-align: left; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.stars--sm { font-size: 12px; margin-bottom: 8px; }
.social__count { font-weight: 700; font-size: 12px; color: var(--text-muted); }
.social__count strong { color: var(--text); }

/* ---------- PROBLEM / COST CARD ---------- */
.cost-card {
  background: linear-gradient(180deg, var(--danger-soft), var(--surface));
  border: 1px solid var(--danger-border);
  border-radius: var(--r-card); padding: 16px 18px 14px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: var(--shadow-md);
}
.cost-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: 8px; border-bottom: 1px solid var(--border); font-weight: 600; font-size: 13.5px; color: var(--text-muted); }
.cost-row:nth-last-child(2) { border-bottom: none; padding-bottom: 0; }
.cost-price { font-weight: 700; font-size: 13px; color: var(--danger); }
.cost-total {
  margin-top: 6px; display: flex; justify-content: space-between; align-items: center;
  background: var(--danger); color: #fff; border-radius: var(--r-btn); padding: 12px 15px;
  font-weight: 800; font-size: 14px;
}
.cost-total span:last-child { font-size: 18px; }

/* ---------- SOLUTION / COMPARE ---------- */
.compare { display: flex; align-items: stretch; gap: 12px; justify-content: center; }
.compare__card { flex: 1; border-radius: var(--r-card); padding: 18px 12px; box-shadow: var(--shadow-sm); }
.compare__card--before { background: linear-gradient(180deg, var(--danger-soft), var(--surface)); border: 1px solid var(--danger-border); }
.compare__card--after {
  background: radial-gradient(120% 90% at 50% 0%, rgba(var(--accent-rgb), .12), transparent 65%), var(--grad-surface);
  border: 1px solid var(--accent-border); box-shadow: var(--shadow-md), var(--ring-accent);
}
.compare__label { font-weight: 800; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.compare__card--before .compare__label { color: var(--danger); }
.compare__card--after .compare__label { color: var(--accent); }
.compare__value { font-family: var(--mono); font-weight: 700; font-size: 22px; line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.compare__value--sm { font-size: 21px; }
.compare__card--before .compare__value { color: var(--danger); }
.compare__note { font-weight: 600; font-size: 11px; color: var(--text-dim); margin-top: 4px; }
.compare__arrow { display: flex; align-items: center; font-size: 22px; color: var(--accent); }
.compare__foot { margin: 14px auto 0; max-width: 440px; text-align: center; font-weight: 500; font-size: 12.5px; color: var(--text-muted); }
.compare__foot strong { color: var(--text); font-weight: 800; }

/* ---------- TOOLS SHOWCASE ---------- */
.toolgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.toolcat {
  background: var(--grad-surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 14px 13px;
  box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.toolcat:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent-border); }
.toolcat__title { font-weight: 800; font-size: 11.5px; color: var(--accent); margin-bottom: 10px; }
.toolcat__list { display: flex; flex-direction: column; gap: 7px; }
.toolcat__item { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 12px; color: var(--text-muted); }
.toolcat__check {
  flex: none; width: 15px; height: 15px; border-radius: 50%;
  background: var(--accent-soft); display: flex; align-items: center; justify-content: center;
}
.toolgrid__more { grid-column: 1 / -1; text-align: center; font-weight: 700; font-size: 12px; color: var(--text-dim); padding-top: 2px; }
.value-banner {
  margin-top: 16px;
  background: radial-gradient(120% 100% at 50% 0%, rgba(var(--accent-rgb), .12), transparent 70%), var(--grad-surface);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-card); padding: 18px; text-align: center;
  font-weight: 600; font-size: 12px; color: var(--text-muted);
  box-shadow: var(--shadow-md);
}
.value-banner__amount { font-family: var(--mono); font-weight: 700; font-size: 26px; margin-top: 2px; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }

/* ---------- OFFER ---------- */
.offer {
  margin-top: 52px; scroll-margin-top: 60px;
  position: relative; border-radius: var(--r-lg); padding: 30px 22px 24px;
  background:
    radial-gradient(120% 50% at 50% 0%, rgba(var(--accent-rgb), .14), transparent 60%),
    var(--grad-surface);
  border: 1.5px solid var(--accent-border);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(var(--accent-rgb), .08), inset 0 1px 0 rgba(255,255,255,.05);
  text-align: center; overflow: hidden;
}
.offer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-accent);
}
.offer__badge {
  display: inline-block; font-family: var(--mono); font-weight: 600; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-contrast); background: var(--accent); padding: 8px 16px; border-radius: var(--r-chip); margin-bottom: 14px;
}
.offer__title { margin: 0 0 4px; font-family: Archivo, sans-serif; font-weight: 900; font-size: 25px; color: var(--text); }
.offer__sub { margin: 0 0 18px; font-weight: 600; font-size: 13px; color: var(--text-muted); }
.price-old { margin-bottom: 6px; }
.strike { text-decoration: line-through; color: var(--text-dim); font-weight: 700; }
.price-old .strike { font-size: 17px; }
.price-tag-discount {
  font-weight: 700; font-size: 12px; color: var(--success);
  background: var(--success-soft); border: 1px solid var(--success-border);
  border-radius: var(--r-chip); padding: 3px 8px; margin-left: 6px;
}
.price-now { display: flex; align-items: flex-end; justify-content: center; gap: 6px; }
.price-now > .accent-text { font-family: var(--mono); font-weight: 700; font-size: 58px; line-height: .85; font-variant-numeric: tabular-nums; letter-spacing: -.03em; }
.price-now__unit { font-weight: 700; font-size: 14px; color: var(--text-muted); padding-bottom: 9px; }
.price-note { font-weight: 600; font-size: 12px; color: var(--text-dim); margin-top: 6px; line-height: 1.5; }

/* cost breakdown (today vs. ongoing) */
.breakdown {
  margin-top: 18px; text-align: left; border-radius: var(--r-card);
  border: 1px solid var(--border); background: var(--surface); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.breakdown__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 15px; }
.breakdown__row + .breakdown__row { border-top: 1px dashed var(--border); }
.breakdown__label { font-weight: 800; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--text); }
.breakdown__desc { font-weight: 500; font-size: 11.5px; color: var(--text-dim); margin-top: 2px; }
.breakdown__val { font-family: var(--mono); font-weight: 700; font-size: 17px; font-variant-numeric: tabular-nums; white-space: nowrap; }

.rule { margin: 20px 0; border: none; height: 1px; background: var(--border); }
.features { list-style: none; margin: 0; margin-bottom: 15px; padding: 0; display: flex; flex-direction: column; gap: 11px; text-align: left; }
.features li { display: flex; gap: 11px; align-items: flex-start; font-weight: 600; font-size: 14px; line-height: 1.4; color: var(--text); }
.features strong { font-weight: 800; }
.check {
  flex: none; margin-top: 2px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--accent-soft); position: relative;
}
.check::after {
  content: ""; position: absolute; left: 6px; top: 4px; width: 5px; height: 9px;
  border: solid var(--accent); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
.check--gold { background: var(--gold); }
.check--gold::after { border-color: #fff; }
.secure { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 13px; font-weight: 600; font-size: 11.5px; color: var(--text-dim); }
.paylogos { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 9px; flex-wrap: wrap; }
.paylogos span {
  font-weight: 700; font-size: 10px; color: var(--text-muted);
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-chip); padding: 4px 8px;
}

/* ---------- HOW IT WORKS ---------- */
.steps { display: flex; flex-direction: column; gap: 12px; }
.step {
  display: flex; gap: 15px; align-items: flex-start;
  background: var(--grad-surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 16px 18px;
  box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent-border); }
.step__num {
  flex: none; width: 38px; height: 38px; border-radius: var(--r-chip);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-weight: 700; font-size: 15px; font-variant-numeric: tabular-nums;
  color: var(--accent); background: transparent; border: 1px solid var(--accent-border);
}
.step__num::before { content: "0"; opacity: .5; }
.step__title { font-weight: 800; font-size: 15px; color: var(--text); display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.step__badge { font-family: Manrope, sans-serif; font-weight: 800; font-size: 11px; color: var(--accent-contrast); background: var(--accent); border-radius: var(--r-chip); padding: 3px 8px; }
.step__badge--soft { color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-border); }
.step__once { font-weight: 600; font-size: 11px; color: var(--text-dim); }
.step__desc { margin: 4px 0 0; font-weight: 500; font-size: 12.5px; line-height: 1.45; color: var(--text-muted); }

/* sharing note */
.share-note {
  margin-top: 14px; display: flex; gap: 13px; align-items: flex-start;
  padding: 15px 16px; border-radius: var(--r-card);
  background: var(--accent-soft); border: 1px dashed var(--accent-border);
}
.share-note__icon { font-family: var(--mono); font-weight: 700; font-size: 15px; color: var(--accent); flex: none; line-height: 1.5; }
.share-note p { margin: 0; font-weight: 500; font-size: 12.5px; line-height: 1.5; color: var(--text); }
.share-note strong { color: var(--accent); font-weight: 800; }

/* ---------- AUDIENCE — editorial use-case directory ---------- */
.usecases-intro { max-width: 520px; margin-bottom: 22px; }
.lead--left { text-align: left; margin-left: 0; margin-right: 0; }
.usecases {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--border);
}
.usecase {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px;
  padding: 16px 4px; border-bottom: 1px solid var(--border);
  transition: background .18s ease, padding .18s ease;
}
.usecase:hover { background: var(--surface-2); padding-left: 12px; padding-right: 12px; }
.usecase__idx {
  font-family: var(--mono); font-weight: 600; font-size: 12px; letter-spacing: .1em;
  color: var(--text-dim); font-variant-numeric: tabular-nums;
}
.usecase:hover .usecase__idx { color: var(--accent); }
.usecase__role { font-weight: 800; font-size: 15px; color: var(--text); }
.usecase__desc { font-weight: 500; font-size: 12.5px; line-height: 1.4; color: var(--text-muted); margin-top: 2px; }
.usecase__stack {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .02em; color: var(--text-dim);
  text-align: right; white-space: normal; max-width: 190px;
}
.usecase--feature .usecase__role { color: var(--accent); }
/* mobile: stack the tool list under the role instead of squeezing it right */
@media (max-width: 560px) {
  .usecase { grid-template-columns: auto 1fr; gap: 12px; }
  .usecase__stack { grid-column: 2; text-align: left; max-width: none; margin-top: 8px; }
}

/* ---------- TESTIMONIALS ---------- */
.rating-line { text-align: center; margin-bottom: 18px; }
.rating-line .stars { font-size: 15px; letter-spacing: 2px; }
.rating-line__meta { font-weight: 700; font-size: 12px; color: var(--text-muted); }
.testimonials { display: flex; flex-direction: column; gap: 12px; }
.testimonial {
  position: relative; margin: 0; background: var(--grad-surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: 16px 18px 16px 20px; box-shadow: var(--shadow-sm);
}
.testimonial::before { content: ""; position: absolute; left: 0; top: 14px; bottom: 14px; width: 3px; border-radius: 3px; background: var(--grad-accent); }
.testimonial blockquote { margin: 0 0 12px; font-weight: 500; font-size: 13.5px; line-height: 1.55; color: var(--text); }
.testimonial figcaption { display: flex; align-items: center; gap: 10px; }
.testimonial__name { font-weight: 800; font-size: 12.5px; color: var(--text); }
.testimonial__role { font-weight: 600; font-size: 11px; color: var(--text-dim); }

/* ---------- PERSONALITIES ---------- */
.vips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.vip {
  background: var(--grad-surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 15px 8px; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.vip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent-border); }
.vip__avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 62px; height: 62px; border-radius: 50%; border: 2px solid var(--accent-border);
  background: var(--accent-soft); color: var(--accent); font-weight: 800; font-size: 18px;
  box-shadow: var(--ring-accent);
}
.vip__name { font-weight: 800; font-size: 12px; color: var(--text); margin-top: 9px; }
.vip__role { font-weight: 600; font-size: 9.5px; color: var(--text-dim); margin-top: 1px; }
.disclaimer { margin: 14px 0 0; text-align: center; font-weight: 500; font-size: 10px; line-height: 1.4; color: var(--text-dim); }

/* ---------- GUARANTEE ---------- */
.guarantee {
  margin-top: 46px; display: flex; gap: 16px; align-items: center;
  background: linear-gradient(180deg, var(--success-soft), var(--surface)); border: 1px solid var(--success-border);
  border-radius: var(--r-card); padding: 20px; color: var(--success);
  box-shadow: var(--shadow-md);
}
.guarantee__title { font-weight: 800; font-size: 16px; color: var(--text); margin-bottom: 3px; }
.guarantee__desc { margin: 0; font-weight: 500; font-size: 12.5px; line-height: 1.5; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq__item { background: var(--grad-surface); border: 1px solid var(--border); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color .2s ease; }
.faq__item.is-open { border-color: var(--accent-border); }
.faq__q { width: 100%; border: none; background: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; text-align: left; }
.faq__q span:first-child { font-weight: 700; font-size: 14px; color: var(--text); }
.faq__sign { flex: none; font-weight: 700; font-size: 20px; color: var(--accent); line-height: 1; }
.faq__body { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .35s ease, opacity .25s ease, padding .25s ease; padding: 0 18px; }
.faq__item.is-open .faq__body { max-height: 320px; opacity: 1; padding: 0 18px 16px; }
.faq__body p { margin: 0; font-weight: 500; font-size: 13px; line-height: 1.6; color: var(--text-muted); }

/* ---------- FINAL CTA ---------- */
.final {
  position: relative; margin-top: 54px; text-align: center; border-radius: var(--r-lg); padding: 36px 22px;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(var(--accent-rgb), .16), transparent 60%),
    var(--grad-surface);
  border: 1.5px solid var(--accent-border);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
}
.final::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-accent); }
.final__eyebrow {
  display: inline-block; font-weight: 800; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-border);
  padding: 5px 12px; border-radius: var(--r-chip); margin-bottom: 14px;
}
.final__title { margin: 0 0 10px; font-family: Archivo, sans-serif; font-weight: 900; font-size: 38px; line-height: 1.0; text-transform: uppercase; letter-spacing: -.02em; color: var(--text); }
.final__sub { margin: 0 auto 18px; max-width: 380px; font-weight: 500; font-size: 14px; line-height: 1.55; color: var(--text-muted); }
.final__timer { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; font-weight: 600; font-size: 12px; color: var(--text-dim); }
.final__note { font-weight: 600; font-size: 11.5px; color: var(--text-dim); margin-top: 12px; }

/* Offer CTA — tools column (right on desktop/medium, below on mobile) */
.offer__grid { position: relative; z-index: 1; }
.offer__aside {
  margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border); text-align: center;
}
.offer__aside-head { margin-bottom: 14px; }
.offer__aside-title {
  display: block; font-family: Archivo, sans-serif; font-weight: 800; font-size: 15px;
  color: var(--text); letter-spacing: -.01em;
}
.offer__aside-sub { display: block; margin-top: 3px; font-weight: 600; font-size: 12px; color: var(--text-muted); }
.offer__logos { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.offer__logo {
  position: relative; aspect-ratio: 1; border-radius: var(--r-btn); background: #fff;
  display: flex; align-items: center; justify-content: center; padding: 16%;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); overflow: hidden;
}
.offer__logo img { width: 100%; height: 100%; object-fit: contain; }
.offer__logo-fb { display: none; position: absolute; inset: 0; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; }
.offer__aside-more {
  margin-top: 14px; width: 100%; cursor: pointer; font: inherit;
  background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-border);
  border-radius: var(--r-btn); padding: 10px 14px; font-weight: 700; font-size: 12px;
  transition: background .15s ease;
}
.offer__aside-more:hover { background: var(--accent-border); }
.offer__aside-foot { margin-top: 14px; }
.offer__aside-val { display: block; font-weight: 800; font-size: 13px; color: var(--text); }
.offer__aside-val s { color: var(--text-dim); }
.offer__aside-note { display: block; margin-top: 2px; font-weight: 600; font-size: 11.5px; color: var(--text-muted); }

/* ---------- LOGIN (member access by email) ---------- */
.login { display: flex; justify-content: center; padding: 30px 0 80px; }
.login__card {
  width: 100%; max-width: 440px; text-align: center; border-radius: var(--r-lg);
  padding: 34px 26px; background: var(--grad-surface); border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.login__icon { font-size: 34px; margin-bottom: 10px; }
.login__title { margin: 0 0 8px; font-family: Archivo, sans-serif; font-weight: 800; font-size: 24px; line-height: 1.1; color: var(--text); }
.login__sub { margin: 0 auto 22px; max-width: 360px; font-weight: 500; font-size: 13.5px; line-height: 1.55; color: var(--text-muted); }
.login__form { display: flex; flex-direction: column; gap: 12px; }
.login__input {
  width: 100%; font: inherit; font-size: 15px; padding: 14px 16px;
  border-radius: var(--r-btn); border: 1.5px solid var(--border); background: var(--surface); color: var(--text);
}
.login__input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.login__msg { margin: 14px 0 0; font-weight: 600; font-size: 13px; line-height: 1.5; }
.login__msg--info { color: var(--text-muted); }
.login__msg--ok { color: var(--success, #16a34a); }
.login__msg--err { color: #e5484d; }
.login__foot { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-dim); }
.login__foot p { margin: 0 0 10px; line-height: 1.5; }
.login__back { font-weight: 600; text-decoration: none; color: var(--accent); }
.login__back:hover { text-decoration: underline; }

/* ---------- FOOTER ---------- */
.footer { margin-top: 40px; padding: 24px 0 130px; border-top: 1px solid var(--border); text-align: center; }
.footer__brand { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 12px; color: var(--accent); font-weight: 800; font-size: 13px; letter-spacing: .16em; }
.footer__brand span { color: var(--text-muted); }
.footer__legal { margin: 0 auto 10px; max-width: 420px; font-weight: 500; font-size: 10.5px; line-height: 1.6; color: var(--text-dim); }
.footer__links { display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 600; font-size: 10.5px; color: var(--text-muted); flex-wrap: wrap; }
.footer__links a { text-decoration: none; }
.footer__links a:hover { color: var(--accent); }
.footer__copy { margin-top: 12px; font-weight: 600; font-size: 10px; color: var(--text-dim); }

/* ---------- STICKY BUY BAR ---------- */
.buybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: var(--grad-surface); border-top: 1px solid var(--accent-border);
  box-shadow: 0 -8px 28px rgba(16, 24, 40, .14);
  transform: translateY(130%); transition: transform .35s cubic-bezier(.2,.7,.2,1);
  padding-bottom: env(safe-area-inset-bottom);
}
.buybar.is-visible { transform: translateY(0); }
.buybar__inner { max-width: var(--maxw); margin: 0 auto; padding: 10px 14px; display: flex; align-items: center; gap: 12px; }
.buybar__info { flex: 1; min-width: 0; }
.buybar__title {
  font-weight: 800; font-size: 14px; color: var(--text); line-height: 1.15;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.buybar__price { font-weight: 700; font-size: 12px; color: var(--text-dim); line-height: 1.25; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.buybar__price .strike { font-size: 11px; }

@media (max-width: 400px) {
  .buybar__inner { gap: 10px; padding: 9px 12px; }
  .buybar__title { font-size: 13px; }
  .buybar__price { font-size: 11px; }
  .buybar .btn--primary { padding: 12px 16px; font-size: 14px; }
}

/* ---------- THEME SWITCHER (dev tool) ---------- */
.theme-switcher { position: fixed; left: 14px; bottom: 90px; z-index: 80; }
.theme-switcher__toggle {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); cursor: pointer; font-size: 18px; box-shadow: var(--shadow-md);
}
.theme-switcher__panel {
  position: absolute; left: 0; bottom: 54px; width: 180px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-card);
  box-shadow: var(--shadow-lg); padding: 12px; display: none;
}
.theme-switcher.is-open .theme-switcher__panel { display: block; }
.theme-switcher__title { font-weight: 800; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
.theme-switcher__list { display: flex; flex-direction: column; gap: 6px; }
.theme-switcher__btn {
  display: flex; align-items: center; gap: 8px; width: 100%;
  border: 1px solid var(--border); background: var(--surface-2); border-radius: var(--r-btn);
  padding: 8px 10px; cursor: pointer; font-weight: 700; font-size: 12px; color: var(--text); text-align: left;
}
.theme-switcher__btn.is-active { border-color: var(--accent); }
.theme-switcher__swatch { width: 16px; height: 16px; border-radius: 4px; flex: none; }

/* ---------- REVEAL ANIMATION ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 380px) {
  .hero__title { font-size: 38px; }
  .economy__amount { font-size: 56px; }
  .price-now > .accent-text { font-size: 50px; }
  .final__title { font-size: 32px; }
  .compare { flex-direction: column; }
  .compare__arrow { transform: rotate(90deg); justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { transition: none; opacity: 1; transform: none; }
  .btn { transition: none; }
  .marquee__row { animation: none; }
  .marquee { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .bg-glow::before { animation: none; }
}

/* ============================================================
   MEMBER AREA (success.html)
   ============================================================ */
.member-state { text-align: center; padding: 60px 0; }
.member-state p { color: var(--text-muted); font-weight: 600; font-size: 14px; margin-top: 14px; }
.member-state__icon { font-size: 40px; margin-bottom: 8px; }
.spinner {
  width: 38px; height: 38px; margin: 0 auto; border-radius: 50%;
  border: 3px solid var(--accent-soft); border-top-color: var(--accent);
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.member__hero { text-align: center; padding: 18px 0 8px; }
.member__check {
  width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%;
  background: var(--grad-accent); color: var(--accent-contrast);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800; box-shadow: var(--shadow-accent);
}
.member__title { margin: 0 0 6px; font-family: Archivo, sans-serif; font-weight: 900; font-size: 30px; line-height: 1.05; color: var(--text); }
.member__sub { margin: 0 auto; max-width: 440px; font-weight: 500; font-size: 14px; line-height: 1.6; color: var(--text-muted); }
.member__sub strong { color: var(--text); }

.access-card {
  position: relative; margin-top: 26px; border-radius: var(--r-lg); padding: 24px 20px;
  background: radial-gradient(120% 60% at 50% 0%, rgba(var(--accent-rgb), .14), transparent 60%), var(--grad-surface);
  border: 1.5px solid var(--accent-border);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.05); overflow: hidden;
}
.access-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--grad-accent); }
.access-card__badge {
  display: inline-block; font-weight: 800; font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-border);
  padding: 6px 12px; border-radius: var(--r-chip); margin-bottom: 12px;
}
.access-card__intro { margin: 0 0 16px; font-weight: 500; font-size: 13.5px; line-height: 1.6; color: var(--text-muted); }
.access-card__intro strong { color: var(--text); }

.promo {
  margin-top: 14px; display: flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1px dashed var(--accent-border); border-radius: var(--r-card); padding: 12px 14px;
}
.promo__label { font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-dim); }
.promo__code { flex: 1; font-family: Archivo, monospace; font-weight: 900; font-size: 20px; letter-spacing: .04em; color: var(--accent); }
.promo__copy {
  flex: none; border: 1px solid var(--border); background: var(--surface-2); color: var(--text);
  border-radius: var(--r-btn); padding: 8px 14px; font-weight: 700; font-size: 12.5px; cursor: pointer;
}
.promo__copy:hover { border-color: var(--accent); color: var(--accent); }

.downloads { display: flex; flex-direction: column; gap: 10px; }
.dl {
  display: flex; align-items: center; gap: 12px;
  background: var(--grad-surface); border: 1px solid var(--border); border-radius: var(--r-card); padding: 14px 16px;
  box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.dl:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--accent-border); }
.dl__info { flex: 1; min-width: 0; }
.dl__title { font-weight: 700; font-size: 14px; color: var(--text); }
.dl__meta { font-weight: 500; font-size: 11.5px; color: var(--text-dim); margin-top: 2px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dl__actions { flex: none; display: flex; gap: 8px; }
.dl__btn {
  border: none; cursor: pointer; text-decoration: none; white-space: nowrap;
  background: var(--accent); color: var(--accent-contrast);
  border-radius: var(--r-btn); padding: 10px 15px; font-weight: 800; font-size: 13px;
}
.dl__btn:hover { background: var(--accent-strong); }
.dl__btn--ghost { background: var(--surface-2); color: var(--text); border: 1px solid var(--border); }
.dl__btn--ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--surface-2); }

.member__foot { margin: 36px 0; text-align: center; padding-top: 20px; border-top: 1px solid var(--border); }
.member__foot p { font-weight: 500; font-size: 12.5px; color: var(--text-muted); margin: 0 0 8px; }
.member__legal { font-size: 10.5px !important; color: var(--text-dim) !important; }

@media (max-width: 420px) {
  .dl { flex-direction: column; align-items: stretch; }
  .dl__actions { justify-content: stretch; }
  .dl__btn { flex: 1; text-align: center; }
  .member__title { font-size: 25px; }
}

/* ============================================================
   WAVE URGENCY (offer) + SECONDARY-COLOR ACCENTS
   ============================================================ */
.wave-urgency {
  margin-top: 16px; text-align: left;
  background: linear-gradient(180deg, var(--danger-soft), var(--surface));
  border: 1px solid var(--danger-border); border-radius: var(--r-card); padding: 13px 15px;
}
.wave-urgency__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 9px; }
.wave-urgency__tag { font-weight: 800; font-size: 12.5px; color: var(--text); }
.wave-urgency__tag b { color: var(--accent); }
.wave-urgency__next { font-weight: 800; font-size: 12.5px; color: var(--danger); white-space: nowrap; }
.wave-urgency__bar { height: 8px; border-radius: 99px; background: var(--surface-2); border: 1px solid var(--border); overflow: hidden; }
.wave-urgency__bar > span { display: block; height: 100%; width: 8%; border-radius: 99px; background: var(--grad-accent); transition: width .6s cubic-bezier(.2,.7,.2,1); }
.wave-urgency__foot { margin-top: 9px; font-weight: 600; font-size: 12px; color: var(--text-muted); }
.wave-urgency__foot b { color: var(--accent); }

/* "On contourne leur système" strip hook */
.rare__hook { color: var(--danger); font-weight: 800; }
.rare strong:not(.rare__hook) { color: var(--accent); }

/* secure-access feature check (trust hue) */
.check--info { background: var(--info-soft); }
.check--info::after { border-color: var(--info); }

/* Display numbers are solid signal color — flat, no foil, no shimmer.
   (Technical/product: the number is a readout, not a decorative flourish.) */
.economy__amount,
.price-now > .accent-text,
.value-banner__amount,
.compare__card--after .compare__value { color: var(--accent); }

/* ============================================================
   DESKTOP / LARGER SCREENS
   ============================================================ */

/* ---------- TABLET (768–1199px) ---------- */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
    padding: 0 32px;
  }

  /* spacing rhythm */
  .block { margin-top: 64px; }
  .offer { margin-top: 72px; }
  .guarantee { margin-top: 64px; }

  /* typography scale-up */
  .hero__title { font-size: 52px; }
  .hero__sub { font-size: 19px; max-width: 520px; }
  .h2 { font-size: 32px; }
  .lead { font-size: 15.5px; }
  .economy__amount { font-size: 80px; }
  .offer__title { font-size: 30px; }
  .price-now > .accent-text { font-size: 72px; }
  .final__title { font-size: 44px; }

  /* wider cards & blocks */
  .economy { padding: 36px 28px 28px; }
  .offer { padding: 40px 36px 32px; }
  .final { padding: 48px 36px; }
  .cost-card { padding: 20px 24px 18px; }
  .steps .step { padding: 20px 24px; }
  .faq__q { padding: 18px 22px; }

  /* testimonials side-by-side */
  .testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* steps side-by-side */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: start; }

  /* use-case directory: give the number + role more room */
  .usecases-intro { max-width: 620px; }
  .usecase { padding: 20px 6px; gap: 24px; }
  .usecase__role { font-size: 16px; }
  .usecase__stack { max-width: 240px; font-size: 11px; }

  /* screenshots — stacked banners, contained width */
  .screenshots { max-width: 620px; margin: 24px auto 0; gap: 14px; }

  /* FAQ 2-col */
  .faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; align-items: start; }

  /* tool grid 3-col */
  .toolgrid { grid-template-columns: repeat(3, 1fr); }

  /* wider value banner & share note */
  .value-banner { max-width: 640px; margin-left: auto; margin-right: auto; }
  .share-note { max-width: 640px; margin-left: auto; margin-right: auto; }

  /* compare cards wider */
  .compare { max-width: 580px; margin-left: auto; margin-right: auto; }

  /* Hero CTA spans the full container width, matching the economy block above */
  .container > .btn--block { max-width: none; margin-left: 0; margin-right: 0; }
  .container > .reassure { max-width: 420px; margin-left: auto; margin-right: auto; }

  /* access console */
  .console { max-width: 460px; margin: 36px auto 0; }

  /* sticky bar wider */
  .buybar__inner { max-width: 720px; }

  /* guarantee wider */
  .guarantee { max-width: 640px; margin-left: auto; margin-right: auto; padding: 24px 28px; }
}

/* ---------- DESKTOP (1200px+) — real side-by-side layouts ---------- */
@media (min-width: 1200px) {
  .container {
    max-width: 1100px;
    padding: 0 40px;
  }

  /* ---- HERO ROW: text left, access console right ---- */
  .hero-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: center;
  }
  .hero { padding-top: 24px; text-align: left; }
  .hero .badge { margin-left: 0; }
  .hero .audience { margin-left: 0; justify-content: flex-start; }
  .console { margin: 0; width: 100%; }

  /* ---- PROBLEM + SOLUTION side-by-side ---- */
  .duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    margin-top: 80px;
  }
  .duo .block { margin-top: 0; }

  /* ---- SPACING ---- */
  .block { margin-top: 80px; }
  .offer { margin-top: 96px; }
  .brand { padding: 32px 0 12px; }

  /* ---- TYPOGRAPHY ---- */
  .hero__title { font-size: 58px; letter-spacing: -.03em; }
  .hero__sub { margin-left: 0px; font-size: 20px; max-width: 620px; margin-top: 24px; }
  .h2 { font-size: 36px; }
  .lead { font-size: 16px; max-width: 520px; }
  .economy__kicker { font-size: 13px; }
  .economy__amount { font-size: 96px; }
  .economy__unit { font-size: 26px; }
  .offer__title { font-size: 34px; }
  .offer__sub { font-size: 14.5px; }
  .price-now > .accent-text { font-size: 84px; }
  .final__title { font-size: 48px; letter-spacing: -.03em; }
  .final__sub { font-size: 16px; max-width: 460px; }
  .step__title { font-size: 16px; }
  .step__desc { font-size: 13.5px; }
  .testimonial blockquote { font-size: 14.5px; }
  .faq__q span:first-child { font-size: 15px; }
  .faq__body p { font-size: 13.5px; }

  /* ---- ECONOMY BLOCK ---- */
  .economy { padding: 44px 40px 36px; border-radius: var(--r-lg); }
  .economy__tags { gap: 10px; }
  .tag { font-size: 12.5px; padding: 8px 16px; }

  /* ---- OFFER BLOCK ---- */
  .offer { padding: 48px 48px 40px; border-radius: var(--r-lg); max-width: 960px; margin-left: auto; margin-right: auto; }
  .offer__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 40px; align-items: start; text-align: left; }
  .offer__main { text-align: center; }
  .offer__aside {
    margin-top: 0; padding-top: 0; border-top: none;
    padding-left: 36px; border-left: 1px solid var(--border);
    position: sticky; top: 90px; text-align: center;
  }
  .offer__aside-title { font-size: 17px; }
  .offer__logos { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .offer__badge { font-size: 12px; padding: 9px 20px; }
  .price-now > .accent-text { font-size: 88px; }
  .features li { font-size: 15px; gap: 14px; }
  .features { gap: 14px; margin-bottom: 20px; }
  .breakdown__row { padding: 16px 20px; }
  .breakdown__val { font-size: 22px; }
  .rule { margin: 24px 0; }
  .wave-urgency { padding: 16px 20px; }
  .wave-urgency__bar { height: 10px; }

  /* ---- FINAL CTA ---- */
  .final { padding: 56px 48px; border-radius: var(--r-lg); max-width: 760px; margin-left: auto; margin-right: auto; }
  .final__timer { font-size: 14px; gap: 10px; }
  .countdown--lg { font-size: 16px; }
  .countdown--lg .countdown__cell { padding: 6px 12px; }

  /* ---- PROBLEM / COST CARD ---- */
  .cost-card { padding: 20px 24px 18px; }
  .cost-row { font-size: 14.5px; }
  .cost-price { font-size: 14px; }
  .cost-total { font-size: 15px; padding: 14px 20px; }
  .cost-total span:last-child { font-size: 20px; }

  /* ---- SOLUTION / COMPARE ---- */
  .compare { gap: 16px; }
  .compare__card { padding: 24px 20px; border-radius: var(--r-card); }
  .compare__value { font-size: 28px; }
  .compare__value--sm { font-size: 24px; }
  .compare__label { font-size: 12px; }
  .compare__note { font-size: 12px; }
  .compare__arrow { font-size: 26px; }
  .compare__foot { font-size: 13.5px; max-width: 520px; }

  /* ---- ACCESS CONSOLE ---- */
  .console__body { padding: 18px; }
  .tile__name { font-size: 10.5px; }

  /* ---- SOCIAL PROOF ---- */
  .social { gap: 16px; margin: 32px 0 8px; }
  .avatar { width: 36px; height: 36px; }
  .social__count { font-size: 13px; }
  .stars { font-size: 14px; }

  /* ---- HERO CTA & REASSURE ---- */
  .container > .btn--block { max-width: none; margin-left: 0; margin-right: 0; padding: 20px 24px; font-size: 19px; }
  .container > .reassure { font-size: 12.5px; gap: 18px; }
  .audience { max-width: 420px; padding: 14px 18px; gap: 8px; }
  .aud-tag { font-size: 11.5px; padding: 5px 12px; }

  /* ---- TOOLS SHOWCASE ---- */
  .toolgrid { grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 1060px; margin: 0 auto; }
  .toolcat { padding: 18px 16px; }
  .toolcat__title { font-size: 12.5px; margin-bottom: 12px; }
  .toolcat__item { font-size: 13px; gap: 10px; }
  .value-banner { padding: 22px; font-size: 13px; }
  .value-banner__amount { font-size: 34px; margin-top: 4px; }

  /* ---- HOW IT WORKS ---- */
  .steps { grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 960px; margin: 0 auto; }
  .step { padding: 22px 24px; flex-direction: column; align-items: flex-start; }
  .step__num { width: 44px; height: 44px; font-size: 24px; border-radius: 14px; }
  .step__title { font-size: 16px; gap: 8px; }
  .step__desc { font-size: 13.5px; margin-top: 6px; }
  .share-note { max-width: 720px; margin: 18px auto 0; padding: 18px 22px; }
  .share-note p { font-size: 13.5px; }

  /* ---- USE-CASE DIRECTORY: intro left, list right ---- */
  .usecases-block { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; max-width: 1000px; margin-left: auto; margin-right: auto; }
  .usecases-intro { margin-bottom: 0; position: sticky; top: 88px; }
  .usecases { margin-top: 0; }
  .usecase { padding: 20px 6px; }
  .usecase__role { font-size: 16px; }
  .usecase__desc { font-size: 13px; }
  .usecase__stack { font-size: 11px; max-width: 220px; }

  /* ---- TESTIMONIALS ---- */
  .testimonials { grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1060px; margin: 0 auto; }
  .testimonial { padding: 20px 22px 20px 24px; }
  .testimonial blockquote { font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
  .testimonial__name { font-size: 13.5px; }
  .testimonial__role { font-size: 11.5px; }

  /* ---- SCREENSHOTS (real review banners — stacked, contained) ---- */
  .screenshots { max-width: 680px; margin: 28px auto 0; gap: 16px; }

  /* ---- FAQ ---- */
  .faq { grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 960px; margin: 0 auto; }
  .faq__item { border-radius: var(--r-card); }
  .faq__q { padding: 20px 24px; }
  .faq__q span:first-child { font-size: 15px; }
  .faq__body p { font-size: 13.5px; line-height: 1.65; }
  .faq__item.is-open .faq__body { max-height: 400px; padding: 0 24px 18px; }

  /* ---- GUARANTEE ---- */
  .guarantee { max-width: 720px; margin-left: auto; margin-right: auto; padding: 28px 32px; gap: 20px; }
  .guarantee__title { font-size: 18px; }
  .guarantee__desc { font-size: 13.5px; }

  /* ---- RATING LINE ---- */
  .rating-line { margin-bottom: 22px; }
  .rating-line .stars { font-size: 17px; }
  .rating-line__meta { font-size: 13px; }

  /* ---- STICKY BUY BAR ---- */
  .buybar__inner { max-width: 1100px; padding: 12px 24px; gap: 16px; }
  .buybar__title { font-size: 15px; }
  .buybar__price { font-size: 13px; }
  .buybar .btn--primary { padding: 14px 28px; font-size: 16px; }

  /* ---- ANNOUNCEMENT BAR ---- */
  .announce__inner { max-width: 1100px; padding: 10px 20px; }
  .announce__lock, .announce__wave, .announce__left, .announce__next { font-size: 12px; }

  /* ---- FOOTER ---- */
  .footer { margin-top: 56px; padding: 32px 0 40px; }
  .footer__legal { max-width: 560px; font-size: 11px; }
  .footer__links { font-size: 11.5px; }
  .footer__copy { font-size: 10.5px; }

  /* ---- MODAL ---- */
  .modal__panel { max-width: 800px; padding: 28px 32px; }
  .modal__title { font-size: 26px; }
  .tl-list { grid-template-columns: repeat(2, 1fr); gap: 8px 24px; }
  .tl-item { font-size: 13.5px; padding: 5px 0; }
}

/* ---------- LARGE DESKTOP (1600px+) ---------- */
@media (min-width: 1600px) {
  .container {
    max-width: 1200px;
    padding: 0 48px;
  }

  .hero-row {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 44px;
  }

  .hero__title { font-size: 68px; }
  .hero__sub { font-size: 22px; max-width: 600px; }
  .h2 { font-size: 42px; }
  .lead { font-size: 17px; }
  .economy__amount { font-size: 110px; }
  .economy__unit { font-size: 30px; }
  .price-now > .accent-text { font-size: 100px; }
  .final__title { font-size: 56px; }

  .offer { max-width: 1020px; padding: 56px 56px 48px; }
  .final { max-width: 820px; padding: 64px 56px; }

  .console { max-width: 380px; }

  .toolgrid { max-width: 1160px; gap: 14px; }
  .toolcat { padding: 20px 18px; }
  .toolgrid__more { font-size: 13px; }

  .steps { max-width: 1060px; gap: 18px; }
  .step { padding: 26px 28px; }

  .usecases-block { max-width: 1100px; gap: 64px; grid-template-columns: 380px 1fr; }

  .testimonials { max-width: 1160px; gap: 18px; }
  .testimonial { padding: 24px 26px; }

  .screenshots { max-width: 720px; gap: 18px; }

  .faq { max-width: 1060px; gap: 16px; }

  .guarantee { max-width: 800px; padding: 32px 36px; }

  .announce__inner, .buybar__inner { max-width: 1200px; }
}

/* ---------- CONSOLE: "+N more" tile ---------- */
.tile--more { cursor: pointer; background: none; border: none; padding: 0; font: inherit; text-align: center; }
.tile--more .tile__logo {
  background: var(--accent-soft); border: 1px dashed var(--accent-border); padding: 0;
  display: flex; align-items: center; justify-content: center;
}
.tile--more .tile__plus { font-family: var(--mono); font-weight: 700; font-size: 15px; color: var(--accent); line-height: 1; letter-spacing: -.02em; }
.tile--more .tile__name { color: var(--accent); }
.tile--more:hover .tile__logo { border-style: solid; background: var(--accent-border); }

/* underlined inline link (tool list opener) */
.toolgrid__more .link-u { color: var(--accent); text-decoration: underline; cursor: pointer; font-weight: 700; }
.toolgrid__more .link-u:hover { color: var(--accent-strong); }

/* ============================================================
   MODAL / LIGHTBOX (full tools list)
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 18px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.7); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.modal__panel {
  position: relative; z-index: 1; width: 100%; max-width: 720px; max-height: 88vh; overflow: auto;
  background: var(--grad-surface); border: 1px solid var(--accent-border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 22px 20px;
  animation: modalIn .25s cubic-bezier(.2,.7,.2,1);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__close {
  position: sticky; top: 0; float: right; margin: -6px -4px 0 0;
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); cursor: pointer; font-size: 15px; line-height: 1;
}
.modal__close:hover { border-color: var(--accent); color: var(--accent); }
.modal__title { font-family: Archivo, sans-serif; font-weight: 900; font-size: 22px; color: var(--text); margin: 0 0 4px; }
.modal__sub { font-weight: 500; font-size: 12.5px; color: var(--text-muted); margin: 0 0 18px; }
.modal__img { width: 100%; border-radius: var(--r-card); border: 1px solid var(--border); }
.tl-cat { margin-bottom: 16px; }
.tl-cat__title { font-weight: 800; font-size: 13px; color: var(--accent); margin: 0 0 8px; }
.tl-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; }
.tl-item { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 12.5px; padding: 4px 0; border-bottom: 1px solid var(--border); }
.tl-item__name { color: var(--text); font-weight: 600; }
.tl-item__price { color: var(--text-dim); font-weight: 700; white-space: nowrap; }
.tl-total { margin-top: 6px; display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--accent-soft); border: 1px solid var(--accent-border); border-radius: var(--r-card); padding: 12px 14px; }
.tl-total__label { font-weight: 700; font-size: 13px; color: var(--text); }
.tl-total__val { font-family: Archivo, sans-serif; font-weight: 900; font-size: 20px; color: var(--accent); }
@media (max-width: 520px) { .tl-list { grid-template-columns: 1fr; } }

/* ---------- Member: download reminder banner ---------- */
.dl-reminder {
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
  padding: 14px 16px; border-radius: var(--r-card); text-decoration: none;
  background: var(--accent-soft); border: 1px solid var(--accent-border);
  box-shadow: var(--ring-accent); transition: transform .15s ease, box-shadow .2s ease;
}
.dl-reminder:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.dl-reminder__icon { font-size: 22px; flex: none; }
.dl-reminder__txt { font-size: 13.5px; line-height: 1.45; color: var(--text); }
.dl-reminder__txt strong { color: var(--accent); }
.dl-reminder__chev { flex: none; margin-left: auto; font-weight: 900; color: var(--accent); font-size: 18px; animation: dlBounce 1.4s ease-in-out infinite; }
@keyframes dlBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
@media (prefers-reduced-motion: reduce) { .dl-reminder__chev { animation: none; } }

/* ---------- Hero "Parfait pour" compact chips ---------- */
/* "Parfait pour" — contained badge block, on-brand, compact (green-check tags) */
.audience {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px; max-width: 530px; margin: 16px auto 0; padding: 12px 14px;
  background: var(--grad-surface); border: 1px solid var(--border);
  border-radius: var(--r-card); box-shadow: var(--shadow-sm);
}
.audience__label {
  width: 100%; text-align: center; margin-bottom: 3px;
  font-weight: 800; font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent);
}
.aud-tag {
  display: inline-flex; align-items: center; gap: 5px; white-space: nowrap;
  font-weight: 700; font-size: 10.5px; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-chip); padding: 4px 9px;
}
.aud-tag__chk { flex: none; color: var(--success); }

/* ---------- SCREENSHOTS (real review images) — mobile base ---------- */
.screenshots {
  display: flex; flex-direction: column; gap: 12px; margin-top: 18px;
}
.screenshots__img {
  display: block; width: 100%; height: auto; object-fit: contain;
  border-radius: var(--r-card); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
@media (min-width: 600px) {
  .screenshots { max-width: 620px; margin-left: auto; margin-right: auto; gap: 14px; }
}
/* 3-col layout handled in tablet (768px) and desktop (1200px) media queries above */
