/* Scoped page CSS extracted from approved design. Review before enqueue. */
/* ============================================================================
   SkyPlanner — Colors & Typography Foundation
   Canonical tokens extracted from skyplanner.ai (GeneratePress child theme).
   Source of truth: 01_SKYPLANNER_DESIGN_SYSTEM_SOURCE.md + data/tokens.json.
   Load this FIRST, then skyplanner-ds.css for components.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   Webfonts — real child-theme files (NeueKabel weights + Jost), replacing the
   design build's generated font blobs. Later @font-face declarations win over
   the global per-weight aliases in style.css for exact weight matching.
   ---------------------------------------------------------------------------- */
@font-face {
  font-family: "NeueKabel";
  src: url("/wp-content/themes/generatepress-child/Fonts/NeueKabel.woff2") format("woff2");
  font-weight: 400; font-display: swap; font-style: normal;
}
@font-face {
  font-family: "NeueKabel";
  src: url("/wp-content/themes/generatepress-child/Fonts/NeueKabel-Medium.woff2") format("woff2");
  font-weight: 500; font-display: swap; font-style: normal;
}
@font-face {
  font-family: "NeueKabel";
  src: url("/wp-content/themes/generatepress-child/Fonts/NeueKabel-Bold.woff2") format("woff2");
  font-weight: 700; font-display: swap; font-style: normal;
}
@font-face {
  font-family: "NeueKabel";
  src: url("/wp-content/themes/generatepress-child/Fonts/NeueKabelExtraBold.woff2") format("woff2");
  font-weight: 800; font-display: swap; font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("/wp-content/themes/generatepress-child/Fonts/Jost.woff2") format("woff2");
  font-weight: 400; font-display: swap; font-style: normal;
}

.sp-features-v2 {
  /* ==========================================================================
     COLOR — raw brand tokens
     ========================================================================== */
  --sp-blue:            #303AF2;   /* electric brand blue — primary actions, brand surfaces */
  --sp-blue-ink:        #2F3AF1;   /* near-identical legacy variant, normalize to --sp-blue */
  --sp-ink:             #1F1F33;   /* dark navy — headings, body text, nav labels */
  --sp-ink-900:         #0C0C14;   /* deepest ink, rare */
  --sp-green:           #00BA70;   /* conversion CTA green */
  --sp-green-600:       #00A663;   /* green hover (derived) */
  --sp-blue-700:        #2630D6;   /* blue hover (derived) */

  /* Surfaces & background */
  --sp-bg:              #F9FCFE;   /* default page background (cool near-white) */
  --sp-bg-alt:         #F9F9FD;   /* faint alt background */
  --sp-white:           #FFFFFF;

  /* Tinted "pastel" surfaces — section + icon-chip backgrounds */
  --sp-surface-blue:    #E5F2FE;   /* light blue band / chip */
  --sp-surface-green:   #CEF2DD;   /* light green chip */
  --sp-surface-purple:  #EDE5FE;   /* light purple chip */
  --sp-surface-orange:  #FEF2E5;   /* light orange chip */

  /* Borders & lines */
  --sp-border:          #DDEDFF;   /* light blue hairline (inputs, dividers) */
  --sp-border-soft:     rgba(31,31,51,0.10);

  /* Text roles */
  --sp-text:            #1F1F33;   /* primary text */
  --sp-text-muted:      #5A5A6E;   /* secondary text (derived from ink) */
  --sp-text-on-blue:    #FFFFFF;
  --sp-text-on-blue-dim:rgba(255,255,255,0.85);
  --sp-link:            #303AF2;

  /* ==========================================================================
     SHADOWS — soft blue-tinted elevation
     ========================================================================== */
  --sp-shadow-card:   0px 6px 32px rgba(48,58,242,0.12);   /* default rounded card */
  --sp-shadow-soft:   0px 6px 24px rgba(48,58,242,0.30);   /* hover / floating CTA */
  --sp-shadow-faint:  0px 6px 32px rgba(48,58,242,0.12);
  --sp-shadow-pill:   0px 4px 20px rgba(46,49,65,0.18);    /* floating pill button */

  /* ==========================================================================
     RADII
     ========================================================================== */
  --sp-radius-sm:   8px;
  --sp-radius-md:   12px;    /* inputs, small cards, chips */
  --sp-radius-lg:   24px;    /* content cards, panels */
  --sp-radius-xl:   32px;    /* large feature panels, bands */
  --sp-radius-pill: 35px;    /* buttons, nav CTA */
  --sp-radius-full: 9999px;

  /* ==========================================================================
     SPACING — regularized 4px-based scale
     ========================================================================== */
  --sp-space-1:  4px;
  --sp-space-2:  8px;
  --sp-space-3:  12px;
  --sp-space-4:  16px;
  --sp-space-5:  20px;
  --sp-space-6:  24px;
  --sp-space-8:  32px;
  --sp-space-10: 40px;
  --sp-space-12: 48px;
  --sp-space-15: 60px;
  --sp-space-20: 80px;
  --sp-space-30: 120px;   /* section vertical rhythm (desktop) */

  --sp-container: 1200px; /* max content width */
  --sp-gutter:    40px;

  /* ==========================================================================
     TYPOGRAPHY — families
     ========================================================================== */
  --sp-font-display:  "NeueKabel", "Jost", system-ui, sans-serif;        /* headings */
  --sp-font-display-xb: "NeueKabel", "Jost", sans-serif;                 /* hero display (weight 800) */
  --sp-font-medium:   "NeueKabel", "Jost", sans-serif;                   /* nav, subheads (weight 500) */
  --sp-font-body:     "Jost", system-ui, -apple-system, sans-serif;      /* body */

  /* Type scale (weight / size / line-height) — fluid via clamp(): one token scales
     from mobile to desktop, so pages no longer need per-breakpoint heading overrides.
     Live SkyPlanner uses bold 700 display headings. */
  --sp-h1: 700 clamp(36px, 5.2vw, 80px)/1.05 var(--sp-font-display);
  --sp-h2: 700 clamp(30px, 4.4vw, 56px)/1.12 var(--sp-font-display);
  --sp-h3: 700 clamp(24px, 2.6vw, 32px)/1.25 var(--sp-font-display);
  --sp-h4: 700 clamp(20px, 2vw, 24px)/1.3 var(--sp-font-display);
  --sp-body-lg: 400 20px/30px var(--sp-font-body);
  --sp-body:    400 18px/27px var(--sp-font-body);
  --sp-body-sm: 400 16px/23px var(--sp-font-body);
  --sp-caption: 400 15px/22px var(--sp-font-body);
}

/* ----------------------------------------------------------------------------
   Mobile type scale (≤600px)
   ---------------------------------------------------------------------------- */
@media only screen and (max-width: 600px) {
  .sp-features-v2 {
    /* headings now scale fluidly via clamp() above — only body copy needs a mobile step */
    --sp-body-lg: 400 17px/24px var(--sp-font-body);
    --sp-body:    400 17px/24px var(--sp-font-body);
    --sp-space-30: 64px;
    --sp-gutter:   20px;
  }
}

/* ----------------------------------------------------------------------------
   Semantic element defaults (opt-in via .sp-prose / utility classes)
   ---------------------------------------------------------------------------- */
.sp-h1 { font: var(--sp-h1); color: var(--sp-text); margin: 0; }
.sp-h2 { font: var(--sp-h2); color: var(--sp-text); margin: 0; }
.sp-h3 { font: var(--sp-h3); color: var(--sp-text); margin: 0; }
.sp-h4 { font: var(--sp-h4); color: var(--sp-text); margin: 0; }
.sp-lead { font: var(--sp-body-lg); color: var(--sp-text); margin: 0; }
.sp-body { font: var(--sp-body-lg); color: var(--sp-text); margin: 0; }
.sp-muted { color: var(--sp-text-muted); }
.sp-eyebrow {
  font: var(--sp-caption); font-family: var(--sp-font-medium);
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--sp-blue); margin: 0;
}

/* ============================================================================
   SkyPlanner — Component Kit (canonical, normalized)
   Requires colors_and_type.css loaded first.
   Legacy site had many one-off button/card variants; this file collapses them
   into a small canonical set. Class prefix: .sp-
   ============================================================================ */

.sp-features-v2 *, .sp-features-v2 *::before, .sp-features-v2 *::after { box-sizing: border-box; }
body.skyplanner-features-v2-page { overflow-x: clip; }   /* belt-and-suspenders: off-canvas / decorative bleed never adds page scroll width */

/* Mobile-safety defaults (promoted from pricing-v2): long words wrap instead of
   forcing horizontal scroll, and media never exceeds its container. */
.sp-page { overflow-wrap: break-word; }
.sp-page img, .sp-page svg, .sp-page video { max-width: 100%; }
/* Opt-in helper for flex/grid children that would otherwise refuse to shrink
   (the #1 cause of mobile overflow in 2-column layouts). */
.sp-min0, .sp-min0 > * { min-width: 0; }

.sp-page {
  margin: 0;
  background: var(--sp-bg);
  color: var(--sp-text);
  font: var(--sp-body-lg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.sp-container { max-width: var(--sp-container); margin-inline: auto; padding-inline: var(--sp-gutter); }
.sp-section   { padding-block: var(--sp-space-30); }

/* ============================================================================
   1. BUTTONS  — canonical set: green primary, blue primary, outline, nav CTA, text
   Pill shape, NeueKabelMedium label, generous padding, soft lift on hover.
   ============================================================================ */
.sp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sp-font-medium); font-size: 18px; line-height: 1;
  padding: 18px 32px; border-radius: var(--sp-radius-pill);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: background-color .18s ease, color .18s ease,
              box-shadow .18s ease, transform .12s ease, border-color .18s ease;
  white-space: nowrap;
}
.sp-btn:active { transform: translateY(1px); }
.sp-btn .sp-btn__chev { width: 18px; height: 18px; flex: none; }

/* Green — primary conversion ("Get started for free", "Start free") */
.sp-btn--green { background: var(--sp-green); color: #fff; }
.sp-btn--green:hover { background: var(--sp-green-600); box-shadow: var(--sp-shadow-soft); transform: translateY(-2px); }

/* Blue — secondary action / "Request a demo", "Contact us" */
.sp-btn--blue { background: var(--sp-blue); color: #fff; }
.sp-btn--blue:hover { background: var(--sp-blue-700); box-shadow: var(--sp-shadow-soft); transform: translateY(-2px); }

/* Outline — tertiary / "Start free with Google/Microsoft", "Book a free demo" */
.sp-btn--outline { background: #fff; color: var(--sp-ink); border-color: var(--sp-border); }
.sp-btn--outline:hover { border-color: var(--sp-blue); color: var(--sp-blue); box-shadow: var(--sp-shadow-card); }

/* Outline on blue — for use inside blue bands */
.sp-btn--ghost-onblue { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.sp-btn--ghost-onblue:hover { background: #fff; color: var(--sp-blue); border-color: #fff; }

/* White — solid white pill for use on blue/brand surfaces (e.g. hero OAuth) */
.sp-btn--white { background: #fff; color: var(--sp-ink); }
.sp-btn--white:hover { box-shadow: 0 12px 30px rgba(12,16,60,0.28); transform: translateY(-2px); }

/* Nav CTA — compact green pill in header */
.sp-btn--nav { padding: 14px 26px; font-size: 17px; background: var(--sp-green); color: #fff; }
.sp-btn--nav:hover { background: var(--sp-green-600); box-shadow: var(--sp-shadow-soft); transform: translateY(-2px); }

/* Text link button */
.sp-btn--text {
  background: none; border: none; padding: 6px 2px; color: var(--sp-ink);
  text-decoration: underline; text-underline-offset: 4px;
}
.sp-btn--text:hover { color: var(--sp-blue); }

.sp-btn--lg { padding: 20px 38px; font-size: 19px; }
.sp-btn--sm { padding: 12px 22px; font-size: 16px; }
.sp-btn:focus-visible { outline: 3px solid rgba(48,58,242,0.45); outline-offset: 2px; }

/* ============================================================================
   3. HERO
   ============================================================================ */
.sp-hero { padding-block: var(--sp-space-20) var(--sp-space-30); }
.sp-hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.sp-hero__title { font: var(--sp-h1); margin: 0 0 28px; color: var(--sp-text); }
.sp-hero__title .accent { color: var(--sp-blue); }
.sp-hero__sub { font: var(--sp-body-lg); color: var(--sp-text-muted); max-width: 36ch; margin: 0 0 32px; }
.sp-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.sp-hero__media img { width: 100%; height: auto; display: block; }
@media (max-width: 900px) {
  .sp-hero__grid { grid-template-columns: 1fr; }
  .sp-hero__media { order: -1; }
}

/* 3b. HERO — brand (blue) variant: full-bleed electric-blue background image,
   white display copy, product screenshot right. Matches the live homepage hero.
   Background art: assets/hero-bg-desktop.jpg (desktop) / hero-bg-mobile.png (mobile). */
.sp-hero--brand {
  position: relative; overflow: hidden;
  background: var(--sp-blue) url("/wp-content/themes/generatepress-child/assets/img/features-v2/41-840796dc-0dbf-4c0b-9adf-d5cf09b37499.jpg") center center / cover no-repeat;
  padding-block: var(--sp-space-15) var(--sp-space-15);
}
.sp-hero--brand .sp-hero__grid { grid-template-columns: 1fr 1.04fr; align-items: center; gap: 40px; }
.sp-hero--brand .sp-hero__title,
.sp-hero--brand .sp-hero__title .accent { color: #fff; }
.sp-hero--brand .sp-hero__sub { color: rgba(255,255,255,0.92); max-width: 46ch; }
.sp-hero--brand .sp-hero__actions .sp-btn--text { color: #fff; text-decoration-color: rgba(255,255,255,0.7); }
.sp-hero--brand .sp-hero__actions .sp-btn--text:hover { color: #fff; text-decoration-color: #fff; }
.sp-hero--brand .sp-btn--green { box-shadow: 0 12px 30px rgba(12,16,60,0.32); }
.sp-hero--brand .sp-hero__media img {
  width: 100%; height: auto; border-radius: 10px;
  filter: drop-shadow(0 26px 64px rgba(12,16,60,0.40));
}
@media (max-width: 900px) {
  .sp-hero--brand {
    background-image: url("/wp-content/themes/generatepress-child/assets/img/features-v2/42-d777d79d-307b-4589-a4b6-6abe0e6a2ee1.png");
    background-position: top center;
    padding-block: var(--sp-space-12) var(--sp-space-12);
  }
  .sp-hero--brand .sp-hero__media { order: 0; margin-top: 8px; }
  .sp-hero--brand .sp-hero__sub { max-width: none; }
}

/* ============================================================================
   4. CARDS — canonical types
   a) content/problem card  b) feature card  c) pricing/service card  d) docs card
   ============================================================================ */
.sp-card {
  background: #fff; border-radius: var(--sp-radius-lg);
  box-shadow: var(--sp-shadow-card); padding: 32px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.sp-card--hover:hover { transform: translateY(-4px); box-shadow: var(--sp-shadow-soft); }

/* icon chip — pastel rounded square */
.sp-chip {
  width: 64px; height: 64px; border-radius: var(--sp-radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sp-surface-blue); margin-bottom: 20px;
}
.sp-chip img, .sp-chip svg { width: 32px; height: 32px; }
.sp-chip--green  { background: var(--sp-surface-green); }
.sp-chip--purple { background: var(--sp-surface-purple); }
.sp-chip--orange { background: var(--sp-surface-orange); }

.sp-card__title { font: var(--sp-h4); font-family: var(--sp-font-display); font-weight: 700; margin: 0 0 12px; color: var(--sp-text); }
.sp-card__body  { font: var(--sp-body); color: var(--sp-text-muted); margin: 0; }

/* feature card — big display title (used on Features page) */
.sp-feature__title { font: var(--sp-h3); margin: 0 0 16px; }

/* stat card */
.sp-stat { background:#fff; border-radius: var(--sp-radius-lg); box-shadow: var(--sp-shadow-card); padding: 28px 24px; text-align:center; }
.sp-stat__num { font-family: var(--sp-font-display-xb); font-weight: 800; font-size: 44px; color: var(--sp-blue); line-height:1; }
.sp-stat__label { font: var(--sp-body-sm); color: var(--sp-text); margin-top: 14px; }

/* docs category card */
.sp-doc-card { background:#fff; border-radius: var(--sp-radius-md); box-shadow: var(--sp-shadow-card); padding: 24px; display:flex; gap:16px; align-items:flex-start; text-decoration:none; }
.sp-doc-card:hover { box-shadow: var(--sp-shadow-soft); transform: translateY(-2px); }
.sp-doc-card__icon { width:48px; height:48px; border-radius: 12px; background: var(--sp-surface-blue); flex:none; display:flex; align-items:center; justify-content:center; }
.sp-doc-card__title { font-family: var(--sp-font-display); font-weight:700; font-size:20px; color: var(--sp-text); margin:0 0 4px; }
.sp-doc-card__meta { font: var(--sp-caption); color: var(--sp-text-muted); }

.sp-card-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.sp-card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.sp-card-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .sp-card-grid--4 { grid-template-columns: repeat(2,1fr); } .sp-card-grid--3 { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .sp-card-grid--4 { grid-template-columns: 1fr; } }

/* ============================================================================
   5. SECTION BANDS & PASTEL SURFACES
   ============================================================================ */
.sp-band-blue   { background: var(--sp-blue); color: #fff; }
.sp-band-blue .sp-h2, .sp-band-blue .sp-h3 { color: #fff; }
.sp-band-light  { background: var(--sp-surface-blue); }
.sp-band-soft   { background: #fff; }
.sp-panel { border-radius: var(--sp-radius-xl); padding: 56px; }
.sp-panel--blue { background: var(--sp-blue); color: #fff; box-shadow: var(--sp-shadow-soft); }
.sp-panel--light { background: var(--sp-surface-blue); }

.sp-section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.sp-section-head .sp-h2 { margin-bottom: 20px; }
.sp-section-head p { font: var(--sp-body-lg); color: var(--sp-text-muted); margin: 0; }

/* logo / social proof band */
.sp-logos { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 48px; opacity:.7; }
.sp-logos span { font-family: var(--sp-font-medium); color: var(--sp-text-muted); font-size: 22px; }

/* ============================================================================
   6. PRICING
   ============================================================================ */
.sp-price-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items:start; }
@media (max-width: 600px){ .sp-price-grid { grid-template-columns:1fr; } }  /* 2-col holds through tablet (768) */
.sp-price-card { background:#fff; border-radius: var(--sp-radius-xl); box-shadow: var(--sp-shadow-card); padding: 48px 40px; }
.sp-price-card__name { font: var(--sp-h3); text-align:center; margin: 0 0 6px; }
.sp-price-card__billing { text-align:center; color: var(--sp-text-muted); font: var(--sp-body-sm); margin: 0 0 28px; }
.sp-price-box { background: var(--sp-surface-blue); border-radius: var(--sp-radius-lg); padding: 28px; text-align:center; margin-bottom: 28px; }
.sp-price-box__main { font-family: var(--sp-font-display); font-weight:700; font-size: 44px; color: var(--sp-text); }
.sp-price-box__main span { font-size: 22px; font-family: var(--sp-font-body); color: var(--sp-text-muted); }
.sp-price-box__add { font-family: var(--sp-font-display); font-weight:700; font-size: 26px; color: var(--sp-text); margin-top: 10px; }
.sp-price-box__add span { font-size: 18px; font-family: var(--sp-font-body); color: var(--sp-text-muted); }
.sp-price-box__hint { color: var(--sp-blue); font: var(--sp-body-sm); margin-top: 10px; display:inline-flex; gap:6px; align-items:center; }
.sp-feature-list { list-style:none; margin:0; padding:0; }
.sp-feature-list li { display:flex; gap:10px; align-items:flex-start; padding:7px 0; font: var(--sp-body-sm); color: var(--sp-text); }
.sp-feature-list li::before { content:"✓"; color: var(--sp-green); font-weight:700; flex:none; }

/* ============================================================================
   7. FAQ / ACCORDION
   ============================================================================ */
.sp-faq { max-width: 920px; margin-inline:auto; display:flex; flex-direction:column; gap: 14px; }
.sp-faq__item { border-radius: var(--sp-radius-pill); background:#fff; box-shadow: var(--sp-shadow-card); overflow:hidden; transition: border-radius .2s; }
.sp-faq__q {
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding: 22px 32px; cursor:pointer; font-family: var(--sp-font-display);
  font-weight:700; font-size: 19px; color: var(--sp-text);
}
.sp-faq__q .sp-faq__chev { width:18px; height:18px; flex:none; transition: transform .2s; color: var(--sp-blue); }
.sp-faq__a { padding: 0 32px; max-height:0; overflow:hidden; transition: max-height .25s ease, padding .25s ease; font: var(--sp-body-sm); color: var(--sp-text-muted); }
.sp-faq__item.is-open { background: var(--sp-blue); border-radius: var(--sp-radius-lg); }
.sp-faq__item.is-open .sp-faq__q { color: #fff; }
.sp-faq__item.is-open .sp-faq__chev { transform: rotate(180deg); color:#fff; }
.sp-faq__item.is-open .sp-faq__a { color: rgba(255,255,255,0.9); max-height: 320px; padding: 0 32px 24px; }

/* ============================================================================
   8. FORMS
   ============================================================================ */
.sp-form { display:grid; gap: 22px; }
.sp-field { display:flex; flex-direction:column; gap: 8px; }
.sp-field label { font: var(--sp-body-sm); font-family: var(--sp-font-medium); color: var(--sp-text); }
.sp-field label .req { color: #E5484D; }
.sp-input, .sp-textarea {
  font: var(--sp-body); width:100%; padding: 14px 18px; border-radius: var(--sp-radius-pill);
  border: 1px solid var(--sp-border); background:#fff; color: var(--sp-text);
  transition: border-color .15s, box-shadow .15s;
}
.sp-textarea { border-radius: var(--sp-radius-lg); min-height: 120px; resize: vertical; }
.sp-input::placeholder, .sp-textarea::placeholder { color: #9aa0b4; }
.sp-input:focus, .sp-textarea:focus { outline:none; border-color: var(--sp-blue); box-shadow: 0 0 0 4px rgba(48,58,242,0.12); }
.sp-form-row { display:grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 600px){ .sp-form-row { grid-template-columns: 1fr; } }
.sp-check { display:flex; gap:12px; align-items:flex-start; font: var(--sp-body-sm); color: var(--sp-text-muted); }
.sp-check input { width:20px; height:20px; flex:none; accent-color: var(--sp-blue); margin-top:2px; }

/* ============================================================================
   11. NUMBERED PROCESS STEPS  (Assisted onboarding / Customization pages)
   Light-blue rounded card, big blue NeueKabel number, title, body.
   ============================================================================ */
.sp-steps { display:grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width: 900px){ .sp-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .sp-steps { grid-template-columns: 1fr; } }
.sp-step { background: var(--sp-surface-blue); border-radius: var(--sp-radius-lg); padding: 32px 28px; }
.sp-step__num { font-family: var(--sp-font-display-xb); font-weight: 800; font-size: 40px; line-height:1; color: var(--sp-blue); margin-bottom: 20px; }
.sp-step__title { font-family: var(--sp-font-display); font-weight: 700; font-size: 19px; margin: 0 0 8px; color: var(--sp-text); }
.sp-step__body { font: var(--sp-body-sm); color: var(--sp-text-muted); margin: 0; }

/* ============================================================================
   12. INTEGRATION / LOGO CARDS  (Integrations page grid)
   Small white card: logo, bold title, short description. Left-aligned.
   ============================================================================ */
.sp-logo-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 600px){ .sp-logo-grid { grid-template-columns: 1fr 1fr; } }  /* 3-col holds through tablet (768) */
@media (max-width: 430px){ .sp-logo-grid { grid-template-columns: 1fr; } }
.sp-logo-card { background:#fff; border-radius: var(--sp-radius-md); box-shadow: var(--sp-shadow-card); padding: 22px 24px; }
.sp-logo-card__logo { height: 26px; margin-bottom: 14px; display:flex; align-items:center; }
.sp-logo-card__logo .ph { height: 22px; padding: 0 10px; border-radius:6px; background: var(--sp-surface-blue); color: var(--sp-blue); font-family: var(--sp-font-medium); font-size: 13px; display:inline-flex; align-items:center; }
.sp-logo-card__title { font-family: var(--sp-font-display); font-weight: 700; font-size: 18px; margin: 0 0 6px; color: var(--sp-text); }
.sp-logo-card__desc { font: var(--sp-caption); color: var(--sp-text-muted); margin: 0; }

/* Centered button toolbar (doc / utility page sub-nav) */
.sp-btn-toolbar { display:flex; flex-wrap:wrap; gap: 16px; justify-content:center; }

/* Big display-title feature card (Integrations / Features pages) */
.sp-feature-card { background:#fff; border-radius: var(--sp-radius-lg); box-shadow: var(--sp-shadow-card); padding: 40px 34px; }
.sp-feature-card .sp-chip { margin-bottom: 24px; }

/* ============================================================================
   10. UTILITIES
   ============================================================================ */
.sp-pill-tag { display:inline-flex; align-items:center; gap:8px; padding:8px 18px; border-radius: var(--sp-radius-pill); background: var(--sp-surface-blue); color: var(--sp-blue); font-family: var(--sp-font-medium); font-size: 15px; }
.sp-divider { border:none; border-top:1px solid var(--sp-border); margin: 0; }
.sp-stack-2 > * + * { margin-top: 8px; }
.sp-stack-4 > * + * { margin-top: 16px; }
.sp-center { text-align:center; }
.sp-floating-chat { position: fixed; right: 24px; bottom: 24px; width: 56px; height: 56px; border-radius:50%; background: var(--sp-green); box-shadow: var(--sp-shadow-soft); display:flex; align-items:center; justify-content:center; z-index: 50; }

/* ============================================================================
   13. MOBILE (≤600px)  — small-screen overrides, validated against package 04 (390px)
   ============================================================================ */
@media (max-width: 600px) {
  /* Section rhythm tightens; container hugs edges with 20px gutter */
  .sp-section { padding-block: var(--sp-space-20); }
  .sp-panel { padding: 32px 24px; border-radius: var(--sp-radius-lg); }
  .sp-section-head { margin-bottom: 36px; }

  /* CTAs become full-width, comfortably tall touch targets (≥48px) */
  .sp-hero__actions { flex-direction: column; align-items: stretch; }
  .sp-hero__actions .sp-btn,
  .sp-hero .oauth-row .sp-btn { width: 100%; }
  .sp-btn--block-m { width: 100%; }
  .sp-btn-toolbar { flex-direction: column; }
  .sp-btn-toolbar .sp-btn { width: 100%; }

  /* Hero: copy first, image below, centered */
  .sp-hero { padding-block: var(--sp-space-10) var(--sp-space-20); }
  .sp-hero__title { font: var(--sp-h1); }
  .sp-hero__sub { max-width: none; }

  /* Single-column grids */
  .sp-steps { grid-template-columns: 1fr; }
  .sp-price-grid { grid-template-columns: 1fr; }
  .sp-logo-grid { grid-template-columns: 1fr; }

  /* Cards: a touch less padding */
  .sp-card { padding: 24px; }
  .sp-price-card { padding: 32px 24px; }

  /* FAQ: tighter horizontal padding, stays pill→panel */
  .sp-faq__q { padding: 18px 22px; font-size: 17px; }
  .sp-faq__a { padding-inline: 22px; }
  .sp-faq__item.is-open .sp-faq__a { padding: 0 22px 20px; }

  /* Footer: single column, centered (matches live mobile footer) */
  .sp-footer { padding-block: 56px 28px; text-align: center; }
  .sp-footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .sp-footer__col ul { align-items: center; }
  .sp-footer__wordmark { text-align: center; }
  .sp-footer__resources { gap: 16px 22px; }

  /* Inputs/buttons keep ≥48px height via existing padding; nav CTA full-width in menu */
  .sp-offcanvas .sp-btn { width: 100%; }
}

/* RTL — Arabic pages mirror fully */
[dir="rtl"] .sp-nav__right { margin-left: 0; margin-right: auto; }
[dir="rtl"] .sp-feature-list li,
[dir="rtl"] .sp-check { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .sp-nav__link .sp-caret { transform: scaleX(-1); }

/* ============================================================================
   SkyPlanner — Features page redesign · page-specific components (.fx-)
   Requires colors_and_type.css + skyplanner-ds.css loaded first.
   "From ERP order to live production schedule."
   ============================================================================ */

/* Restore sticky positioning: the DS sets body (.sp-page) overflow-x:hidden,
   which turns body into a (non-scrolling) scroll container and breaks
   position:sticky on the header + subnav. <html> already uses overflow-x:clip,
   so clip the body too — contains bleed without creating a scroll container. */
.sp-page { overflow-x: clip; }

/* The V1b.3 live mobile drawer is position:absolute and relied on the demo
   stage's overflow clip. On this page there's no such wrapper, so pin it to the
   viewport (correct for a full-screen drawer) and clip its off-canvas sub-panel. */
.hv-drawer.hv-drawer--live { position: fixed !important; }

/* ---- shared bits ---------------------------------------------------------- */
/* translation-resilient headings: wrap nicely, never overflow with longer locales */
.sp-features-v2 h1, .sp-features-v2 h2, .sp-features-v2 h3 { overflow-wrap: break-word; }
.fx-hero__title, .fx-head h2, .fx-king h2, .fx-final__body h2 { text-wrap: balance; }
.fx-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: var(--sp-caption); font-family: var(--sp-font-medium);
  letter-spacing: 1.6px; text-transform: uppercase; color: var(--sp-blue);
  margin: 0 0 18px;
}
.fx-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--sp-blue); border-radius: 2px; }
.fx-eyebrow--center { justify-content: center; }

.fx-cap { /* screenshot caption — what the buyer should notice */
  font: var(--sp-caption); color: var(--sp-text-muted); margin: 14px 2px 0;
  display: flex; gap: 9px; align-items: baseline;
}
.fx-cap::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: 6px; border-radius: 50%; background: var(--sp-green); }

/* app screenshot frame — soft white card + faux browser bar */
.fx-shot { position: relative; border-radius: var(--sp-radius-lg); overflow: hidden; background: #fff;
  box-shadow: var(--sp-shadow-card); border: 1px solid var(--sp-border); }
.fx-shot__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: #fff; border-bottom: 1px solid var(--sp-border); }
.fx-shot__bar i { width: 11px; height: 11px; border-radius: 50%; background: #E2E8F4; flex: none; }
.fx-shot__bar span { margin-left: 12px; font: var(--sp-caption); color: var(--sp-text-muted); font-family: var(--sp-font-medium); }
.fx-shot img { width: 100%; height: auto; display: block; }
.fx-shot--plain img { display: block; }

/* ============================================================================
   1. HERO — light, product-led
   ============================================================================ */
.fx-hero { position: relative; overflow: hidden; padding-block: 64px 84px;
  background:
    radial-gradient(120% 90% at 88% -10%, #EAF1FF 0%, rgba(234,241,255,0) 55%),
    radial-gradient(90% 70% at -5% 110%, #E8FBF1 0%, rgba(232,251,241,0) 50%),
    var(--sp-bg);
}
.fx-hero__grid { display: grid; grid-template-columns: 1fr 1.12fr; gap: 56px; align-items: center; }
.fx-hero__title { font: var(--sp-h1); font-size: clamp(34px, 4.4vw, 62px); margin: 0 0 22px; color: var(--sp-text); letter-spacing: -0.5px; }
.fx-hero__title .hl { color: var(--sp-blue); }
.fx-hero__sub { font: var(--sp-body-lg); color: var(--sp-text-muted); max-width: 44ch; margin: 0 0 28px; }
.fx-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 30px; }

/* flow strip: input -> Arcturus -> Gantt -> shop floor */
.fx-flow { display: flex; flex-wrap: wrap; align-items: stretch; gap: 8px; margin: 0 0 28px; }
.fx-flow__node { display: flex; align-items: center; gap: 10px; padding: 10px 16px; background: #fff;
  border: 1px solid var(--sp-border); border-radius: var(--sp-radius-pill); box-shadow: var(--sp-shadow-faint); }
.fx-flow__node b { font: var(--sp-body-sm); font-family: var(--sp-font-medium); color: var(--sp-text); white-space: nowrap; }
.fx-flow__node small { font: var(--sp-caption); color: var(--sp-text-muted); }
.fx-flow__node--ai { background: var(--sp-blue); border-color: var(--sp-blue); }
.fx-flow__node--ai b { color: #fff; }
.fx-flow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sp-green); flex: none; }
.fx-flow__node--ai .fx-flow__dot { background: #fff; }
.fx-flow__arr { align-self: center; color: var(--sp-blue); opacity: .5; flex: none; }

/* micro-proof row — full-width proof bar below hero grid */
.fx-micro { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 54px; margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--sp-border); }
.fx-micro li { list-style: none; display: flex; align-items: center; gap: 10px; font: var(--sp-body-sm); color: var(--sp-text); }
.fx-micro svg { width: 20px; height: 20px; flex: none; color: var(--sp-green); }

.fx-hero__media { position: relative; }
.fx-hero__media .fx-shot { filter: drop-shadow(0 30px 60px rgba(48,58,242,0.18)); }
.fx-hero__badge { position: absolute; left: -18px; bottom: 34px; background: #fff; border-radius: 16px;
  box-shadow: var(--sp-shadow-card); border: 1px solid var(--sp-border); padding: 14px 18px; display: flex; gap: 12px; align-items: center; }
.fx-hero__badge .ico { width: 38px; height: 38px; border-radius: 11px; background: var(--sp-surface-green); display: flex; align-items: center; justify-content: center; color: var(--sp-green); flex: none; }
.fx-hero__badge b { display: block; font: var(--sp-body-sm); font-family: var(--sp-font-medium); color: var(--sp-text); }
.fx-hero__badge small { font: var(--sp-caption); color: var(--sp-text-muted); }

@media (max-width: 980px) {
  .fx-hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .fx-hero__media { order: 2; }
  .fx-hero__sub { max-width: none; }
}
@media (max-width: 760px) { .fx-micro { gap: 14px 36px; margin-top: 32px; } }
@media (max-width: 560px) {
  .fx-hero { padding-block: 36px 56px; }
  .fx-hero__actions { flex-direction: column; align-items: stretch; }
  .fx-hero__actions .sp-btn { width: 100%; }
  .fx-hero__badge { left: 8px; bottom: 8px; padding: 10px 13px; }
}
@media (max-width: 430px) { .fx-micro { flex-direction: column; align-items: flex-start; } }

/* ============================================================================
   STICKY "ON THIS PAGE" SUBNAV
   ============================================================================ */
.fx-subnav { position: sticky; top: 74px; z-index: 26; background: rgba(249,252,254,0.9);
  backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--sp-border); }
.fx-subnav__row { display: flex; align-items: center; gap: 6px; height: 60px; overflow-x: auto; scrollbar-width: none; }
.fx-subnav__row::-webkit-scrollbar { display: none; }
.fx-subnav a { font: var(--sp-body-sm); font-family: var(--sp-font-medium); color: var(--sp-text-muted);
  text-decoration: none; padding: 8px 14px; border-radius: var(--sp-radius-pill); white-space: nowrap; transition: all .15s; }
.fx-subnav a:hover { color: var(--sp-blue); background: var(--sp-surface-blue); }
.fx-subnav a.is-active { color: var(--sp-blue); background: var(--sp-surface-blue); }
.fx-subnav__cta { margin-left: auto; flex: none; }
@media (max-width: 1024px){ .fx-subnav { top: 64px; } }
@media (max-width: 860px) { .fx-subnav__cta { display: none; } }

/* section heading block (left aligned) */
.fx-head { max-width: 900px; margin-bottom: 48px; }
.fx-head--center { max-width: 820px; margin-inline: auto; text-align: center; }
.fx-head--center .fx-eyebrow { justify-content: center; }
.fx-head h2 { font: var(--sp-h2); margin: 0 0 16px; color: var(--sp-text); letter-spacing: -0.4px; }
.fx-head p { font: var(--sp-body-lg); color: var(--sp-text-muted); margin: 0; }

/* ============================================================================
   2. WORKFLOW LOOP — 6 stages
   ============================================================================ */
/* phase strip above the timeline */
.fx-flow2__phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 30px; }
.fx-flow2__phase { position: relative; padding: 0 0 12px 16px; border-bottom: 1px solid var(--sp-border); }
.fx-flow2__phase::before { content: ""; position: absolute; left: 0; top: 3px; width: 5px; height: 30px; border-radius: 3px; background: var(--sp-blue); }
.fx-flow2__phase b { display: block; font-family: var(--sp-font-display-xb); font-weight: 800; font-size: 13px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--sp-blue); }
.fx-flow2__phase span { font: var(--sp-caption); color: var(--sp-text-muted); }
.fx-flow2__phase--exec { border-color: var(--sp-green); }
.fx-flow2__phase--exec::before { background: var(--sp-green); }
.fx-flow2__phase--exec b { color: var(--sp-green); }

/* horizontal timeline rail */
.fx-flow2__track { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr);
  position: relative; }
.fx-flow2__track::before { /* faint Gantt-style lane band */
  content: ""; position: absolute; left: 0; right: 0; top: calc(132px - 4px); height: 52px; border-radius: 16px;
  background: linear-gradient(90deg, rgba(48,58,242,0.06), rgba(91,107,255,0.05) 50%, rgba(0,186,112,0.06)); z-index: 0; }
.fx-flow2__track::after { /* the rail line through the dots */
  content: ""; position: absolute; left: 2.5%; right: 2.5%; top: calc(132px + 22px); height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--sp-blue) 0%, #5b6bff 50%, var(--sp-green) 100%); z-index: 1; }
.fx-flow2__step { position: relative; display: grid; grid-template-rows: 132px 44px 132px; align-items: center; justify-items: start; padding: 0 14px; }
.fx-flow2__card { grid-row: 1; align-self: end; padding-bottom: 22px; }
.fx-flow2__step[data-pos="down"] .fx-flow2__card { grid-row: 3; align-self: start; padding: 22px 0 0; }
.fx-flow2__dot { grid-row: 2; z-index: 2; width: 46px; height: 46px; border-radius: 50%; background: #fff;
  border: 3px solid var(--sp-blue); color: var(--sp-blue); font-family: var(--sp-font-display-xb); font-weight: 800;
  font-size: 18px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(48,58,242,0.20); }
.fx-flow2__step:last-child .fx-flow2__dot { border-color: var(--sp-green); color: var(--sp-green); box-shadow: 0 4px 14px rgba(0,186,112,0.24); }
/* connector tick from card toward the rail */
.fx-flow2__card::after { content: ""; position: absolute; left: 37px; width: 2px; background: linear-gradient(var(--sp-blue), rgba(48,58,242,0.15)); opacity: .5; }
.fx-flow2__step[data-pos="up"] .fx-flow2__card::after { top: calc(100% - 22px); height: 22px; }
.fx-flow2__step[data-pos="down"] .fx-flow2__card::after { bottom: calc(100% - 22px); height: 22px; background: linear-gradient(rgba(48,58,242,0.15), var(--sp-blue)); }
.fx-flow2__t { font-family: var(--sp-font-display); font-weight: 700; font-size: 17px; color: var(--sp-text); margin: 0 0 7px; line-height: 1.22; }
.fx-flow2__b { font: var(--sp-caption); color: var(--sp-text-muted); margin: 0; }

/* loop-back return arc */
.fx-flow2__return { position: relative; margin-top: 8px; height: 86px; }
.fx-flow2__return svg { display: block; width: 100%; height: 100%; }
.fx-flow2__return .path { fill: none; stroke: var(--sp-blue); stroke-width: 2; stroke-dasharray: 7 6; opacity: .55; }
.fx-flow2__return .head { fill: var(--sp-blue); }
.fx-flow2__loop { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 10px; background: var(--sp-surface-blue); color: var(--sp-blue);
  font: var(--sp-body-sm); font-family: var(--sp-font-medium); padding: 10px 20px; border-radius: var(--sp-radius-pill);
  white-space: nowrap; box-shadow: var(--sp-shadow-faint); }
.fx-flow2__loop svg { width: 18px; height: 18px; flex: none; }

/* ---- tablet: 3 + 3 wrap into a 3-col grid, still zigzag ---- */
@media (max-width: 1024px) {
  .fx-flow2__phases { grid-template-columns: 1fr; gap: 0; margin-bottom: 22px; }
  .fx-flow2__phase { display: none; }
  .fx-flow2__track { grid-template-columns: 1fr; }
  .fx-flow2__track::before { left: 22px; right: auto; top: 0; bottom: 96px; width: 3px; height: auto;
    background: linear-gradient(180deg, var(--sp-blue) 0%, #5b6bff 50%, var(--sp-green) 100%); }
  .fx-flow2__step { grid-template-rows: none; grid-template-columns: 44px 1fr; column-gap: 22px;
    align-items: start; justify-items: stretch; padding: 0 0 30px; }
  .fx-flow2__dot { grid-row: 1; grid-column: 1; }
  .fx-flow2__card,
  .fx-flow2__step[data-pos="down"] .fx-flow2__card { grid-row: 1; grid-column: 2; align-self: center; padding: 7px 0 0; }
  .fx-flow2__card::after,
  .fx-flow2__step[data-pos="down"] .fx-flow2__card::after { display: none; }
  .fx-flow2__return { height: auto; margin-top: 0; }
  .fx-flow2__return svg { display: none; }
  .fx-flow2__loop { position: static; transform: none; display: inline-flex; margin-left: 66px; }
}

/* ============================================================================
   3. ROLE CARDS
   ============================================================================ */
.fx-roles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.fx-role { background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg);
  box-shadow: var(--sp-shadow-card); padding: 30px 30px 26px; display: flex; flex-direction: column; }
.fx-role__top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.fx-role__ico { width: 50px; height: 50px; border-radius: 13px; flex: none; display: flex; align-items: center; justify-content: center; background: var(--sp-surface-blue); color: var(--sp-blue); }
.fx-role__ico svg { width: 26px; height: 26px; }
.fx-role__role { font: var(--sp-caption); font-family: var(--sp-font-medium); text-transform: uppercase; letter-spacing: 1.2px; color: var(--sp-text-muted); margin: 0; }
.fx-role__out { font-family: var(--sp-font-display); font-weight: 700; font-size: 21px; line-height: 1.32; color: var(--sp-text); margin: 0 0 18px; }
.fx-role__list { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.fx-role__list li { display: flex; gap: 10px; align-items: flex-start; font: var(--sp-body-sm); color: var(--sp-text); }
.fx-role__list svg { width: 18px; height: 18px; flex: none; color: var(--sp-blue); margin-top: 2px; }
.fx-role__link { margin-top: auto; font-family: var(--sp-font-medium); font-size: 16px; color: var(--sp-blue); text-decoration: none; display: inline-flex; align-items: center; gap: 7px; }
.fx-role__link:hover { gap: 11px; }
.fx-role--green .fx-role__ico { background: var(--sp-surface-green); color: var(--sp-green); }
.fx-role--purple .fx-role__ico { background: var(--sp-surface-purple); color: #6B46E5; }
.fx-role--orange .fx-role__ico { background: var(--sp-surface-orange); color: #E07B1A; }
@media (max-width: 760px) { .fx-roles { grid-template-columns: 1fr; } }

/* ============================================================================
   4. GANTT PROOF — screenshot + numbered callouts
   ============================================================================ */
.fx-gantt { display: grid; grid-template-columns: 1.55fr 1fr; gap: 40px; align-items: center; }
.fx-gantt__media { position: relative; }
.fx-gantt__canvas { position: relative; line-height: 0; }
.fx-pin { position: absolute; width: 30px; height: 30px; border-radius: 50%; background: var(--sp-blue);
  color: #fff; font-family: var(--sp-font-display-xb); font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(48,58,242,0.45);
  border: 3px solid #fff; transform: translate(-50%, -50%); z-index: 3; }
.fx-callouts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.fx-callouts li { display: flex; gap: 14px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid var(--sp-border); }
.fx-callouts li:last-child { border-bottom: none; }
.fx-callouts__n { flex: none; width: 28px; height: 28px; border-radius: 50%; background: var(--sp-surface-blue); color: var(--sp-blue); font-family: var(--sp-font-display-xb); font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; }
.fx-callouts b { font-family: var(--sp-font-display); font-weight: 700; font-size: 16px; color: var(--sp-text); display: block; }
.fx-callouts small { font: var(--sp-caption); color: var(--sp-text-muted); }
@media (max-width: 980px) { .fx-gantt { grid-template-columns: 1fr; gap: 28px; }
  .fx-pin { width: 26px; height: 26px; font-size: 13px; } }

/* why-this-matters strip */
.fx-why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.fx-why div { background: var(--sp-surface-blue); border-radius: var(--sp-radius-md); padding: 20px 22px; font: var(--sp-body-sm); color: var(--sp-text); display: flex; gap: 12px; align-items: flex-start; }
.fx-why svg { width: 20px; height: 20px; flex: none; color: var(--sp-blue); margin-top: 1px; }
@media (max-width: 880px) { .fx-why { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .fx-why { grid-template-columns: 1fr; } }

/* ============================================================================
   5. ARCTURUS SPLIT
   ============================================================================ */
.fx-arc { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.fx-arc__panels { display: flex; flex-direction: column; gap: 18px; }
.fx-arc__panel { border-radius: var(--sp-radius-lg); padding: 26px 28px; }
.fx-arc__panel--blue { background: var(--sp-blue); color: #fff; }
.fx-arc__panel--soft { background: #fff; border: 1px solid var(--sp-border); box-shadow: var(--sp-shadow-faint); }
.fx-arc__panel h3 { font-family: var(--sp-font-display); font-weight: 700; font-size: 19px; margin: 0 0 16px; display: flex; align-items: center; gap: 10px; }
.fx-arc__panel--blue h3 { color: #fff; }
.fx-arc__panel--soft h3 { color: var(--sp-text); }
.fx-arc__tags { display: flex; flex-wrap: wrap; gap: 9px; }
.fx-arc__tags span { font: var(--sp-caption); font-family: var(--sp-font-medium); padding: 7px 14px; border-radius: var(--sp-radius-pill); }
.fx-arc__panel--blue .fx-arc__tags span { background: rgba(255,255,255,0.16); color: #fff; }
.fx-arc__panel--soft .fx-arc__tags span { background: var(--sp-surface-blue); color: var(--sp-blue); }
.fx-arc__note { font: var(--sp-body); color: var(--sp-text-muted); margin: 26px 0 0; padding-left: 18px; border-left: 3px solid var(--sp-green); }
@media (max-width: 980px) { .fx-arc { grid-template-columns: 1fr; gap: 32px; }
  .fx-arc__media { order: -1; } }

/* ============================================================================
   6. FEATURE CLUSTERS
   ============================================================================ */
.fx-clusters { display: flex; flex-direction: column; gap: 28px; }
.fx-cluster { background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-xl);
  box-shadow: var(--sp-shadow-card); overflow: hidden; display: grid; grid-template-columns: 1.05fr 1fr; }
.fx-cluster:nth-child(even) { grid-template-columns: 1fr 1.05fr; }
.fx-cluster:nth-child(even) .fx-cluster__media { order: -1; }
.fx-cluster__body { padding: 40px 42px; }
.fx-cluster__media { background: var(--sp-bg); border-left: 1px solid var(--sp-border); display: flex; align-items: center; justify-content: center; padding: 32px; }
.fx-cluster:nth-child(even) .fx-cluster__media { border-left: none; border-right: 1px solid var(--sp-border); }
.fx-cluster__media img { width: 100%; height: auto; border-radius: var(--sp-radius-md); box-shadow: var(--sp-shadow-card); display: block; }
.fx-cluster__kicker { font: var(--sp-caption); font-family: var(--sp-font-medium); text-transform: uppercase; letter-spacing: 1.4px; color: var(--sp-blue); margin: 0 0 12px; }
.fx-cluster__t { font: var(--sp-h3); margin: 0 0 12px; color: var(--sp-text); }
.fx-cluster__lead { font: var(--sp-body); color: var(--sp-text-muted); margin: 0 0 22px; }
.fx-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 4px; }
.fx-chip { font: var(--sp-caption); font-family: var(--sp-font-medium); color: var(--sp-text);
  background: var(--sp-bg); border: 1px solid var(--sp-border); padding: 8px 14px; border-radius: var(--sp-radius-pill); display: inline-flex; align-items: center; gap: 7px; }
.fx-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sp-blue); flex: none; }
/* progressive disclosure */
.fx-disclose { margin-top: 22px; border-top: 1px solid var(--sp-border); padding-top: 18px; }
.fx-disclose__btn { background: none; border: none; cursor: pointer; font-family: var(--sp-font-medium);
  font-size: 16px; color: var(--sp-blue); display: inline-flex; align-items: center; gap: 8px; padding: 4px 0; }
.fx-disclose__btn svg { width: 17px; height: 17px; transition: transform .2s; }
.fx-disclose__btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.fx-disclose__panel { overflow: hidden; max-height: 0; transition: max-height .28s ease; }
.fx-disclose__panel[data-open="true"] { max-height: 420px; }
.fx-disclose__inner { padding-top: 16px; }
.fx-disclose__inner p { font: var(--sp-body-sm); color: var(--sp-text-muted); margin: 0; }
.fx-disclose__inner dl { margin: 14px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.fx-disclose__inner dt { font: var(--sp-body-sm); font-family: var(--sp-font-medium); color: var(--sp-text); }
.fx-disclose__inner dd { margin: 2px 0 0; font: var(--sp-caption); color: var(--sp-text-muted); }
@media (max-width: 920px) {
  .fx-cluster { grid-template-columns: 1fr; }
  .fx-cluster:nth-child(even) .fx-cluster__media,
  .fx-cluster__media { order: -1; border: none; border-bottom: 1px solid var(--sp-border); }
  .fx-cluster__body { padding: 32px 26px; }
  .fx-disclose__inner dl { grid-template-columns: 1fr; }
}

/* ============================================================================
   7. INTEGRATION DATAFLOW
   ============================================================================ */
.fx-data { display: grid; grid-template-columns: 1fr 1.25fr 1fr; gap: 18px; align-items: stretch; position: relative; }
.fx-data__col { background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg); padding: 28px 26px; box-shadow: var(--sp-shadow-faint); }
.fx-data__col--mid { background: var(--sp-blue); border-color: var(--sp-blue); color: #fff; box-shadow: var(--sp-shadow-soft); }
.fx-data__lab { font: var(--sp-caption); font-family: var(--sp-font-medium); text-transform: uppercase; letter-spacing: 1.3px; margin: 0 0 16px; color: var(--sp-text-muted); }
.fx-data__col--mid .fx-data__lab { color: rgba(255,255,255,0.8); }
.fx-data__col h3 { font-family: var(--sp-font-display); font-weight: 700; font-size: 22px; margin: 0 0 16px; color: var(--sp-text); }
.fx-data__col--mid h3 { color: #fff; }
.fx-data__items { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.fx-data__items li { font: var(--sp-body-sm); color: var(--sp-text); display: flex; gap: 9px; align-items: center; }
.fx-data__items li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sp-blue); flex: none; }
.fx-data__col--mid .fx-data__items li { color: rgba(255,255,255,0.95); }
.fx-data__col--mid .fx-data__items li::before { background: var(--sp-green); }
.fx-data__col--mid .fx-data__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.fx-data__col--mid .fx-data__chips span { font: var(--sp-caption); font-family: var(--sp-font-medium); background: rgba(255,255,255,0.16); color: #fff; padding: 6px 12px; border-radius: var(--sp-radius-pill); }
.fx-data__arrow { display: flex; align-items: center; justify-content: center; color: var(--sp-blue); }
@media (max-width: 920px) {
  .fx-data { grid-template-columns: 1fr; }
  .fx-data__col--mid { order: 0; }
}
.fx-data__methods { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.fx-data__methods span { font: var(--sp-body-sm); font-family: var(--sp-font-medium); color: var(--sp-blue); background: var(--sp-surface-blue); padding: 9px 18px; border-radius: var(--sp-radius-pill); }

/* compatibility logo strip */
.fx-logos { margin-top: 40px; padding: 28px 32px; background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg); }
.fx-logos__lab { text-align: center; font: var(--sp-caption); color: var(--sp-text-muted); margin: 0 0 20px; }
.fx-logos__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px 40px; }
.fx-logos__row img { height: 30px; width: auto; opacity: .82; filter: grayscale(1); transition: all .2s; }
.fx-logos__row img:hover { opacity: 1; filter: grayscale(0); }
.fx-logos__note { text-align: center; font: var(--sp-caption); color: var(--sp-text-muted); margin: 22px 0 0; }

/* ============================================================================
   8. COMPARISON TABLE
   ============================================================================ */
.fx-compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--sp-radius-lg); border: 1px solid var(--sp-border); box-shadow: var(--sp-shadow-card); background: #fff; }
.fx-compare { width: 100%; min-width: 760px; border-collapse: collapse; }
.fx-compare th, .fx-compare td { padding: 18px 20px; text-align: center; border-bottom: 1px solid var(--sp-border); }
.fx-compare thead th { font-family: var(--sp-font-display); font-weight: 700; font-size: 16px; color: var(--sp-text-muted); vertical-align: bottom; }
.fx-compare thead th.fx-compare__sp { color: #fff; }
.fx-compare tbody th { text-align: left; font: var(--sp-body-sm); font-family: var(--sp-font-medium); color: var(--sp-text); width: 30%; }
.fx-compare__sp { background: var(--sp-blue); }
.fx-compare thead .fx-compare__sp { border-top-left-radius: 14px; border-top-right-radius: 14px; }
.fx-compare__sp-name { display: block; font-family: var(--sp-font-display-xb); font-weight: 800; font-size: 18px; }
.fx-compare__sp-tag { display: block; font: var(--sp-caption); font-family: var(--sp-font-body); color: rgba(255,255,255,0.8); margin-top: 3px; }
.fx-compare td.fx-compare__sp { color: #fff; }
.fx-compare tbody tr:last-child td, .fx-compare tbody tr:last-child th { border-bottom: none; }
.fx-yes { color: var(--sp-green); }
.fx-compare__sp .fx-yes { color: #fff; }
.fx-no { color: #C2C7D6; }
.fx-part { font: var(--sp-caption); color: var(--sp-text-muted); }
.fx-ico-cell svg { width: 22px; height: 22px; }
.fx-compare td svg { width: 26px; height: 26px; display: inline-block; vertical-align: middle; }
.fx-compare__hint { font: var(--sp-caption); color: var(--sp-text-muted); text-align: center; margin: 14px 0 0; }

/* ============================================================================
   9. MATURITY LADDER
   ============================================================================ */
.fx-ladder { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; position: relative; }
.fx-rung { position: relative; padding: 0 14px; }
.fx-rung__dot { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 2px solid var(--sp-blue);
  color: var(--sp-blue); font-family: var(--sp-font-display-xb); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 2; margin-bottom: 20px; }
.fx-rung::before { content: ""; position: absolute; top: 21px; left: 0; right: 0; height: 2px; background: var(--sp-border); z-index: 1; }
.fx-rung:first-child::before { left: 50%; }
.fx-rung:last-child::before { right: 50%; }
.fx-rung--last .fx-rung__dot { background: var(--sp-green); border-color: var(--sp-green); color: #fff; }
.fx-rung__t { font-family: var(--sp-font-display); font-weight: 700; font-size: 16px; color: var(--sp-text); margin: 0 0 6px; line-height: 1.3; }
.fx-rung__b { font: var(--sp-caption); color: var(--sp-text-muted); margin: 0; }
@media (max-width: 900px) {
  .fx-ladder { grid-template-columns: 1fr; gap: 0; }
  .fx-rung { padding: 0 0 26px 64px; }
  .fx-rung__dot { position: absolute; left: 0; top: 0; margin: 0; }
  .fx-rung::before { top: 0; bottom: 0; left: 21px; right: auto; width: 2px; height: auto; }
  .fx-rung:first-child::before { top: 22px; }
  .fx-rung:last-child::before { bottom: auto; height: 0; }
  .fx-rung__t { padding-top: 9px; }
}

/* ============================================================================
   10. TRUST STRIP
   ============================================================================ */
.fx-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fx-trust__item { text-align: center; padding: 8px; }
.fx-trust__big { font-family: var(--sp-font-display-xb); font-weight: 800; font-size: clamp(30px, 3.4vw, 44px); color: var(--sp-blue); line-height: 1; }
.fx-trust__lab { font: var(--sp-body-sm); color: var(--sp-text); margin-top: 12px; }
@media (max-width: 720px) { .fx-trust { grid-template-columns: 1fr 1fr; gap: 28px 18px; } }

/* ============================================================================
   11. NEXT STEPS
   ============================================================================ */
.fx-next { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fx-next__card { background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg);
  box-shadow: var(--sp-shadow-card); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s; }
.fx-next__card:hover { transform: translateY(-4px); box-shadow: var(--sp-shadow-soft); }
.fx-next__thumb { position: relative; aspect-ratio: 16/9; background: var(--sp-surface-blue); overflow: hidden; }
.fx-next__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fx-next__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.fx-next__play span { width: 56px; height: 56px; border-radius: 50%; background: rgba(48,58,242,0.92); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(12,16,60,0.3); }
.fx-next__play svg { width: 22px; height: 22px; color: #fff; margin-left: 3px; }
.fx-next__tag { position: absolute; top: 14px; left: 14px; font: var(--sp-caption); font-family: var(--sp-font-medium); background: rgba(255,255,255,0.95); color: var(--sp-blue); padding: 5px 12px; border-radius: var(--sp-radius-pill); }
.fx-next__body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.fx-next__t { font-family: var(--sp-font-display); font-weight: 700; font-size: 19px; color: var(--sp-text); margin: 0 0 6px; }
.fx-next__d { font: var(--sp-caption); color: var(--sp-text-muted); margin: 0 0 16px; }
.fx-next__link { margin-top: auto; font: var(--sp-body-sm); font-family: var(--sp-font-medium); color: var(--sp-blue); display: inline-flex; align-items: center; gap: 7px; }
.fx-next__card:hover .fx-next__link { gap: 11px; }
.fx-next__card--solid { background: var(--sp-blue); justify-content: center; padding: 32px; }
.fx-next__card--solid .fx-next__t { color: #fff; font-size: 22px; }
.fx-next__card--solid .fx-next__d { color: rgba(255,255,255,0.85); }
@media (max-width: 900px) { .fx-next { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .fx-next { grid-template-columns: 1fr; } }

/* ============================================================================
   13. FINAL CTA BAND
   ============================================================================ */
.fx-final { background:
    radial-gradient(90% 120% at 110% 0%, #4854FF 0%, rgba(72,84,255,0) 55%),
    var(--sp-blue); color: #fff; border-radius: var(--sp-radius-xl); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; box-shadow: var(--sp-shadow-soft); }
.fx-final__body { padding: 60px 56px; }
.fx-final__body h2 { font: var(--sp-h2); color: #fff; margin: 0 0 18px; }
.fx-final__body p { font: var(--sp-body-lg); color: rgba(255,255,255,0.9); margin: 0 0 30px; max-width: 44ch; }
.fx-final__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.fx-final__media { position: relative; padding: 44px 44px 0; display: flex; align-items: flex-end; }
.fx-final__media img { width: 100%; height: auto; border-radius: 14px 14px 0 0; box-shadow: 0 -10px 50px rgba(0,0,0,0.35); display: block; }
@media (max-width: 900px) {
  .fx-final { grid-template-columns: 1fr; }
  .fx-final__body { padding: 44px 30px; }
  .fx-final__media { padding: 0 24px; }
  .fx-final__actions .sp-btn { flex: 1 1 auto; }
}

/* ============================================================================
   WHY PRODUCTION PLANNING BREAKS — pain grid
   ============================================================================ */
.fx-pain { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fx-pain__card { background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg);
  padding: 26px 26px 24px; box-shadow: var(--sp-shadow-faint); position: relative; }
.fx-pain__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--sp-surface-orange);
  color: #E07B1A; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.fx-pain__ico svg { width: 24px; height: 24px; }
.fx-pain__t { font-family: var(--sp-font-display); font-weight: 700; font-size: 18px; color: var(--sp-text); margin: 0 0 8px; }
.fx-pain__b { font: var(--sp-body-sm); color: var(--sp-text-muted); margin: 0; }
.fx-pain__foot { margin-top: 30px; display: flex; gap: 14px; align-items: flex-start;
  background: var(--sp-surface-blue); border-radius: var(--sp-radius-md); padding: 22px 26px; }
.fx-pain__foot svg { width: 22px; height: 22px; flex: none; color: var(--sp-blue); margin-top: 2px; }
.fx-pain__foot p { margin: 0; font: var(--sp-body); color: var(--sp-text); }
.fx-pain__foot b { font-family: var(--sp-font-medium); color: var(--sp-blue); }
@media (max-width: 860px) { .fx-pain { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .fx-pain { grid-template-columns: 1fr; } }

/* ============================================================================
   AI ASSISTANT — split with quick-action mock
   ============================================================================ */
.fx-assist { display: grid; grid-template-columns: 1fr 1.02fr; gap: 48px; align-items: center; }
.fx-assist__guard { margin: 22px 0 0; font: var(--sp-caption); color: var(--sp-text-muted);
  padding-left: 16px; border-left: 3px solid var(--sp-border); }
.fx-assist__panel { background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg);
  box-shadow: var(--sp-shadow-card); overflow: hidden; }
.fx-assist__bar { display: flex; align-items: center; gap: 11px; padding: 16px 20px; border-bottom: 1px solid var(--sp-border); }
.fx-assist__avatar { width: 34px; height: 34px; border-radius: 10px; background: var(--sp-blue); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.fx-assist__avatar svg { width: 19px; height: 19px; }
.fx-assist__bar b { font-family: var(--sp-font-display); font-weight: 700; font-size: 16px; color: var(--sp-text); }
.fx-assist__bar small { display: block; font: var(--sp-caption); color: var(--sp-green); }
.fx-assist__bar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sp-green); display: inline-block; margin-right: 5px; }
.fx-assist__body { padding: 22px 20px 24px; }
.fx-assist__msg { background: var(--sp-surface-blue); color: var(--sp-text); border-radius: 14px 14px 14px 4px;
  padding: 14px 16px; font: var(--sp-body-sm); max-width: 86%; margin-bottom: 18px; }
.fx-assist__qlabel { font: var(--sp-caption); font-family: var(--sp-font-medium); text-transform: uppercase; letter-spacing: 1.1px; color: var(--sp-text-muted); margin: 0 0 12px; }
.fx-assist__actions { display: flex; flex-direction: column; gap: 9px; }
.fx-assist__action { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-md); background: var(--sp-bg); font: var(--sp-body-sm); color: var(--sp-text); cursor: default; }
.fx-assist__action svg { width: 18px; height: 18px; flex: none; color: var(--sp-blue); }
.fx-assist__action .arr { margin-left: auto; color: var(--sp-text-muted); }
@media (max-width: 920px) { .fx-assist { grid-template-columns: 1fr; gap: 32px; } .fx-assist__panel { order: -1; } }
.fx-assist__beta { display: inline-block; margin-left: 10px; font: var(--sp-caption); font-family: var(--sp-font-medium); letter-spacing: 1px; color: #6B46E5; background: var(--sp-surface-purple); padding: 2px 9px; border-radius: var(--sp-radius-pill); vertical-align: middle; }
.fx-assist__shot { display: flex; justify-content: center; }
.fx-assist__shot img { width: 100%; max-width: 384px; height: auto; display: block; border-radius: 20px; border: 1px solid var(--sp-border); box-shadow: 0 24px 60px rgba(48,58,242,0.16); }
.fx-assist__points { list-style: none; margin: 0 0 6px; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.fx-assist__points li { display: flex; gap: 13px; align-items: flex-start; }
.fx-assist__points .ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--sp-surface-blue); color: var(--sp-blue); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.fx-assist__points .ic svg { width: 17px; height: 17px; }
.fx-assist__points b { display: block; font-family: var(--sp-font-display); font-weight: 700; font-size: 16px; color: var(--sp-text); margin-bottom: 2px; }
.fx-assist__points span.t { font: var(--sp-caption); color: var(--sp-text-muted); }

/* ============================================================================
   FAQ — extend DS list spacing in a 2-col grid for scan
   ============================================================================ */
.fx-faq { max-width: 920px; margin-inline: auto; }

/* ============================================================================
   MODEL YOUR FACTORY — capacity + materials, two compact columns
   ============================================================================ */
.fx-model { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.fx-model__col { display: flex; flex-direction: column; }
.fx-model__col .fx-shot { margin: 0 0 22px; width: 100%; }
.fx-model__col .fx-shot img { width: 100%; height: auto; display: block; }
.fx-model__sub { display: flex; align-items: center; gap: 11px; margin: 0 0 14px; }
.fx-model__sub .ic { width: 38px; height: 38px; border-radius: 11px; flex: none; background: var(--sp-surface-blue); color: var(--sp-blue); display: flex; align-items: center; justify-content: center; }
.fx-model__sub .ic svg { width: 20px; height: 20px; }
.fx-model__sub h3 { font: var(--sp-h3); font-size: 22px; margin: 0; color: var(--sp-text); }
.fx-model__bul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.fx-model__bul li { display: flex; gap: 11px; align-items: flex-start; font: var(--sp-body-sm); color: var(--sp-text); }
.fx-model__bul li svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--sp-blue); }
.fx-model__bul li b { font-family: var(--sp-font-medium); font-weight: 500; color: var(--sp-text); }
.fx-model__note { grid-column: 1 / -1; margin: 8px 0 0; padding-left: 18px; border-left: 3px solid var(--sp-green); font: var(--sp-body-lg); color: var(--sp-text); }
.fx-model__note b { color: var(--sp-blue); font-family: var(--sp-font-medium); }
@media (max-width: 760px) {
  .fx-model { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================================
   VISIBILITY — one view of production
   ============================================================================ */
.fx-vis { display: grid; grid-template-columns: 1fr 1.25fr; gap: 48px; align-items: center; }
.fx-vis__list { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; }
.fx-vis__list li { display: flex; gap: 15px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--sp-border); }
.fx-vis__list li:last-child { border-bottom: none; }
.fx-vis__list .ic { flex: none; width: 38px; height: 38px; border-radius: 11px; background: var(--sp-surface-blue); color: var(--sp-blue); display: flex; align-items: center; justify-content: center; }
.fx-vis__list .ic svg { width: 20px; height: 20px; }
.fx-vis__list b { display: block; font-family: var(--sp-font-display); font-weight: 700; font-size: 16px; color: var(--sp-text); }
.fx-vis__list span.t { font: var(--sp-caption); color: var(--sp-text-muted); }
.fx-vis__media { position: relative; }
.fx-vis__media .fx-shot { margin: 0; }
.fx-vis__frame { margin: 0; line-height: 0; border-radius: var(--sp-radius-lg); overflow: hidden;
  box-shadow: 0 30px 64px rgba(8,11,45,0.18); }
.fx-vis__frame img { width: 100%; height: auto; display: block; }
.fx-vis__note { margin: 26px 0 0; padding-left: 18px; border-left: 3px solid var(--sp-green); font: var(--sp-body-lg); color: var(--sp-text); }
.fx-vis__note b { color: var(--sp-blue); font-family: var(--sp-font-medium); }
@media (max-width: 900px) {
  .fx-vis { grid-template-columns: 1fr; gap: 30px; }
  .fx-vis__media { order: -1; }
}

/* ============================================================================
   CAPACITY & SHIFTS
   ============================================================================ */
.fx-shift { position: relative; margin-top: 4px; }
.fx-shift__modal { position: absolute; right: -14px; top: 50%; transform: translateY(-50%);
  width: 37%; max-width: 392px; border-radius: 18px; overflow: hidden; background: #fff;
  border: 1px solid var(--sp-border); box-shadow: 0 34px 74px rgba(8,11,45,0.34); z-index: 3; }
.fx-shift__modal img { width: 100%; height: auto; display: block; }
.fx-shift__modal figcaption { font: var(--sp-caption); color: var(--sp-text-muted); padding: 10px 16px; border-top: 1px solid var(--sp-border); background: var(--sp-bg); }
.fx-shift__points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.fx-shift__pt { display: flex; flex-direction: column; gap: 10px; }
.fx-shift__pt .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--sp-surface-blue); color: var(--sp-blue); display: flex; align-items: center; justify-content: center; }
.fx-shift__pt .ic svg { width: 22px; height: 22px; }
.fx-shift__pt b { font-family: var(--sp-font-display); font-weight: 700; font-size: 17px; color: var(--sp-text); }
.fx-shift__pt span { font: var(--sp-body-sm); color: var(--sp-text-muted); }
.fx-shift__note { margin: 30px 0 0; padding-left: 18px; border-left: 3px solid var(--sp-green);
  font: var(--sp-body-lg); color: var(--sp-text); }
.fx-shift__note b { color: var(--sp-blue); font-family: var(--sp-font-medium); }
@media (max-width: 900px) {
  .fx-shift__modal { position: static; transform: none; width: 100%; max-width: 460px; margin: 18px auto 0; }
  .fx-shift__points { grid-template-columns: 1fr; gap: 22px; margin-top: 28px; }
}
.fx-shift__modal--bl { right: auto; left: -16px; top: auto; bottom: 16px; transform: none; width: 47%; max-width: 524px; }

/* materials: two stacked readable screenshots */
.fx-matshots { display: flex; flex-direction: column; gap: 30px; align-items: center; }
.fx-matshots > .fx-shot { width: 100%; }
.fx-matshots .fx-shot figcaption { margin: 0; padding: 13px 18px 15px; }
.fx-matshots__po { max-width: 920px; }

/* hero device cue */
.fx-hero__devices { display: flex; align-items: center; gap: 10px; margin: 22px 0 0;
  font: var(--sp-caption); color: var(--sp-text-muted); }
.fx-hero__devices svg { width: 22px; height: 22px; flex: none; color: var(--sp-blue); }
.fx-hero__devices svg + svg { margin-left: -4px; }

/* ============================================================================
   SHOP-FLOOR DEVICE SHOWCASE
   ============================================================================ */
.fx-dev { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.fx-dev__points { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.fx-dev__points li { display: flex; gap: 13px; align-items: flex-start; }
.fx-dev__points .ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: #fff; color: var(--sp-blue); display: flex; align-items: center; justify-content: center; margin-top: 1px; box-shadow: var(--sp-shadow-faint); }
.fx-dev__points .ic svg { width: 17px; height: 17px; }
.fx-dev__points b { display: block; font-family: var(--sp-font-display); font-weight: 700; font-size: 16px; color: var(--sp-text); margin-bottom: 2px; }
.fx-dev__points span.t { font: var(--sp-caption); color: var(--sp-text-muted); }

.fx-dev__stage { display: flex; align-items: flex-end; justify-content: center; gap: 0; padding-top: 10px; }

/* realistic phone frame */
.fx-phone { position: relative; flex: none; width: 33%; max-width: 188px; z-index: 3;
  margin-right: -42px; margin-bottom: 14px;
  background: linear-gradient(155deg, #232844 0%, #0c0e1c 100%);
  border-radius: 30px; padding: 6px;
  box-shadow: 0 26px 56px rgba(8,11,45,0.42), inset 0 0 0 1px rgba(255,255,255,0.08); }
.fx-phone__screen { position: relative; width: 100%; aspect-ratio: 1162 / 1964; overflow: hidden;
  border-radius: 25px; background: #fff; }
.fx-phone__screen img { position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: fill; display: block; }
.fx-phone__island { position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 13px; background: #0a0c18; border-radius: 999px; z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05); }
.fx-phone::before, .fx-phone::after { content: ""; position: absolute; right: -2px; width: 3px; border-radius: 0 3px 3px 0; background: #1a1e34; }
.fx-phone::before { top: 30%; height: 9%; }
.fx-phone::after { top: 43%; height: 13%; }

/* realistic tablet frame */
.fx-tablet { position: relative; flex: none; width: 60%; max-width: 372px;
  background: linear-gradient(155deg, #232844 0%, #0c0e1c 100%);
  border-radius: 22px; padding: 11px;
  box-shadow: 0 30px 70px rgba(8,11,45,0.34), inset 0 0 0 1px rgba(255,255,255,0.07); }
.fx-tablet__screen { position: relative; width: 100%; aspect-ratio: 1692 / 1964; overflow: hidden;
  border-radius: 11px; background: #fff; }
.fx-tablet__screen img { position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: fill; display: block; }
.fx-tablet__cam { position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: #2a2f4a;
  box-shadow: inset 0 0 0 1.5px rgba(0,0,0,0.4); }

.fx-dev__cap { margin: 22px 0 0; text-align: center; }
@media (max-width: 900px) {
  .fx-dev { grid-template-columns: 1fr; gap: 34px; }
  .fx-dev__media { order: -1; }
}
@media (max-width: 420px) {
  .fx-phone { margin-right: -26px; width: 36%; }
  .fx-tablet { width: 62%; }
}

/* ============================================================================
   VISUAL ROUTING EDITOR
   ============================================================================ */
.fx-routing__head { max-width: 900px; margin-bottom: 30px; }
.fx-routing__chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.fx-routing__shot { margin-top: 4px; position: relative; }
.fx-routing__shot .fx-shot { background: #fff; }
.fx-routing__shot img { width: 100%; height: auto; display: block; }
.fx-routing__legend { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 22px; }
.fx-routing__leg { display: flex; gap: 11px; align-items: flex-start; font: var(--sp-body-sm); color: var(--sp-text); max-width: 340px; }
.fx-routing__leg svg { width: 20px; height: 20px; flex: none; color: var(--sp-blue); margin-top: 2px; }
.fx-routing__leg b { font-family: var(--sp-font-medium); }
@media (max-width: 760px) {
  .fx-routing__legend { flex-direction: column; gap: 14px; }
}

/* ============================================================================
   PRIORITY WEIGHTING SPOTLIGHT
   ============================================================================ */
.fx-prio { display: grid; grid-template-columns: 1fr 1.12fr; gap: 48px; align-items: center; }
.fx-prio__points { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.fx-prio__points li { display: flex; gap: 13px; align-items: flex-start; }
.fx-prio__points .ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--sp-surface-blue); color: var(--sp-blue); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.fx-prio__points .ic svg { width: 17px; height: 17px; }
.fx-prio__points b { display: block; font-family: var(--sp-font-display); font-weight: 700; font-size: 16px; color: var(--sp-text); margin-bottom: 2px; }
.fx-prio__points span.t { font: var(--sp-caption); color: var(--sp-text-muted); }
.fx-prio__media { position: relative; }
@media (max-width: 980px) {
  .fx-prio { grid-template-columns: 1fr; gap: 30px; }
  .fx-prio__media { order: -1; }
}

/* ============================================================================
   KING BUTTON + AUTOPILOT  (deep-blue feature band)
   ============================================================================ */
.fx-king { background:
    radial-gradient(90% 120% at 112% -10%, #4854FF 0%, rgba(72,84,255,0) 55%),
    var(--sp-blue); color: #fff; border-radius: var(--sp-radius-xl); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch;
  padding: 56px 56px; box-shadow: var(--sp-shadow-soft); }
.fx-king .fx-eyebrow { color: #B9C2FF; }
.fx-king .fx-eyebrow::before { background: #B9C2FF; }
.fx-king h2 { color: #fff; font-family: var(--sp-font-display-xb); font-weight: 800; font-size: clamp(30px, 3vw, 43px); line-height: 1.12; margin: 0 0 18px; letter-spacing: -0.4px; }
.fx-king__lead { font: var(--sp-body-lg); color: rgba(255,255,255,0.9); margin: 0 0 26px; }
.fx-king__points { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.fx-king__points li { display: flex; gap: 13px; align-items: flex-start; }
.fx-king__points .ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,0.16); color: #fff; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.fx-king__points .ic svg { width: 17px; height: 17px; }
.fx-king__points b { display: block; font-family: var(--sp-font-display); font-weight: 700; font-size: 16px; color: #fff; margin-bottom: 2px; }
.fx-king__points span.t { font: var(--sp-caption); color: rgba(255,255,255,0.82); }
.fx-king__tag { font-family: var(--sp-font-display); font-weight: 500; font-size: 17px; line-height: 1.4; color: #fff;
  margin: 0; padding-left: 18px; border-left: 3px solid var(--sp-green); }
.fx-king__tag--full { grid-column: 1 / -1; margin-top: 40px; font-size: clamp(18px, 1.9vw, 22px); max-width: 60ch; }
.fx-king__fact { margin: 26px 0 0; padding-left: 18px; border-left: 3px solid var(--sp-green);
  font: var(--sp-body); color: rgba(255,255,255,0.92); max-width: 52ch; }
.fx-king__tag--below { margin: 34px auto 0; max-width: 64ch; text-align: center; border-left: none; padding-left: 0;
  font: var(--sp-body-lg); font-weight: 400; color: var(--sp-text); }
.fx-king__tag--below::before { content: ""; display: block; width: 40px; height: 3px; border-radius: 3px;
  background: var(--sp-green); margin: 0 auto 16px; }

.fx-king__visual { display: flex; flex-direction: column; gap: 16px; }
.fx-king__card { background: #fff; border-radius: var(--sp-radius-lg); padding: 24px 26px; box-shadow: 0 18px 44px rgba(12,16,60,0.28); }
.fx-king__card--btn { text-align: center; }
.fx-king__btnimg { width: 100%; max-width: 280px; height: auto; display: block; margin: 2px auto 14px; }
.fx-king__cardcap { font: var(--sp-caption); color: var(--sp-text-muted); margin: 0; }
.fx-king__cardcap b { color: var(--sp-text); font-family: var(--sp-font-medium); }
.fx-king__auto { display: flex; align-items: center; gap: 16px; }
.fx-king__auto-txt { flex: 1; }
.fx-king__auto-txt b { display: block; font-family: var(--sp-font-display); font-weight: 700; font-size: 16px; color: var(--sp-text); }
.fx-king__auto-txt span { font: var(--sp-caption); color: var(--sp-text-muted); }
.fx-king__toggle { flex: none; width: 56px; height: 32px; border-radius: 32px; background: var(--sp-green); position: relative; }
.fx-king__toggle::after { content: ""; position: absolute; top: 4px; right: 4px; width: 24px; height: 24px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.fx-king__on { font: var(--sp-caption); font-family: var(--sp-font-medium); color: var(--sp-green); display: inline-flex; align-items: center; gap: 6px; }
.fx-king__on::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--sp-green); }
@media (max-width: 980px) {
  .fx-king { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; }
}

/* CSS-built "Reschedule all" King Button (crisp, scalable) */
.kbtn { display: inline-flex; align-items: stretch; background: #fff; border-radius: 999px;
  box-shadow: 0 1px 3px rgba(20,23,58,0.18), inset 0 0 0 1px rgba(20,23,58,0.06);
  font-family: var(--sp-font-body); user-select: none; }
.kbtn__main { display: flex; align-items: center; gap: 12px; padding: 13px 22px; }
.kbtn__crown { width: 30px; height: 24px; display: block; flex: none; }
.kbtn__crown svg { width: 100%; height: 100%; display: block; }
.kbtn__label { font-size: 21px; line-height: 1; color: #3B4252; white-space: nowrap; }
.kbtn__sep { width: 1px; background: #E4E8F2; margin: 9px 0; flex: none; }
.kbtn__time { display: flex; align-items: center; gap: 9px; padding: 0 18px; }
.kbtn__clock { width: 24px; height: 24px; color: var(--sp-blue); flex: none; }
.kbtn__spin { width: 13px; height: 18px; color: #5A6072; flex: none; }
.kbtn__clock svg, .kbtn__spin svg { width: 100%; height: 100%; display: block; }
@media (max-width: 420px) {
  .kbtn__label { font-size: 18px; }
  .kbtn__main { padding: 11px 16px; }
  .kbtn__time { padding: 0 14px; }
}

/* King Button premium product panel + band texture */
.fx-king { position: relative; isolation: isolate; }
.fx-king::before { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(55% 78% at 109% -8%, rgba(150,162,255,0.55), transparent 60%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 86px); }
.fx-king > * { position: relative; z-index: 1; }

.kpanel { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 34px 80px rgba(6,10,45,0.45); flex: 1; display: flex; flex-direction: column; }
.kpanel__hero { position: relative; text-align: center; padding: 42px 28px 36px;
  background: radial-gradient(82% 130% at 50% -12%, #E9EDFF 0%, #fff 72%); }
.kpanel__hero .kbtn { transform: scale(1.04); transform-origin: center; }
.kpanel__klabel { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 22px;
  font: var(--sp-caption); font-family: var(--sp-font-medium); letter-spacing: 1.6px; text-transform: uppercase; color: var(--sp-blue); }
.kpanel__klabel svg { width: 17px; height: 14px; display: block; }
.kpanel__btnwrap { position: relative; display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
  .kpanel__btnwrap::before { content: ""; position: absolute; inset: 0; border-radius: 999px; z-index: -1;
    box-shadow: 0 0 0 0 rgba(48,58,242,0.30); animation: kpulse 2.6s ease-out infinite; }
}
@keyframes kpulse { 0% { box-shadow: 0 0 0 0 rgba(48,58,242,0.32); } 70% { box-shadow: 0 0 0 16px rgba(48,58,242,0); } 100% { box-shadow: 0 0 0 0 rgba(48,58,242,0); } }

.kpanel__gantt { padding: 0; flex: 1; overflow: hidden; background: #fff; border-top: 1px solid var(--sp-border); position: relative; min-height: 220px; }
.kpanel__gantt img { width: 100%; height: 100%; object-fit: cover; object-position: left top; display: block; }
.klane { display: grid; grid-template-columns: 52px 1fr; gap: 12px; align-items: center; }
.klane__name { font: var(--sp-caption); color: var(--sp-text-muted); font-family: var(--sp-font-medium); white-space: nowrap; }
.klane__track { position: relative; height: 18px; border-radius: 5px; background: #EDF1FA; }
.kbar { position: absolute; top: 0; height: 18px; border-radius: 5px; background: var(--sp-blue); }
.kbar--soft { opacity: 0.42; }
.kbar--green { background: var(--sp-green); }

.kpanel__foot { display: flex; align-items: center; gap: 14px; padding: 20px 26px; border-top: 1px solid var(--sp-border); background: var(--sp-bg); }
.kpanel__foottxt { flex: 1; }
.kpanel__foottxt b { display: block; font-family: var(--sp-font-display); font-weight: 700; font-size: 15px; color: var(--sp-text); }
.kpanel__foottxt span { font: var(--sp-caption); color: var(--sp-text-muted); }
.kpanel__clockbtn { flex: none; width: 46px; height: 46px; border-radius: 13px; background: var(--sp-surface-blue); color: var(--sp-blue); display: flex; align-items: center; justify-content: center; }
.kpanel__clockbtn svg { width: 26px; height: 26px; display: block; }
.fx-king__panelcap { margin: 16px 2px 0; font: var(--sp-caption); color: rgba(255,255,255,0.85); text-align: center; }
.fx-king__panelcap .fx-king__on { color: #84E6BB; }
.fx-king__panelcap .fx-king__on::before { background: #84E6BB; }

/* ============================================================================
   SkyPlanner Features v3 — new-section components (.fxv-)
   Loads AFTER skyplanner-features-redesign.css. Reuses the same tokens.
   ============================================================================ */

/* labeled screenshot placeholder (real shots dropped in later) */
.fxv-slot { position: relative; border-radius: var(--sp-radius-md); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, #EEF2FB 0 14px, #F6F9FD 14px 28px);
  border: 1px solid var(--sp-border); display: flex; align-items: center; justify-content: center;
  min-height: 180px; }
.fxv-slot__tag { font-family: var(--sp-font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 12.5px; letter-spacing: .2px; color: var(--sp-text-muted); background: rgba(255,255,255,0.86);
  border: 1px solid var(--sp-border); border-radius: 999px; padding: 7px 15px; text-align: center; max-width: 80%; }

/* ============================================================================
   PROOF STRIP
   ============================================================================ */
.fxv-proof { background: var(--sp-bg-alt); border-top: 1px solid var(--sp-border); border-bottom: 1px solid var(--sp-border); }
.fxv-proof__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 30px 0 6px; }
.fxv-proof__item { display: flex; flex-direction: column; gap: 4px; padding-right: 18px; }
.fxv-proof__item + .fxv-proof__item { border-left: 1px solid var(--sp-border); padding-left: 26px; }
.fxv-proof__big { font-family: var(--sp-font-display-xb); font-weight: 800; font-size: clamp(24px, 2.5vw, 32px); color: var(--sp-blue); line-height: 1.05; letter-spacing: -0.5px; }
.fxv-proof__lab { font: var(--sp-body-sm); color: var(--sp-text); }
.fxv-proof__note { font: var(--sp-caption); color: var(--sp-text-muted); padding: 16px 0 26px; margin: 0; }
@media (max-width: 820px) {
  .fxv-proof__row { grid-template-columns: 1fr 1fr; gap: 22px 18px; }
  .fxv-proof__item:nth-child(odd) { border-left: none; padding-left: 0; }
  .fxv-proof__item:nth-child(even) { padding-left: 22px; }
}
@media (max-width: 460px) {
  .fxv-proof__row { grid-template-columns: 1fr; }
  .fxv-proof__item { border-left: none !important; padding-left: 0 !important; }
}

/* ============================================================================
   HOW IT WORKS — 3 steps
   ============================================================================ */
.fxv-how { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: how; }
.fxv-how__step { position: relative; background: #fff; border: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-lg); box-shadow: var(--sp-shadow-card); padding: 28px 28px 26px; display: flex; flex-direction: column; }
.fxv-how__num { width: 42px; height: 42px; border-radius: 12px; background: var(--sp-blue); color: #fff;
  font-family: var(--sp-font-display-xb); font-weight: 800; font-size: 19px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.fxv-how__t { font: var(--sp-h3); font-size: 21px; color: var(--sp-text); margin: 0 0 10px; }
.fxv-how__b { font: var(--sp-body); color: var(--sp-text-muted); margin: 0 0 20px; }
.fxv-how__slot { margin-top: auto; }
.fxv-how__slot .fxv-slot { min-height: 116px; }
.fxv-how__arrow { position: absolute; right: -19px; top: 44px; z-index: 2; color: var(--sp-blue); opacity: .35; }
.fxv-how__step:last-child .fxv-how__arrow { display: none; }
.fxv-howline { margin: 28px 0 0; padding: 18px 24px; background: var(--sp-surface-green); border-radius: var(--sp-radius-md);
  font: var(--sp-body); color: var(--sp-text); display: flex; gap: 12px; align-items: center; justify-content: center; text-align: center; }
.fxv-howline svg { width: 22px; height: 22px; flex: none; color: var(--sp-green); }
@media (max-width: 880px) {
  .fxv-how { grid-template-columns: 1fr; gap: 18px; }
  .fxv-how__arrow { display: none; }
  .fxv-how__slot .fxv-slot { min-height: 130px; }
}

/* ============================================================================
   MID-PAGE CTA BAND
   ============================================================================ */
.fxv-ctaband { background: var(--sp-blue); border-radius: var(--sp-radius-xl); padding: 44px 44px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px;
  background-image: radial-gradient(120% 140% at 50% -20%, #4854FF 0%, rgba(72,84,255,0) 60%); }
.fxv-ctaband__lead { flex: none; max-width: 56ch; }
.fxv-ctaband__t { font-family: var(--sp-font-display); font-weight: 700; font-size: clamp(21px, 2.2vw, 28px); color: #fff; margin: 0; }
.fxv-ctaband__t span { color: #CBD2FF; }
.fxv-ctaband__actions { display: flex; gap: 13px; flex-wrap: wrap; align-items: center; justify-content: center; flex: none; }
.fxv-ctaband__micro { font: var(--sp-caption); color: rgba(255,255,255,0.72); margin: 10px 0 0; }
@media (max-width: 680px) {
  .fxv-ctaband { padding: 34px 24px; }
  .fxv-ctaband__actions { width: 100%; }
  .fxv-ctaband__actions .sp-btn { flex: 1 1 auto; text-align: center; }
}

/* hero CTA microcopy */
.fxv-heromicro { font: var(--sp-caption); color: var(--sp-text-muted); margin: 14px 0 0; display: flex; align-items: center; gap: 8px; }
.fxv-heromicro svg { width: 15px; height: 15px; color: var(--sp-green); flex: none; }

/* ============================================================================
   DELIVERY DATES + testimonial
   ============================================================================ */
.fxv-deliver { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.fxv-deliver__bul { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.fxv-deliver__bul li { display: flex; gap: 12px; align-items: flex-start; font: var(--sp-body); color: var(--sp-text); }
.fxv-deliver__bul li svg { width: 20px; height: 20px; flex: none; margin-top: 2px; color: var(--sp-blue); }
.fxv-deliver__slot { min-height: 320px; }
@media (max-width: 920px) {
  .fxv-deliver { grid-template-columns: 1fr; gap: 32px; }
  .fxv-deliver__media { order: -1; }
  .fxv-deliver__slot { min-height: 220px; }
}

/* testimonial quote card */
.fxv-quote { margin: 40px 0 0; background: #fff; border: 1px solid var(--sp-border); border-left: 4px solid var(--sp-green);
  border-radius: var(--sp-radius-lg); box-shadow: var(--sp-shadow-card); padding: 30px 34px; }
.fxv-quote--onalt { background: #fff; }
.fxv-quote__mark { font-family: var(--sp-font-display-xb); font-weight: 800; font-size: 40px; line-height: .6; color: var(--sp-green); }
.fxv-quote__txt { font-family: var(--sp-font-display); font-weight: 500; font-size: clamp(19px, 2vw, 24px); line-height: 1.4; color: var(--sp-text); margin: 10px 0 16px; }
.fxv-quote__who { font: var(--sp-body-sm); color: var(--sp-text-muted); }
.fxv-quote__who b { color: var(--sp-text); font-family: var(--sp-font-medium); font-weight: 500; }

/* ============================================================================
   A-TO-Z capabilities
   ============================================================================ */
.fxv-az { columns: 3; column-gap: 30px; }
.fxv-az__item { break-inside: avoid; padding: 13px 0; border-bottom: 1px solid var(--sp-border); display: flex; gap: 11px; align-items: flex-start; }
.fxv-az__item svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--sp-blue); }
.fxv-az__item b { font-family: var(--sp-font-medium); font-weight: 500; color: var(--sp-text); }
.fxv-az__item span { color: var(--sp-text-muted); }
.fxv-az__item .az-d { display: block; font: var(--sp-caption); margin-top: 2px; }
@media (max-width: 860px) { .fxv-az { columns: 2; } }
@media (max-width: 560px) { .fxv-az { columns: 1; } }

/* ============================================================================
   3-PATH CHOOSER
   ============================================================================ */
.fxv-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.fxv-path { background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg);
  box-shadow: var(--sp-shadow-card); padding: 30px 28px; display: flex; flex-direction: column; }
.fxv-path--primary { border-color: var(--sp-blue); box-shadow: 0 0 0 1px var(--sp-blue), var(--sp-shadow-card); }
.fxv-path__ico { width: 46px; height: 46px; border-radius: 12px; background: var(--sp-surface-blue); color: var(--sp-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.fxv-path__ico svg { width: 24px; height: 24px; }
.fxv-path__t { font-family: var(--sp-font-display); font-weight: 700; font-size: 20px; color: var(--sp-text); margin: 0 0 10px; }
.fxv-path__b { font: var(--sp-body-sm); color: var(--sp-text-muted); margin: 0 0 22px; }
.fxv-path__btn { margin-top: auto; }
@media (max-width: 860px) { .fxv-paths { grid-template-columns: 1fr; } }

/* trial microcopy under ladder */
.fxv-pathnote { text-align: center; font: var(--sp-caption); color: var(--sp-text-muted); margin: 22px 0 0; }

/* ============================================================================
   SkyPlanner Features FINAL — polish-pass additions (.fxv- / overrides)
   Loads AFTER skyplanner-features-redesign.css and skyplanner-features-v3.css.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   4c. COMPARISON TABLE — subtle SkyPlanner column emphasis, green checks
   ---------------------------------------------------------------------------- */
.fx-compare td.fx-compare__sp {
  background: #EEF3FF;
  color: var(--sp-ink);
}
.fx-compare td.fx-compare__sp .fx-yes { color: var(--sp-green); }
.fx-compare td.fx-compare__sp span { color: var(--sp-blue); }
/* header badge cell is solid blue with rounded top corners; no side borders
   (a straight 2px border would poke out past the radius, see review note) */

/* ----------------------------------------------------------------------------
   4a. AUTOPILOT REPLAN MICRO-ANIMATION (Gantt mock)
   ---------------------------------------------------------------------------- */
.kpanel__gantt { position: relative; }
.rmock { position: relative; width: 100%; height: 168px; border-radius: 10px;
  background: linear-gradient(180deg, #F7FAFE 0%, #FFFFFF 100%);
  border: 1px solid var(--sp-border); overflow: hidden; }
.rmock__head { position: absolute; top: 0; left: 0; right: 0; height: 26px;
  display: flex; align-items: center; gap: 6px; padding: 0 12px;
  border-bottom: 1px solid var(--sp-border); }
.rmock__head span { width: 1px; height: 12px; background: #E2E8F4; }
.rmock__head span:first-child { width: auto; height: auto; font: 600 10.5px/1 var(--sp-font-mono, ui-monospace, Menlo, monospace); color: var(--sp-text-muted); letter-spacing: .3px; }
.rmock__grid { position: absolute; top: 26px; left: 0; right: 0; bottom: 0; }
.rmock__grid i { position: absolute; top: 0; bottom: 0; width: 1px; background: rgba(20,28,80,0.05); }
.rmock__lanes { position: absolute; top: 26px; left: 0; right: 0; bottom: 0; }
.rmock__lane { position: absolute; left: 0; right: 0; height: 1px; background: rgba(20,28,80,0.06); }
.rmock__bars { position: absolute; top: 26px; left: 0; right: 0; bottom: 0; }
.rmock__bar {
  position: absolute; height: 22px; border-radius: 5px; background: var(--sp-blue);
  left: var(--x1); width: var(--w1); top: var(--ty);
  display: flex; align-items: center; padding: 0 7px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(20,28,80,0.18);
  transition: left .9s cubic-bezier(.6,.02,.2,1), width .9s cubic-bezier(.6,.02,.2,1),
              top .9s cubic-bezier(.6,.02,.2,1), background .35s ease;
}
.rmock__bar b { font: 600 9.5px/1 var(--sp-font-mono, ui-monospace, Menlo, monospace);
  color: rgba(255,255,255,0.92); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rmock__bar--late.show-late { background: #E5484D; }
.rmock__bar--late.show-late b::after { content: " · late"; }
/* settled (replanned) positions */
.rmock.is-replanned .rmock__bar { left: var(--x2); width: var(--w2); top: var(--ty2, var(--ty)); }
.rmock.is-replanned .rmock__bar--late { background: var(--sp-green); }
.rmock__badge {
  position: absolute; right: 10px; bottom: 9px; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--sp-green); color: #fff; font: 600 11px/1 var(--sp-font-body);
  padding: 6px 11px; border-radius: 999px; opacity: 0; transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease; pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,186,112,0.35);
}
.rmock__badge svg { width: 13px; height: 13px; }
.rmock.done .rmock__badge { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .rmock__bar { transition: none; }
  .rmock__badge { transition: none; }
}

/* ----------------------------------------------------------------------------
   4d. STICKY BOTTOM CTA BAR (desktop only)
   ---------------------------------------------------------------------------- */
.fxv-stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: #fff; border-top: 1px solid var(--sp-border);
  box-shadow: 0 -8px 30px -18px rgba(20,28,80,0.5);
  transform: translateY(110%); transition: transform .32s cubic-bezier(.4,.1,.2,1);
}
.fxv-stickybar.is-visible { transform: translateY(0); }
.fxv-stickybar__inner { display: flex; align-items: center; gap: 20px; padding: 12px 0; }
.fxv-stickybar__txt { font: var(--sp-body); font-family: var(--sp-font-medium); color: var(--sp-text); margin: 0; }
.fxv-stickybar__txt b { color: var(--sp-blue); }
.fxv-stickybar__actions { margin-left: auto; display: flex; gap: 12px; align-items: center; }
.fxv-stickybar__close {
  flex: none; width: 34px; height: 34px; border-radius: 9px; border: 1px solid var(--sp-border);
  background: #fff; color: var(--sp-text-muted); cursor: pointer; font-size: 16px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.fxv-stickybar__close:hover { background: var(--sp-bg-alt); color: var(--sp-text); }
.fxv-stickybar__close:focus-visible { outline: 3px solid rgba(48,58,242,0.4); outline-offset: 2px; }
@media (max-width: 1024px) { .fxv-stickybar { display: none; } }

/* testimonial context line under attribution */
.fxv-quote__ctx { display: block; margin-top: 3px; font: var(--sp-caption); color: var(--sp-text-muted); }

/* subnav green CTA: keep button text white (the generic .fx-subnav a color
   rule otherwise overrides it to muted/blue, hurting contrast on green) */
.fx-subnav a.fx-subnav__cta, .fx-subnav a.fx-subnav__cta:hover { color: #fff; background: var(--sp-green); }
/* the row clips overflow-x:auto, which cuts the hover lift shadow at the right
   edge; keep the CTA flat on hover (color shift only) so nothing is clipped */
.fx-subnav a.fx-subnav__cta:hover { transform: none; box-shadow: none; background: var(--sp-green-600); }

/* refined testimonial card: drop the green left-border accent (AI-slop trope).
   Lead with the green quotation mark + a clean even-bordered card instead. */
.fxv-quote { border: 1px solid var(--sp-border); border-left: 1px solid var(--sp-border);
  border-radius: var(--sp-radius-lg); padding: 32px 36px; position: relative; }
.fxv-quote__mark { font-size: 56px; color: var(--sp-green); opacity: 0.9; }

/* "In daily use" case band */
.fxv-cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.fxv-cases__grid--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .fxv-cases__grid--four { grid-template-columns: 1fr 1fr; } }
.fxv-case { background: #fff; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-lg);
  box-shadow: var(--sp-shadow-card); padding: 26px 26px 24px; display: flex; flex-direction: column; }
.fxv-case__name { font-family: var(--sp-font-display); font-weight: 700; font-size: 19px; color: var(--sp-text); margin: 0 0 6px; }
.fxv-case__meta { font: var(--sp-caption); color: var(--sp-blue); font-family: var(--sp-font-medium); margin: 0 0 14px; }
.fxv-case__body { font: var(--sp-body-sm); color: var(--sp-text-muted); margin: 0; }
.fxv-vh { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
@media (max-width: 860px) { .fxv-cases__grid { grid-template-columns: 1fr; } }

/* quiet closing quote above the final CTA */
.fxv-closequote { max-width: 760px; margin: 0 auto; text-align: center; padding-bottom: var(--sp-space-12); }
.fxv-closequote blockquote { font-family: var(--sp-font-display); font-weight: 500; font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1.42; color: var(--sp-text); margin: 0 0 14px; }
.fxv-closequote figcaption { font: var(--sp-body-sm); color: var(--sp-text-muted); }
.fxv-closequote figcaption b { color: var(--sp-text); font-family: var(--sp-font-medium); font-weight: 500; }

/* ============================================================================
   AUTOPILOT — clean redesign (.apx-). Centerpiece is the REAL King button;
   no fake timeline. Replaces the old kpanel/rmock visual.
   ============================================================================ */
.apx-card { position: relative; background: #fff; border-radius: 22px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(6,10,45,0.40); padding: 34px 34px 30px; }
.apx-card__glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 120%; height: 90%; pointer-events: none;
  background: radial-gradient(50% 60% at 50% 50%, rgba(48,58,242,0.16) 0%, rgba(48,58,242,0) 70%); }
.apx-tag { position: relative; display: inline-flex; align-items: center; gap: 8px; font: var(--sp-caption);
  font-family: var(--sp-font-medium); text-transform: uppercase; letter-spacing: 1.2px; color: var(--sp-blue);
  background: var(--sp-surface-blue); padding: 6px 13px; border-radius: 999px; margin: 0 0 22px; }
.apx-tag svg { width: 15px; height: 15px; }

/* button stage */
.apx-stage { position: relative; display: flex; justify-content: center; padding: 18px 0 8px; }
.apx-stage .kbtn { transform: scale(1.12); transform-origin: center; box-shadow: 0 10px 30px rgba(48,58,242,0.22), inset 0 0 0 1px rgba(20,23,58,0.06); }
.apx-hint { position: relative; text-align: center; font: var(--sp-body-sm); color: var(--sp-text-muted); margin: 22px auto 0; max-width: 34ch; }
.apx-hint b { color: var(--sp-text); font-family: var(--sp-font-medium); font-weight: 500; }

/* divider */
.apx-or { position: relative; display: flex; align-items: center; gap: 14px; margin: 24px 0; color: var(--sp-text-muted); }
.apx-or::before, .apx-or::after { content: ""; height: 1px; background: var(--sp-border); flex: 1; }
.apx-or span { font: var(--sp-caption); font-family: var(--sp-font-medium); text-transform: uppercase; letter-spacing: 1.4px; }

/* autopilot row */
.apx-auto { position: relative; display: flex; align-items: center; gap: 16px;
  background: var(--sp-bg-alt); border: 1px solid var(--sp-border); border-radius: 16px; padding: 16px 18px; }
.apx-auto__ic { flex: none; width: 40px; height: 40px; color: var(--sp-blue);
  display: flex; align-items: center; justify-content: center; }
.apx-auto__ic svg { width: 34px; height: 34px; }
.apx-auto__txt { flex: 1; min-width: 0; }
.apx-auto__txt b { display: block; font-family: var(--sp-font-display); font-weight: 700; font-size: 16px; color: var(--sp-text); }
.apx-auto__txt span { font: var(--sp-caption); color: var(--sp-text-muted); }
.apx-switch { flex: none; width: 50px; height: 29px; border-radius: 999px; background: var(--sp-green); position: relative; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04); }
.apx-switch__knob { position: absolute; top: 3px; right: 3px; width: 23px; height: 23px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.22); }
.apx-card__cap { position: relative; text-align: center; font: var(--sp-caption); color: var(--sp-text-muted); margin: 16px 0 0; }
.apx-card__cap .apx-on { color: var(--sp-green); font-family: var(--sp-font-medium); }
@media (max-width: 560px) {
  .apx-card { padding: 26px 22px 24px; }
  .apx-stage .kbtn { transform: scale(1); }
}

/* secondary "Watch" link used under section captions */

.fxv-watchlink { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font: var(--sp-body-sm); font-family: var(--sp-font-medium); color: var(--sp-blue); text-decoration: none; }
.fxv-watchlink svg { width: 17px; height: 17px; flex: none; }
.fxv-watchlink:hover { text-decoration: underline; }
.fxv-capwrap { text-align: center; }

/* hero meta: full-width trust row under the hero grid, above the proof bar */
.fxv-herometa { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 22px;
  margin-top: 30px; text-align: center; }
.fxv-herometa .fxv-heromicro,
.fxv-herometa .fx-hero__devices { margin: 0; white-space: nowrap; }
.fxv-herometa .fx-hero__devices { position: relative; }
@media (min-width: 561px) {
  .fxv-herometa .fx-hero__devices::before { content: ""; position: absolute; left: -12px; top: 50%; transform: translateY(-50%); width: 1px; height: 15px; background: var(--sp-border); }
}

/* hero badge: crown emblem (King button reference) on a blue tile */
.fx-hero__badge .ico--crown { background: var(--sp-surface-blue); padding: 8px; }
.fx-hero__badge .ico--crown svg { width: 100%; height: auto; display: block; }

/* routing legend: clean 2x2 when there are 4 items */
#routing .fx-routing__legend { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 40px; }
#routing .fx-routing__leg { max-width: none; }
@media (max-width: 760px) {
  #routing .fx-routing__legend { grid-template-columns: 1fr; gap: 14px; }
}

/* Visibility: keep single column (translation-safe) and align the image to the
   top so the section is not over-tall. Padding + heading stay on the DS scale
   (120/64) like every other section, for consistent rhythm. */
@media (min-width: 760px) {
  #visibility .fx-vis { align-items: start; }
}
.fx-vis__note--full { grid-column: 1 / -1; margin-top: 8px; }

/* Capacity & materials: crop the taller Warehouse shot to the calendar's height
   so the two columns line up. Calendar 2738x1514, Warehouse 2496x1600. */
.fx-model__col:nth-of-type(2) .fx-shot img {
  aspect-ratio: 2738 / 1514;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

/* How-it-works step thumbnail (real screenshot, capped to placeholder height) */
/* unify all three step visuals to one height */
.fxv-how__slot { margin-top: auto; }
.fxv-how__slot img { width: 100%; height: 162px; aspect-ratio: auto; object-fit: contain; object-position: center;
  display: block; border-radius: var(--sp-radius-md); border: 1px solid var(--sp-border); background: #F7FAFE; padding: 6px; }
.fxv-how__slot .fxv-slot { min-height: 162px; height: 162px; }

/* step-2 "inputs" mini diagram (CSV / manual / ERP -> Orders) */
.fxv-src { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; height: 162px;
  background: #F7FAFE; border: 1px solid var(--sp-border); border-radius: var(--sp-radius-md);
  padding: 12px 12px; }
.fxv-src__in { display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; gap: 6px; width: 100%; }
.fxv-src__chip { display: inline-flex; align-items: center; gap: 6px; flex: none; background: #fff;
  border: 1px solid var(--sp-border); border-radius: var(--sp-radius-pill); padding: 5px 11px;
  box-shadow: var(--sp-shadow-faint); font: var(--sp-caption); font-family: var(--sp-font-medium); color: var(--sp-text); white-space: nowrap; }
.fxv-src__chip svg { width: 15px; height: 15px; flex: none; color: var(--sp-blue); }
.fxv-src__chip b { font-family: var(--sp-font-medium); font-weight: 500; }
.fxv-src__merge { flex: none; color: var(--sp-blue); opacity: .5; }
.fxv-src__out { flex: none; display: inline-flex; align-items: center; gap: 9px;
  background: var(--sp-blue); color: #fff; border-radius: var(--sp-radius-pill); padding: 9px 18px;
  box-shadow: 0 8px 20px rgba(48,58,242,0.28); }
.fxv-src__out svg { width: 18px; height: 18px; flex: none; }
.fxv-src__out b { font-family: var(--sp-font-display); font-weight: 700; font-size: 15px; white-space: nowrap; }

/* ============================================================================
   GeneratePress shell counter-rules (trial-v2 precedent).
   These adapt the real WordPress shell to the approved design. They never
   change design values; they stop global theme rules from leaking in.
   ============================================================================ */

body.skyplanner-features-v2-page,
body.skyplanner-features-v2-page .site-header {
  overflow-x: clip;
}

body.skyplanner-features-v2-page.separate-containers .inside-article,
body.skyplanner-features-v2-page.one-container .site-content {
  padding: 0 !important;
}

body.skyplanner-features-v2-page #page.grid-container {
  max-width: none;
  width: 100%;
}

body.rtl.skyplanner-features-v2-page .main-navigation:not(.toggled) ul ul {
  left: -99999px !important;
  right: auto !important;
}

body.rtl.skyplanner-features-v2-page .main-navigation:not(.toggled) ul li:hover > ul,
body.rtl.skyplanner-features-v2-page .main-navigation:not(.toggled) ul li.sfHover > ul {
  left: auto !important;
  right: 0 !important;
}

.sp-features-v2 .wp-block-group,
.sp-features-v2 .wp-block-heading,
.sp-features-v2 .wp-block-list,
.sp-features-v2 .wp-block-buttons,
.sp-features-v2 .wp-block-button {
  margin-top: 0;
  margin-bottom: 0;
}

.sp-features-v2 .wp-block-group {
  max-width: none;
}

.sp-features-v2 .wp-block-group__inner-container {
  max-width: none !important;
  padding: 0 !important;
}

.sp-features-v2 a {
  color: inherit;
}

.sp-features-v2 a:hover,
.sp-features-v2 a:focus {
  color: inherit;
}

/* ----------------------------------------------------------------------------
   Heading counters. The child theme sets h1/h2/h3/h4 fonts with !important,
   so every heading context re-asserts the design's own values. Generic
   baselines first, specific contexts after (cascade order resolves equals).
   ---------------------------------------------------------------------------- */

body.skyplanner-features-v2-page .sp-features-v2 h1 {
  text-shadow: none !important;
}

body.skyplanner-features-v2-page .sp-features-v2 h1.fx-hero__title {
  font: var(--sp-h1) !important;
  font-size: clamp(34px, 4.4vw, 62px) !important;
  line-height: 1.08 !important;
}

body.skyplanner-features-v2-page .sp-features-v2 h2 {
  font: var(--sp-h2) !important;
}

body.skyplanner-features-v2-page .sp-features-v2 h3 {
  font: var(--sp-h3) !important;
}

body.skyplanner-features-v2-page .sp-features-v2 h2 > span {
  background: none !important;
}

body.skyplanner-features-v2-page .sp-features-v2 .fx-king h2 {
  font-family: var(--sp-font-display-xb) !important;
  font-weight: 800 !important;
  font-size: clamp(30px, 3vw, 43px) !important;
  line-height: 1.12 !important;
}

body.skyplanner-features-v2-page .sp-features-v2 .fx-arc__panel h3 {
  font-family: var(--sp-font-display) !important;
  font-weight: 700 !important;
  font-size: 19px !important;
  line-height: 1.3 !important;
}

body.skyplanner-features-v2-page .sp-features-v2 .fx-data__col h3 {
  font-family: var(--sp-font-display) !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  line-height: 1.3 !important;
}

body.skyplanner-features-v2-page .sp-features-v2 .fx-model__sub h3 {
  font: var(--sp-h3) !important;
  font-size: 22px !important;
}

body.skyplanner-features-v2-page .sp-features-v2 h3.fxv-how__t {
  font: var(--sp-h3) !important;
  font-size: 21px !important;
}

body.skyplanner-features-v2-page .sp-features-v2 h3.fxv-path__t {
  font-family: var(--sp-font-display) !important;
  font-weight: 700 !important;
  font-size: 20px !important;
  line-height: 1.3 !important;
}

body.skyplanner-features-v2-page .sp-features-v2 h3.sp-faq__q {
  font-family: var(--sp-font-display) !important;
  font-weight: 700 !important;
  font-size: 19px !important;
  line-height: 1.4 !important;
}

.sp-features-v2 p.sp-faq__a {
  margin: 0;
}

/* ----------------------------------------------------------------------------
   Heading margin counters. WordPress adds .wp-block-heading to every rendered
   heading, so the .sp-features-v2 .wp-block-heading margin reset above outranks
   the design's per-context heading margins (the design HTML has no wp- classes).
   Re-assert the design's explicit heading margins; headings the design left at
   its global *{margin:0} reset stay covered by the wp-block reset.
   ---------------------------------------------------------------------------- */

body.skyplanner-features-v2-page .sp-features-v2 h1.fx-hero__title {
  margin: 0 0 22px !important;
}

body.skyplanner-features-v2-page .sp-features-v2 .fx-head h2 {
  margin: 0 0 16px !important;
}

body.skyplanner-features-v2-page .sp-features-v2 .fx-king h2 {
  margin: 0 0 18px !important;
}

body.skyplanner-features-v2-page .sp-features-v2 .fx-final__body h2 {
  margin: 0 0 18px !important;
}

body.skyplanner-features-v2-page .sp-features-v2 .fx-arc__panel h3 {
  margin: 0 0 16px !important;
}

body.skyplanner-features-v2-page .sp-features-v2 .fx-data__col h3 {
  margin: 0 0 16px !important;
}

body.skyplanner-features-v2-page .sp-features-v2 h3.fxv-how__t {
  margin: 0 0 10px !important;
}

body.skyplanner-features-v2-page .sp-features-v2 h3.fxv-path__t {
  margin: 0 0 10px !important;
}

/* ----------------------------------------------------------------------------
   Blockquote leak counter. GeneratePress styles bare blockquote with italic,
   a gray left border and 20px padding. The design's quote components set
   font, color and margin through their own classes but never these
   properties, so the theme values leaked in. :where() keeps specificity at
   the page-scope level so the design's class rules still win where they
   declare values.
   ---------------------------------------------------------------------------- */
.sp-features-v2 :where(blockquote) {
  font-style: normal;
  border: 0;
  padding: 0;
  position: static;
  background: none;
}

/* ----------------------------------------------------------------------------
   Sticky main header (page-scoped). The design has BOTH menus sticky: the
   main header at the viewport top and the page subnav at top:74px below it.
   The real V1b.3 header declares position:sticky top:0 but never sticks —
   its .sp-header-v1b2 wrapper is a 75px-tall position:relative box, so the
   sticky has no travel room (same on production). Make the wrapper itself
   sticky on this page only (body class set by inc/features-v2.php); the
   design's subnav offsets (74px / 64px ≤1024px) then apply as authored, and
   features-v2.js already computes anchor scroll offsets as header height +
   subnav height. z-index mirrors the header's own value.
   ---------------------------------------------------------------------------- */
body.skyplanner-features-v2-page .sp-header-v1b2 { position: sticky; top: 0; z-index: 80; }

/* ----------------------------------------------------------------------------
   Mobile button wrap. The design declares .sp-btn { white-space: nowrap },
   which overflows a 390px viewport when translated labels run long (German
   final-CTA buttons reach ~445px; body overflow-x clip then cuts them off).
   Allow label wrapping on narrow screens; visual change only where the
   design itself already broke.
   ---------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .sp-features-v2 .sp-btn { white-space: normal; text-align: center; line-height: 1.25; }
  /* Hero meta row: long translated device labels (e.g. Japanese) overflow a
     390px viewport with nowrap; let the row wrap instead. */
  .sp-features-v2 .fxv-herometa .fx-hero__devices { white-space: normal; flex-wrap: wrap; }
}

/* ----------------------------------------------------------------------------
   List margin re-asserts. The .wp-block-list reset above (which neutralizes
   GeneratePress's default block gaps) also flattened the design's own top
   margins on classed list components — most visibly the hero micro-proof row
   whose divider line sat flush against the meta row. Mirror the design's
   verbatim margin values at reset-beating specificity.
   ---------------------------------------------------------------------------- */
.sp-features-v2 ul.fx-micro { margin-top: 44px; }
@media (max-width: 760px) {
  .sp-features-v2 ul.fx-micro { margin-top: 32px; }
}
.sp-features-v2 ul.fx-dev__points,
.sp-features-v2 ul.fx-prio__points { margin: 26px 0 0; }
.sp-features-v2 ul.fx-vis__list,
.sp-features-v2 ul.fxv-deliver__bul { margin: 24px 0 0; }

/* ----------------------------------------------------------------------------
   Button color re-asserts. The link-color counter above
   (.sp-features-v2 a { color: inherit }) outranks the design's single-class
   button rules (.sp-btn--green { color: #fff } etc.), so anchor buttons
   inherited the surrounding text color — dark-on-green CTAs. Mirror the
   design's own color values for every .sp-btn variant at counter-beating
   specificity. Hover values are the design's verbatim; variants whose hover
   keeps the base color repeat it so a:hover/a:focus inherit never applies.
   ---------------------------------------------------------------------------- */
.sp-features-v2 a.sp-btn--green, .sp-features-v2 a.sp-btn--green:hover, .sp-features-v2 a.sp-btn--green:focus,
.sp-features-v2 a.sp-btn--blue, .sp-features-v2 a.sp-btn--blue:hover, .sp-features-v2 a.sp-btn--blue:focus,
.sp-features-v2 a.sp-btn--nav, .sp-features-v2 a.sp-btn--nav:hover, .sp-features-v2 a.sp-btn--nav:focus,
.sp-features-v2 a.sp-btn--ghost-onblue { color: #fff; }
.sp-features-v2 a.sp-btn--outline,
.sp-features-v2 a.sp-btn--white, .sp-features-v2 a.sp-btn--white:hover, .sp-features-v2 a.sp-btn--white:focus,
.sp-features-v2 a.sp-btn--text { color: var(--sp-ink); }
.sp-features-v2 a.sp-btn--outline:hover, .sp-features-v2 a.sp-btn--outline:focus,
.sp-features-v2 a.sp-btn--ghost-onblue:hover, .sp-features-v2 a.sp-btn--ghost-onblue:focus,
.sp-features-v2 a.sp-btn--text:hover, .sp-features-v2 a.sp-btn--text:focus { color: var(--sp-blue); }
