/* ============================================================================
   HOME V5 — storefront home page
   ----------------------------------------------------------------------------
   Scoped under .xl so nothing leaks into the shared navbar/footer or any other
   page. No inline styles in the template (CLAUDE.md).

   Deliberately restrained: one accent (indigo), one warm colour reserved for
   commerce, flat surfaces, hairline rules. The featured product card is the
   only element allowed to shout.

   Type: Inter (UI + headings, tight tracking) + IBM Plex Mono (prices, specs,
   labels — the vernacular of a marked paper). Two families, no display face.
   ========================================================================== */

.xl {
  --ink: #14162b;
  --ink-2: #414560;
  --muted: #6a7086;
  --line: #e3e5ee;
  --line-soft: #eef0f6;
  --paper: #f7f8fb;
  --card: #ffffff;

  --indigo: #4f46e5;
  --indigo-deep: #4338ca;
  --indigo-wash: #eef0ff;
  --violet: #7c3aed;
  --gold: #f2a93b;
  --gold-deep: #d98c17;
  --gold-wash: #fff6e6;
  --green: #047857;
  --green-wash: #ecfdf5;

  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-data: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;

  --radius: 14px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(20, 22, 43, .05);
  --shadow-md: 0 1px 3px rgba(20, 22, 43, .06), 0 12px 28px rgba(20, 22, 43, .07);
  --shadow-lift: 0 2px 6px rgba(20, 22, 43, .06), 0 22px 48px rgba(20, 22, 43, .11);

  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* Bootstrap colours every anchor; neutralise inside the page and re-assert on
   the classes that need colour with matching specificity (a.<class>). */
.xl a { color: inherit; text-decoration: none; }
.xl p { margin: 0; }
.xl h1, .xl h2, .xl h3, .xl h4 { margin: 0; font-family: var(--font-body); letter-spacing: -.022em; }
.xl ul { margin: 0; padding: 0; list-style: none; }
.xl :focus-visible { outline: 2px solid var(--indigo); outline-offset: 3px; border-radius: 4px; }

.xl-wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
/* One vertical rhythm for the whole page: 68px between sections, 32px from a
   section head to its content. Everything else keys off these two numbers. */
.xl-section { padding: 68px 0; border-top: 1px solid var(--line); }
.xl-section--plain { border-top: none; }

/* ---------- shared type ---------- */
.xl-eyebrow {
  display: block;
  font-family: var(--font-data); font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.xl-h2 { font-size: clamp(25px, 2.8vw, 33px); font-weight: 700; line-height: 1.14; }
.xl-lede { font-size: 16.5px; line-height: 1.62; color: var(--muted); max-width: 62ch; }

.xl-sectionhead { max-width: 640px; margin-bottom: 32px; }
.xl-sectionhead .xl-h2 { margin: 10px 0 12px; }

/* ---------- buttons ---------- */
.xl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 20px; border-radius: 10px; border: 1px solid transparent;
  font-family: var(--font-body); font-size: 14.5px; font-weight: 600; line-height: 1.15;
  cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.xl .xl-btn--primary, .xl a.xl-btn--primary { background: var(--indigo); color: #fff; }
.xl .xl-btn--primary:hover, .xl a.xl-btn--primary:hover { background: var(--indigo-deep); color: #fff; }
/* A white button on a white hero needs a border you can actually see. */
.xl .xl-btn--ghost, .xl a.xl-btn--ghost { background: var(--card); color: var(--ink); border-color: #d0d3e4; }
.xl .xl-btn--ghost:hover, .xl a.xl-btn--ghost:hover { border-color: var(--indigo); color: var(--indigo); }
.xl .xl-btn--buy, .xl a.xl-btn--buy {
  background: var(--ink); color: #fff; font-size: 15px; padding: 14px 22px;
}
.xl .xl-btn--buy:hover, .xl a.xl-btn--buy:hover { background: #000; color: #fff; }
.xl .xl-btn--buy[disabled] { background: #9a9db4; cursor: progress; }
.xl .xl-btn--onink, .xl a.xl-btn--onink { background: #fff; color: var(--ink); }
.xl .xl-btn--onink:hover, .xl a.xl-btn--onink:hover { background: #f1f2f8; color: var(--ink); }
.xl .xl-btn--onink-ghost, .xl a.xl-btn--onink-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .34); }
.xl .xl-btn--onink-ghost:hover, .xl a.xl-btn--onink-ghost:hover { border-color: #fff; color: #fff; }
.xl-btn--block { width: 100%; }

.xl a.xl-textlink { font-weight: 600; color: var(--indigo); }
.xl a.xl-textlink:hover { color: var(--indigo-deep); text-decoration: underline; }

/* ============================================================================
   HERO — copy on the left, the featured product on the right
   ========================================================================== */
.xl-hero { padding: 52px 0 52px; background: var(--card); border-bottom: 1px solid var(--line); }
/* Centred, not top-aligned: the copy column is shorter than the product card,
   and top-aligning left a dead block of white under the fact list. */
.xl-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 56px; align-items: center;
}
.xl-hero__eyebrow { margin-bottom: 22px; color: var(--indigo); }
.xl-hero__title {
  /* No nowrap anywhere: the phrase must be free to wrap inside its column. */
  font-size: clamp(32px, 3.8vw, 48px); font-weight: 750; line-height: 1.14;
  letter-spacing: -.028em; margin-bottom: 26px; max-width: 17ch;
}
.xl-hero__sub { font-size: 17px; line-height: 1.75; color: var(--ink-2); max-width: 46ch; margin-bottom: 38px; }
/* Hero CTAs run larger than body buttons — at the default 14.5px they read as
   secondary next to a 50px headline and the product card's full-width Buy. */
.xl-hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.xl-hero__ctas .xl-btn { padding: 15px 26px; font-size: 15.5px; }
/* One quiet line, not a second tick-list facing the card's inclusions. */
.xl-hero__note { margin-top: 26px; font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* ---------- the featured product card / pack deck ----------
   Slides are stacked in one grid cell so the card keeps the height of its
   tallest pack — paging between packs must not make the hero jump. */
.xl-feature {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); overflow: hidden;
}
.xl-feature__slides { display: grid; }
.xl-slide { grid-area: 1 / 1; min-width: 0; }
.xl-slide[aria-hidden="true"] { visibility: hidden; opacity: 0; pointer-events: none; }

.xl-feature__dots { display: flex; justify-content: center; gap: 4px; padding: 0 24px 18px; }
.xl-feature__dots[hidden] { display: none; }
.xl-dot {
  width: 26px; height: 26px; padding: 0; border: none; background: none;
  cursor: pointer; display: grid; place-items: center;
}
.xl-dot::before {
  content: ''; width: 8px; height: 8px; border-radius: 999px; background: #cbcfe4;
  transition: width .18s ease, background .18s ease;
}
.xl-dot:hover::before { background: #a5aacb; }
.xl-dot[aria-selected="true"]::before { width: 20px; background: var(--indigo); }
.xl-feature::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--violet));
}
.xl-feature__ribbon {
  display: inline-flex; align-items: center; gap: 7px;
  margin: 20px 26px 0;   /* aligns with .xl-feature__body's 26px */
  font-family: var(--font-data); font-size: 11px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep); background: var(--gold-wash); border: 1px solid #f6dfb4;
  padding: 5px 10px; border-radius: 6px;
}
.xl-feature__ribbon--plain {
  color: var(--ink-2); background: #f2f3f9; border-color: var(--line);
}
.xl-feature__body { padding: 18px 26px 26px; }
.xl-feature__name { font-size: 23px; font-weight: 700; line-height: 1.2; margin-bottom: 12px; }
/* Short, catalogue-style line only — a long product description goes in
   .xl-feature__desc below, in body type where it is actually readable. */
/* Only ONE of these two ever shows: the mono spec for a short product blurb,
   the body paragraph for a long one. Showing both said the same thing twice. */
.xl-feature__spec {
  font-family: var(--font-data); font-size: 12px; line-height: 1.55; color: var(--muted);
  letter-spacing: .02em;
}
.xl-feature__desc { font-size: 14px; line-height: 1.6; color: var(--ink-2); }
.xl-feature__spec[hidden], .xl-feature__desc[hidden] { display: none; }
/* --line, not --line-soft: on white the soft rule was invisible, so the blurb
   and the inclusion list read as one undifferentiated block. */
.xl-feature__list {
  display: grid; gap: 11px; margin-top: 20px; padding: 20px 0 22px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.xl-feature__list li { display: flex; gap: 10px; align-items: baseline; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.xl-feature__list i { color: var(--indigo); font-size: 11px; flex: none; }

.xl-price { display: flex; align-items: baseline; gap: 8px; margin: 22px 0 3px; }
.xl-price__cur { font-family: var(--font-data); font-size: 14px; font-weight: 500; color: var(--muted); }
.xl-price__amount { font-family: var(--font-data); font-size: 34px; font-weight: 600; letter-spacing: -.02em; line-height: 1; }
.xl-price__per { font-size: 13px; color: var(--muted); margin-bottom: 20px; display: block; }
.xl-feature--loading .xl-price__amount { color: transparent; background: var(--line-soft); border-radius: 6px; }

.xl-feature__note { margin-top: 13px; font-size: 12px; color: var(--muted); text-align: center; }
.xl-feature__note i { margin-right: 5px; }
.xl a.xl-feature__alt { display: block; margin-top: 10px; text-align: center; font-size: 13px; font-weight: 600; color: var(--indigo); }
.xl a.xl-feature__alt:hover { color: var(--indigo-deep); text-decoration: underline; }

/* ============================================================================
   STATS BAND — numerals at a scale you can read across the room
   ========================================================================== */
.xl-stats { background: var(--card); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.xl-stats__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.xl-stat { padding: 34px 30px 36px; border-left: 1px solid var(--line); }
.xl-stat:first-child { border-left: none; padding-left: 0; }
.xl-stat:last-child { padding-right: 0; }
.xl-stat__num {
  font-size: clamp(34px, 3.6vw, 48px); font-weight: 600; line-height: 1;
  letter-spacing: -.035em; color: var(--ink);
}
.xl-stat__sup { font-size: .4em; font-weight: 500; vertical-align: super; margin-left: 1px; letter-spacing: 0; }
.xl-stat__lbl { margin-top: 14px; font-size: 13.5px; line-height: 1.5; color: var(--ink-2); max-width: 26ch; }

/* ============================================================================
   MORE PACKS — the rest of the shelf, only rendered when there is one
   ========================================================================== */
/* ============================================================================
   WHAT COMES BACK — the marked paper, shown as proof rather than as hero art
   ========================================================================== */
.xl-marked__grid { display: grid; grid-template-columns: minmax(0, 480px) minmax(0, 1fr); gap: 52px; align-items: center; }
.xl-marked__points { display: grid; gap: 22px; }
.xl-marked__point h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.xl-marked__point p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.xl-marked__num {
  font-family: var(--font-data); font-size: 11.5px; color: var(--indigo);
  letter-spacing: .1em; display: block; margin-bottom: 6px;
}

.xl-result { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); overflow: hidden; }
.xl-result__bar { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--line-soft); background: #fbfbfe; }
.xl-result__tag { font-family: var(--font-data); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.xl-result__stamp {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-data); font-size: 11px; font-weight: 500; color: var(--green);
  background: var(--green-wash); border: 1px solid #b6ead2; padding: 4px 9px; border-radius: 6px;
}
.xl-result__body { padding: 20px; }

.xl-curve__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 4px; }
.xl-curve__label { font-family: var(--font-data); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.xl-curve__rank { font-family: var(--font-data); font-size: 12.5px; font-weight: 600; color: var(--indigo); }
.xl-curve__svg { display: block; width: 100%; height: auto; }
.xl-curve__area { fill: url(#xlCurveFill); }
.xl-curve__line { fill: none; stroke: var(--indigo); stroke-width: 1.75; }
.xl-curve__marker { stroke: var(--violet); stroke-width: 1.5; stroke-dasharray: 3 4; }
.xl-curve__dot { fill: var(--violet); }
.xl-curve__you { font-family: var(--font-data); font-size: 9px; font-weight: 600; fill: var(--violet); letter-spacing: .06em; }
.xl-curve__axis { font-family: var(--font-data); font-size: 8px; fill: #a2a7bd; letter-spacing: .05em; }

.xl-bars { margin-top: 18px; display: grid; gap: 12px; }
.xl-bar__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 5px; }
.xl-bar__name { font-size: 13px; color: var(--ink-2); }
.xl-bar__val { font-family: var(--font-data); font-size: 12px; font-weight: 600; }
.xl-bar__track { height: 7px; border-radius: 4px; background: #eef0f6; overflow: hidden; }
.xl-bar__fill { display: block; height: 100%; border-radius: 4px; width: var(--pct, 0%); }
.xl-bar__fill--a { background: var(--indigo); }
.xl-bar__fill--b { background: var(--violet); }
.xl-bar__fill--c { background: var(--gold); }
/* sample scores live here, not as inline styles in the template */
.xl-bar:nth-child(1) .xl-bar__fill { --pct: 84%; }
.xl-bar:nth-child(2) .xl-bar__fill { --pct: 71%; }
.xl-bar:nth-child(3) .xl-bar__fill { --pct: 62%; }

.xl-margin-note { margin-top: 18px; padding: 13px 15px; border-radius: 10px; background: var(--indigo-wash); display: flex; gap: 11px; align-items: flex-start; }
.xl-margin-note i { color: var(--indigo); margin-top: 2px; font-size: 12px; }
.xl-margin-note__label { display: block; font-family: var(--font-data); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--indigo); margin-bottom: 3px; }
.xl-margin-note p { font-size: 13px; line-height: 1.5; color: var(--ink-2); }

/* ============================================================================
   WHAT EXCELERATE DOES — the plain answer to "what is this site"
   ========================================================================== */
.xl-caps {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.xl-cap { background: var(--card); padding: 26px 22px; }
.xl-cap__ic { color: var(--indigo); font-size: 16px; margin-bottom: 13px; }
.xl-cap h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.xl-cap p { font-size: 14px; line-height: 1.58; color: var(--muted); }
.xl-caps__note { margin-top: 20px; font-size: 14.5px; color: var(--muted); }

/* ============================================================================
   AUDIENCE SPLIT — two visible paths, not a bare tab strip
   ========================================================================== */
.xl-paths { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 40px; }
.xl-path {
  display: block; text-align: left; cursor: pointer;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; font-family: var(--font-body);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.xl-path:hover { border-color: #c3c6e6; }
.xl-path[aria-selected="true"] { border-color: var(--indigo); box-shadow: inset 0 0 0 1px var(--indigo); }
.xl-path__label {
  display: block; font-family: var(--font-data); font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.xl-path__title { display: block; font-size: 18px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 7px; }
.xl-path__desc { display: block; font-size: 14px; line-height: 1.58; color: var(--muted); }
.xl-path__cue { display: block; margin-top: 14px; font-size: 13.5px; font-weight: 600; color: var(--indigo); }

.xl-panel[hidden] { display: none; }
.xl-panel__intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; margin-bottom: 42px; }
.xl-panel__intro .xl-h2 { margin: 10px 0 12px; }
.xl-panel__cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.xl-mock { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-md); background: #fff; }

.xl-feats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.xl-feat { background: var(--card); padding: 24px 22px; }
.xl-feat__ic { color: var(--indigo); font-size: 15px; margin-bottom: 12px; }
.xl-feat h3 { font-size: 16px; font-weight: 600; margin-bottom: 7px; }
.xl-feat p { font-size: 14px; line-height: 1.58; color: var(--muted); }

.xl-pilot { margin-top: 30px; background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 30px 32px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 26px; align-items: center; }
.xl-pilot h3 { font-size: 21px; font-weight: 700; margin-bottom: 8px; }
.xl-pilot p { font-size: 14.5px; line-height: 1.6; color: rgba(255, 255, 255, .76); max-width: 60ch; }
.xl-pilot__actions { display: grid; gap: 10px; justify-items: center; }
.xl-pilot__note { font-size: 12px; color: rgba(255, 255, 255, .58); }

/* ============================================================================
   SUBJECTS
   ========================================================================== */
.xl-subjects { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.xl-subject { display: flex; align-items: center; gap: 11px; padding: 17px 16px; background: var(--card); transition: background .15s ease, color .15s ease; }
.xl .xl-subject:hover { background: var(--indigo-wash); color: var(--indigo); }
.xl-subject__icon { font-size: 17px; line-height: 1; flex: none; }
.xl-subject__name { font-size: 13.5px; font-weight: 500; line-height: 1.3; }
.xl a.xl-subject--more { color: var(--indigo); font-weight: 600; }

/* ============================================================================
   ASK EXCELERATE
   ========================================================================== */
.xl-ask__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 52px; align-items: center; }
.xl-ask__grid .xl-h2 { margin: 10px 0 12px; }
.xl-ask__cta { margin-top: 28px; }
.xl-chat { display: grid; gap: 10px; }
.xl-chat__bubble { padding: 14px 16px; border-radius: 12px; font-size: 14.5px; line-height: 1.55; max-width: 92%; }
.xl-chat__bubble--user { background: var(--ink); color: #fff; justify-self: end; }
.xl-chat__bubble--ai { background: var(--card); color: var(--ink-2); border: 1px solid var(--line); }
.xl-chat__bubble--ai strong { color: var(--ink); }
.xl-chat__who { display: block; font-family: var(--font-data); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; opacity: .6; margin-bottom: 5px; }

/* ============================================================================
   HOW IT WORKS
   ========================================================================== */
.xl-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.xl-step__n { font-family: var(--font-data); font-size: 11.5px; letter-spacing: .1em; color: var(--indigo); display: block; margin-bottom: 10px; }
.xl-step h3 { font-size: 17px; font-weight: 600; margin-bottom: 7px; }
.xl-step p { font-size: 14.5px; line-height: 1.58; color: var(--muted); }

/* ============================================================================
   TRUST
   ========================================================================== */
.xl-trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 34px; }
.xl-trust__item h4 { font-size: 15.5px; font-weight: 600; margin-bottom: 7px; }
.xl-trust__item h4 i { color: var(--indigo); font-size: 13px; margin-right: 8px; }
.xl-trust__item p { font-size: 13.8px; line-height: 1.58; color: var(--muted); }
.xl .xl-trust__item a { color: var(--indigo); font-weight: 600; }

/* ============================================================================
   FINAL CTA
   ========================================================================== */
.xl-final { padding: 0 0 84px; }
.xl-final__panel { background: var(--ink); color: #fff; border-radius: var(--radius-lg); padding: 52px 44px; text-align: center; }
.xl-final__panel h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; margin-bottom: 12px; }
.xl-final__panel p { font-size: 16px; color: rgba(255, 255, 255, .76); max-width: 52ch; margin: 0 auto 30px; line-height: 1.6; }
.xl-final__ctas { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.xl-final__fine { margin-top: 16px; font-size: 12.5px; color: rgba(255, 255, 255, .6); }
.xl .xl-final__panel a.xl-textlink { color: #fff; text-decoration: underline; }

/* ============================================================================
   STICKY BUY BAR (small screens)
   ========================================================================== */
.xl-stickybuy {
  position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 60;
  display: none; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px;
  background: var(--ink); color: #fff; box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
  transform: translateY(140%); transition: transform .25s ease;
}
.xl-stickybuy.is-on { transform: translateY(0); }
.xl-stickybuy__txt { min-width: 0; }
.xl-stickybuy__name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.xl-stickybuy__price { font-family: var(--font-data); font-size: 11.5px; color: rgba(255, 255, 255, .68); }
.xl-stickybuy .xl-btn { margin-left: auto; padding: 10px 16px; font-size: 13.5px; }
.xl .xl-stickybuy .xl-btn--buy { background: #fff; color: var(--ink); }

/* ============================================================================
   MOTION — one quiet reveal, nothing choreographed
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .xl-anim .xl-reveal { opacity: 0; transform: translateY(10px); }
  .xl-anim .xl-reveal.is-in { opacity: 1; transform: none; transition: opacity .45s ease, transform .45s ease; }
}

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .xl-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(320px, 380px); gap: 40px; }
  .xl-subjects { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl-feats, .xl-trust, .xl-steps, .xl-caps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .xl-marked__grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
}
@media (max-width: 880px) {
  .xl-section { padding: 56px 0; }
  .xl-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .xl-stat { padding: 26px 22px 28px; }
  .xl-stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .xl-stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .xl-paths { grid-template-columns: minmax(0, 1fr); gap: 12px; margin-bottom: 32px; }
  .xl-hero { padding: 44px 0 40px; }
  .xl-hero__grid, .xl-panel__intro, .xl-ask__grid { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .xl-hero__title { max-width: none; }
  .xl-pilot { grid-template-columns: minmax(0, 1fr); padding: 26px 22px; }
  .xl-pilot__actions { justify-items: start; }
  .xl-final__panel { padding: 40px 24px; }
  .xl-stickybuy { display: flex; }
}
@media (max-width: 600px) {
  .xl-wrap { padding: 0 18px; }
  .xl-stats__grid { grid-template-columns: minmax(0, 1fr); }
  .xl-stat { border-left: none; padding: 22px 0 24px; }
  .xl-stat:nth-child(n+2) { border-top: 1px solid var(--line); }
  .xl-stat__lbl { max-width: none; }
  .xl-feats, .xl-trust, .xl-steps, .xl-subjects, .xl-caps { grid-template-columns: minmax(0, 1fr); }
  .xl-hero__ctas .xl-btn { width: 100%; }
  .xl-hero__title { font-size: clamp(28px, 8vw, 36px); }
}
