/* Schedular Pro V2 — 2026 feature-page design (Figma Website V1).
   Tokens sampled from the implemented homepage + Figma frames. */

.scv2 {
  --scv2-orange: #ff6900;
  --scv2-orange-dark: #e55f00;
  --scv2-ink: #464646;
  --scv2-muted: #666666;
  --scv2-strip-muted: #7c8697;
  --scv2-cream: #fcfaf4;
  --scv2-radius: 24px;
  --scv2-radius-sm: 12px;
  --scv2-font-display: "Bricolage Grotesque", "DM Sans", sans-serif;
  --scv2-font-body: "DM Sans", -apple-system, sans-serif;

  font-family: var(--scv2-font-body);
  font-size: 16px;
  color: var(--scv2-ink);
  background: var(--scv2-cream);
  overflow-x: hidden;
}

/* 1464 = design's 1416px CONTENT width + our 2x24px padding (codex audit:
   counting padding against 1416 left every card 48px narrow). */
.scv2-container { max-width: 1464px; margin: 0 auto; padding: 0 24px; }

/* Header compression moved to header-style.css base rule (site-wide,
   Sameer 2026-07-23) — no v2-scoped override needed anymore. */
.scv2-center { text-align: center; }
.scv2-center-row { justify-content: center; }
.scv2-muted { color: var(--scv2-muted); }

/* Type */
.scv2 .scv2-h1 { font-family: var(--scv2-font-display); font-weight: 700; font-size: clamp(36px, 3.4vw, 56px); line-height: 1.29; letter-spacing: -0.01em; margin: 0 0 26px; }
.scv2 .scv2-h2 { font-family: var(--scv2-font-display); font-weight: 700; font-size: clamp(28px, 2.6vw, 36px); line-height: 1.25; margin: 0 0 16px; }
.scv2 .scv2-h3 { font-family: var(--scv2-font-display); font-weight: 700; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.3; margin: 0 0 12px; }
.scv2-orange { color: var(--scv2-orange); }
.scv2-h1 .scv2-orange { color: var(--scv2-ink); } /* design: H1 all-ink (Sameer 2026-07-23) */

/* Buttons */
.scv2-btn { display: inline-flex; align-items: center; gap: 8px; height: 52px; padding: 8px 16px; border-radius: var(--scv2-radius-sm); font-family: var(--scv2-font-display); font-weight: 700; font-size: 16px; text-decoration: none; border: 1px solid var(--scv2-ink); box-shadow: 3px 3px 0 var(--scv2-ink); transition: transform .12s ease, box-shadow .12s ease, background .15s ease; }
.scv2-btn:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--scv2-ink); }
.scv2-btn-primary { background: var(--scv2-orange); color: #fff !important; }
.scv2-btn-primary:hover { background: var(--scv2-orange-dark); }
.scv2-btn-outline { background: #fff; color: var(--scv2-ink) !important; }
.scv2-btn-ghost { color: var(--scv2-ink) !important; padding: 10px 0; font-weight: 700; border: none; box-shadow: none; background: transparent; }
.scv2-btn-ghost:hover { transform: none; box-shadow: none; text-decoration: underline; text-underline-offset: 4px; }
.scv2-arrow { flex: 0 0 auto; transition: transform .2s ease; }
/* Homepage parity: on hover the arrow rotates to diagonal (→ becomes ↗). */
.scv2-btn:hover .scv2-arrow { transform: rotate(-45deg); }
.scv2-mt-18 { margin-top: 18px; }
.scv2-int-statement { font-family: var(--scv2-font-display); font-weight: 700; font-size: 28px; color: var(--scv2-ink); margin: 4px 0 8px; }
.scv2-cta-row { display: flex; gap: 20px; flex-wrap: wrap; margin-top: 36px; }
.scv2-microcopy { font-size: 14px; color: var(--scv2-muted); margin-top: 16px; }

/* Hero — plain gradient; the feature-page design frame has NO grid texture
   (that's a homepage-hero treatment; codex+gemini audit). Ends at #fcf6ea =
   exactly where the strip's gradient starts, so no fold seam line.
   Per-page theme = hero start color only (pixel-sampled from each frame;
   every other surface is identical across the 5 frames). */
.scv2 { --scv2-hero-from: #ffdda5; }
.scv2-theme-publish   { --scv2-hero-from: #fcf9c4; }
.scv2-theme-analytics { --scv2-hero-from: #e3dff5; }
.scv2-theme-engage    { --scv2-hero-from: #d2e0f3; }
.scv2-theme-listening { --scv2-hero-from: #d3d3d3; }
.scv2-hero { background: linear-gradient(180deg, var(--scv2-hero-from) 0%, #fcf6ea 100%); padding: 72px 0 56px; }
.scv2-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 44px; align-items: center; }
.scv2-hero-desc { font-size: 18px; line-height: 1.4; color: var(--scv2-muted); max-width: 46ch; }
.scv2-hero-media { min-height: 300px; display: flex; justify-content: flex-end; }
/* Design: the hero composite FLOATS on the gradient (no white frame chrome).
   553px = the component's true width (692 was the frame INCLUDING empty
   margins — rendered ~25% oversize); design insets it 70px from the
   container's right edge. */
.scv2-hero-frame { max-width: 553px; width: 100%; margin-right: 70px; }
.scv2-hero-img { display: block; width: 100%; height: auto; }
/* ---- Layered hero stacks: 1:1 ports of the homepage .sc-features-images
   tab stacks (base + hover rules copied verbatim from the homepage Bricks
   CSS, selectors rewritten; source ids in scheduler-pro-v2.php). Point-in-
   time copy — homepage edits do NOT propagate. Layer index = DOM order. */
.scv2-hero-stack { position: relative; width: 100%; }
.scv2-hero-stack img { transition: all .3s ease-in-out; }
.scv2-hsx { position: absolute; height: auto; }
.scv2-hsx-l1 { left: 0; top: 0; width: 100%; }

/* calendar <- #brxe-ykvqls (Component-470 set) */
.scv2-theme-calendar .scv2-hsx-l2 { width: 37%; bottom: -20px; right: -20px; }
.scv2-theme-calendar .scv2-hsx-l3 { width: 45%; right: 0; left: 10px; bottom: 10px; }
.scv2-theme-calendar .scv2-hsx-l4 { width: 28%; right: 17%; bottom: 35%; }
.scv2-theme-calendar .scv2-hsx-l5 { width: 25%; right: 36%; bottom: 50%; }
.scv2-theme-calendar .scv2-hsx-l6 { width: 20%; right: 39%; top: 10px; }
.scv2-theme-calendar .scv2-hsx-l7 { width: 27%; right: -30px; top: 37%; }
.scv2-theme-calendar .scv2-hsx-l8 { width: 14%; right: 0; top: 44%; }
.scv2-theme-calendar .scv2-hero-stack:hover .scv2-hsx-l2 { width: 32%; bottom: 20px; right: 20px; }
.scv2-theme-calendar .scv2-hero-stack:hover .scv2-hsx-l3 { width: 42%; right: 0; left: 20px; }
.scv2-theme-calendar .scv2-hero-stack:hover .scv2-hsx-l4 { width: 25%; bottom: 36%; right: 20%; }
.scv2-theme-calendar .scv2-hero-stack:hover .scv2-hsx-l5 { width: 24%; bottom: 50%; right: 37%; transform: rotate(-2deg); }
.scv2-theme-calendar .scv2-hero-stack:hover .scv2-hsx-l6 { top: 25px; }
.scv2-theme-calendar .scv2-hero-stack:hover .scv2-hsx-l7 { width: 22%; right: 20px; top: 39%; }
.scv2-theme-calendar .scv2-hero-stack:hover .scv2-hsx-l8 { width: 11%; right: 20px; top: 45%; }

/* publish <- #brxe-dbyifj (Distribution set) */
.scv2-theme-publish .scv2-hsx-l2 { width: 20%; right: 12%; top: 4%; }
.scv2-theme-publish .scv2-hsx-l3 { width: 23%; right: 26%; top: 29%; }
.scv2-theme-publish .scv2-hsx-l4 { width: 35%; top: 39%; left: 22%; }
.scv2-theme-publish .scv2-hsx-l5 { width: 37%; bottom: 3%; right: -7%; }
.scv2-theme-publish .scv2-hsx-l6 { width: 45%; bottom: 0; left: -5%; }
.scv2-theme-publish .scv2-hero-stack:hover .scv2-hsx-l2 { top: 6%; }
.scv2-theme-publish .scv2-hero-stack:hover .scv2-hsx-l3 { right: 28%; top: 26%; transform: rotate(-4deg); }
.scv2-theme-publish .scv2-hero-stack:hover .scv2-hsx-l4 { top: 37%; left: 24%; transform: rotate(11deg); }
.scv2-theme-publish .scv2-hero-stack:hover .scv2-hsx-l5 { width: 30%; bottom: 10%; right: 3%; }
.scv2-theme-publish .scv2-hero-stack:hover .scv2-hsx-l6 { left: 5%; }

/* analytics <- #brxe-gaxujk (Validate set; l4=Validate-05, l5=Validate-04) */
.scv2-theme-analytics .scv2-hsx-l2 { width: 20%; right: 32%; top: 7%; }
.scv2-theme-analytics .scv2-hsx-l3 { width: 87%; top: 46%; right: -4%; }
.scv2-theme-analytics .scv2-hsx-l4 { width: 2%; right: 22%; bottom: 13%; }
.scv2-theme-analytics .scv2-hsx-l5 { width: 28%; bottom: 5%; right: 8%; }
.scv2-theme-analytics .scv2-hsx-l6 { width: 35%; bottom: 0; left: 25%; }
.scv2-theme-analytics .scv2-hero-stack:hover .scv2-hsx-l2 { top: 9%; }
.scv2-theme-analytics .scv2-hero-stack:hover .scv2-hsx-l3 { width: 78%; bottom: 50%; right: 5%; }
.scv2-theme-analytics .scv2-hero-stack:hover .scv2-hsx-l5 { bottom: 10%; }

/* engage <- #brxe-pnccsp (Unify set) */
.scv2-theme-engage .scv2-hsx-l2 { width: 20%; right: 24%; top: 4%; }
.scv2-theme-engage .scv2-hsx-l3 { width: 48%; right: -7%; top: 18%; }
.scv2-theme-engage .scv2-hsx-l4 { width: 52%; right: 4%; bottom: -4%; }
.scv2-theme-engage .scv2-hero-stack:hover .scv2-hsx-l2 { top: 7%; }
.scv2-theme-engage .scv2-hero-stack:hover .scv2-hsx-l3 { width: 41%; right: 1%; top: 17%; }
.scv2-theme-engage .scv2-hero-stack:hover .scv2-hsx-l4 { width: 45%; right: 10%; bottom: 9%; }

/* listening <- #brxe-fgkpva (reputation set) */
.scv2-theme-listening .scv2-hsx-l2 { width: 20%; right: 38%; top: 1%; }
.scv2-theme-listening .scv2-hsx-l3 { width: 47%; top: 15%; right: -7%; }
.scv2-theme-listening .scv2-hsx-l4 { width: 38%; top: 58%; right: -7%; }
.scv2-theme-listening .scv2-hsx-l5 { width: 45%; right: -8%; bottom: -2%; }
.scv2-theme-listening .scv2-hero-stack:hover .scv2-hsx-l2 { top: 4%; }
.scv2-theme-listening .scv2-hero-stack:hover .scv2-hsx-l3 { width: 37%; top: 15%; right: 3%; }
.scv2-theme-listening .scv2-hero-stack:hover .scv2-hsx-l4 { width: 32%; top: 57%; right: 3%; }
.scv2-theme-listening .scv2-hero-stack:hover .scv2-hsx-l5 { width: 45%; right: 3%; bottom: 3%; }
@media (prefers-reduced-motion: reduce) {
  .scv2-hero-stack img { transition: none; }
}

/* Capability strip */
.scv2-strip { padding: 56px 0 40px; margin-top: 0; background: linear-gradient(180deg, #fcf6ea, var(--scv2-cream)); }
.scv2-strip-heading { text-align: center; margin-bottom: 32px; }
/* Design geometry: 280px columns, 99px gutters (Figma items x=252/631/1009/1388) */
.scv2-strip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px clamp(28px, 5vw, 99px); }
.scv2-strip-item { position: relative; text-align: left; padding: 8px 4px; }
.scv2 .scv2-strip-item, .scv2 .scv2-strip-item * { text-align: left; }
.scv2 .scv2-strip-item .scv2-strip-icon { margin-left: 0; margin-right: auto; }
.scv2-strip-icon { display: grid; place-items: center; width: 68px; height: 68px; background: #fff; border: 1px solid var(--scv2-ink); border-radius: 12px; box-shadow: 4px 4px 0 var(--scv2-ink); margin-bottom: 20px; }
.scv2-strip-icon img { width: 40px; height: 40px; object-fit: contain; }
/* Strip icons: DEFAULT = boxed white tile (works for legacy line icons on
   migrated pages). Figma full-tile exports (wp-strip-* filenames, frame +
   shadow baked in) get --tile via PHP and drop the CSS box so they don't
   double-frame. Both pinned LEFT with the text (design). */
.scv2-strip .scv2-strip-icon--tile { display: block; width: auto; height: auto; background: none; border: none; box-shadow: none; }
.scv2-strip .scv2-strip-icon--tile img { width: 68px; height: 68px; }
.scv2-strip-title { font-size: 22px; font-weight: 700; margin: 0 0 12px; font-family: var(--scv2-font-display); }
.scv2-strip-desc { font-size: 16px; line-height: 1.5; color: var(--scv2-strip-muted); margin: 0; }
.scv2-cover-link { position: absolute; inset: 0; z-index: 1; }

/* Feature cards */
.scv2-cards { padding: 48px 0 24px; }
/* Design's section headings run at H1 scale (~56px, node height 87). */
.scv2-cards .scv2-h2, .scv2-integrations > .scv2-container > .scv2-h2, .scv2-mgmt .scv2-h2 { font-size: clamp(34px, 3.4vw, 56px); }
.scv2-cards .scv2-h2 { margin-bottom: 44px; }
.scv2-card { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 40px; align-items: center; border-radius: var(--scv2-radius); border: 1.5px solid var(--scv2-ink); box-shadow: 4px 4px 0 var(--scv2-ink); padding: 40px 56px; margin-bottom: 28px; /* design stack rhythm (rows 677.8 apart, 650 tall) */ }
.scv2-grad-0 { background: linear-gradient(180deg, #ffdda5 0%, #fcfaf4 87%); }
.scv2-grad-1 { background: linear-gradient(180deg, #e7e2f6 0%, #fcfaf4 87%); }
.scv2-grad-2 { background: linear-gradient(180deg, #cfdcf3 0%, #fcfaf4 87%); }
.scv2-grad-3 { background: linear-gradient(180deg, #f7f1cf 0%, #fcfaf4 87%); }
.scv2-card-desc { color: var(--scv2-muted); margin-bottom: 14px; }
/* Legacy pages carry bullet lists inside the description HTML — style them
   identically to the design's checklists (fallback contract). */
.scv2-card-desc ul { list-style: none; padding: 0; margin: 14px 0 4px; }
.scv2-card-desc ul > li { position: relative; padding-left: 40px; margin-bottom: 16px; font-size: 16px; color: var(--scv2-ink); }
.scv2-card-desc ul > li::before { content: ""; position: absolute; left: 0; top: 0; width: 26px; height: 26px; border-radius: 6px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23464646' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='m3.5 8.5 3 3 6-6'/%3E%3C/svg%3E") center/14px no-repeat; border: 1.5px solid var(--scv2-ink); box-shadow: 2px 2px 0 var(--scv2-ink); }
/* Fixed image box per page so every card is the same height (object-fit:
   contain — never crop UI screenshots). The box ratio matches each page's
   own imagery: calendar/default = design exports (688x598); the migrated
   pages' legacy screenshots are wider (~1.32-1.45), so their box matches
   the tallest image per page — kills the letterbox dead bands that made
   the images read small (Sameer 2026-07-24). */
.scv2-card-media img { width: 100%; aspect-ratio: 688 / 598; height: auto; object-fit: contain; border-radius: 8px; }
.scv2-theme-publish   .scv2-card-media img { aspect-ratio: 688 / 506; }
.scv2-theme-calendar  .scv2-card-media img { aspect-ratio: 688 / 520; }
.scv2-theme-analytics .scv2-card-media img { aspect-ratio: 688 / 503; }
.scv2-theme-engage    .scv2-card-media img { aspect-ratio: 688 / 516; }
.scv2-theme-listening .scv2-card-media img { aspect-ratio: 688 / 522; }
/* And give the image the bigger share of the card on those pages — flatter
   imagery needs the width to carry the same visual weight as the design
   cards (calendar keeps the design's 5fr/6fr split). */
.scv2-theme-publish .scv2-card, .scv2-theme-analytics .scv2-card,
.scv2-theme-engage .scv2-card, .scv2-theme-listening .scv2-card,
.scv2-theme-calendar .scv2-card { grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); }
.scv2-checklist { list-style: none; padding: 0; margin: 0 0 16px; }
.scv2-checklist > li { position: relative; padding-left: 40px; margin-bottom: 16px; font-size: 16px; }
.scv2-checklist > li::before { content: ""; position: absolute; left: 0; top: 0; width: 26px; height: 26px; border-radius: 6px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23464646' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='m3.5 8.5 3 3 6-6'/%3E%3C/svg%3E") center/14px no-repeat; border: 1.5px solid var(--scv2-ink); box-shadow: 2px 2px 0 var(--scv2-ink); }

/* Nested lists inside checklist items keep normal bullets (codex r3 concern,
   reconciled with 11 live wrapped-UL fields found by gemini's data check). */
.scv2-card-desc li ul { list-style: disc; padding-left: 20px; margin: 8px 0 0; }
.scv2-card-desc li ul > li { padding-left: 0; margin-bottom: 6px; font-size: 15px; }
.scv2-card-desc li ul > li::before { content: none; }

/* Management features (2nd card grid) — not in the Figma design; kept as
   product substance, styled into the v2 neo language. 3 columns = clean 3x2
   for the contract's 6 rows (no orphan), collapsing 2 -> 1 on smaller. */
.scv2-mgmt { padding: 40px 0 8px; }
.scv2-mgmt .scv2-h2 { margin-bottom: 32px; }
.scv2-mgmt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.scv2-mgmt-item { position: relative; background: #fff; border: 1px solid var(--scv2-ink); border-radius: 18px; padding: 28px; box-shadow: 4px 4px 0 var(--scv2-ink); transition: transform .15s ease, box-shadow .15s ease; }
.scv2-mgmt-item:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--scv2-ink); }
/* Legacy pages mix gray/colored SVG icons — force ALL mgmt icons to brand
   orange (#ff6900): flatten to black, then the solved filter chain. */
.scv2-mgmt-item .scv2-strip-icon img { filter: brightness(0) saturate(100%) invert(46%) sepia(99%) saturate(1907%) hue-rotate(1deg) brightness(103%) contrast(102%); }
@media (max-width: 1100px) { .scv2-mgmt-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .scv2-mgmt-grid { grid-template-columns: 1fr; } }

/* Platform strip */
.scv2-platforms { padding: 32px 0; }
.scv2-platforms-inner { background: #c8d7f7; border-radius: var(--scv2-radius); padding: 32px 40px; display: flex; gap: 32px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.scv2-platform-icons { display: flex; flex-direction: column; gap: 10px; max-width: 830px; }
/* Pixel-measured from the design render (node 10380:111758 @1:1): 67px
   visible circles = 64px disc + 3px offset rim, 22px gaps (89px pitch),
   rows 10px apart, row 2 indented 44px. */
.scv2-picon-row { display: flex; gap: 25px; flex-wrap: wrap; }
.scv2-picon-row + .scv2-picon-row { margin-left: 44px; }
.scv2-picon { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; box-shadow: 3px 3px 0 #333; transition: transform .15s ease, box-shadow .15s ease; }
/* Homepage parity: icons grow on hover. */
.scv2-picon:hover { transform: translateY(-2px) scale(1.15); }
.scv2-picon img { width: 64px; height: 64px; object-fit: contain; }

/* Testimonials — tilted deck as a Bricks/Splide loop slider (homepage
   mechanism; infinite drag). Slides get width from perPage; the vertical
   padding gives tilted corners room inside Splide's overflow clip. */
.scv2-testimonials { padding: 48px 0; }
/* Tilted corners rotate past the track's overflow clip — vertical padding
   ON THE TRACK creates clip-safe room (overflow clips at the padding edge). */
.scv2 .scv2-testi-splide .splide__track { padding: 36px 0; }
/* FlyingPress lazy-render puts content-visibility:auto on .splide__list
   (inline style) — combined with Splide's large translateX, Chrome keeps the
   list render-skipped forever and the deck paints blank. Stylesheet
   !important beats non-important inline styles. */
.scv2 .splide__list { content-visibility: visible !important; contain-intrinsic-size: none !important; }
.scv2-testi-splide .splide__slide { display: flex; justify-content: center; align-items: stretch; }
.scv2-quote-card { position: relative; width: 100%; max-width: 380px; min-height: 440px; margin: 0; border-radius: 20px; padding: 32px 28px; border: 1.5px solid var(--scv2-ink); box-shadow: 4px 4px 0 var(--scv2-ink); display: flex; flex-direction: column; }
/* 5th card: closing CTA (design: "Big-league tools. Small-league price.") */
.scv2-cta-card { justify-content: center; gap: 22px; }
.scv2-cta-card-logo { width: 84px; height: 84px; border-radius: 50%; background: #fff; border: 1px solid var(--scv2-ink); display: grid; place-items: center; }
.scv2-cta-card-logo img { width: 46px; height: 46px; object-fit: contain; }
.scv2-cta-card-heading { font-family: var(--scv2-font-display); font-weight: 800; font-size: 32px; line-height: 1.25; color: var(--scv2-ink); margin: 0; }
.scv2-cta-card .scv2-btn { align-self: flex-start; }
.scv2-accent-0 { background: #fdeee0; --scv2-accent: #ff6900; }
.scv2-accent-1 { background: #dbe7fb; --scv2-accent: #3568c4; }
.scv2-accent-2 { background: #e7e2f6; --scv2-accent: #6a4fc4; }
.scv2-accent-3 { background: #fdf3c2; --scv2-accent: #d9a400; }
.scv2-tilt-0 { transform: rotate(-5.5deg); }
.scv2-tilt-1 { transform: rotate(3deg); }
.scv2-tilt-2 { transform: rotate(-2.5deg); }
.scv2-tilt-3 { transform: rotate(5deg); }
.scv2-quote-mark { position: absolute; top: 6px; right: 24px; font-family: var(--scv2-font-display); font-weight: 800; font-size: 140px; line-height: .9; color: var(--scv2-accent); opacity: .28; pointer-events: none; }
.scv2-avatar { width: 112px; height: 112px; border-radius: 50%; background: var(--scv2-accent); display: grid; place-items: center; margin-bottom: 22px; }
.scv2-avatar img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.scv2-avatar-initials { font-family: var(--scv2-font-display); font-weight: 700; font-size: 34px; color: #fff; }
.scv2-quote-card blockquote { margin: 0 0 auto; font-family: var(--scv2-font-body); font-size: 20px; line-height: 1.5; font-weight: 600; color: #333; padding: 0 12px 0 0; border: none; background: none; }
.scv2-quote-card figcaption { margin-top: 22px; }
.scv2-quote-card figcaption strong { display: block; font-size: 18px; color: var(--scv2-ink); }
.scv2-quote-card figcaption span { font-size: 14px; color: var(--scv2-muted); }

/* Integrations */
.scv2-integrations { padding: 40px 0 32px; }
.scv2-integrations .scv2-h2 { margin-bottom: 28px; }
.scv2-integrations-inner { background: radial-gradient(120% 140% at 50% 85%, #fdf7e5 0%, #e6def5 55%, #d6d9f2 100%); border-radius: var(--scv2-radius); padding: 48px 40px; text-align: center; }
.scv2-btn-pill { height: 40px; padding: 6px 18px; background: #fff; font-size: 14px; box-shadow: 2px 2px 0 var(--scv2-ink); border-radius: 999px; margin-bottom: 16px; }
/* Auto-scroll rail (Bricks/Splide, homepage mechanism) with edge fades. */
.scv2-integration-icons { margin: 22px 0 10px; padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 64px, #000 calc(100% - 64px), transparent 100%); }
.scv2-int-splide .splide__slide { display: flex; justify-content: center; }
.scv2-int-icon { flex: 0 0 auto; display: grid; place-items: center; width: 120px; height: 120px; background: #fff; border: 1px solid #e9e2d8; border-radius: 24px; box-shadow: 5px 5px 0 rgba(70,70,70,.18); }
.scv2-int-icon img { width: 60px; height: 60px; object-fit: contain; }

/* FAQ */
.scv2-faq { padding: 32px 0; }
.scv2-faq-card { background: #fff; border-radius: var(--scv2-radius); padding: 56px; border: 1px solid #eee7dc; box-shadow: 0 2px 12px rgba(28,26,23,.05); }
/* Bricks-native accordion (bricks.min.js animates it, homepage mechanism).
   Bricks toggles .brx-open on the item block; content-wrapper is display:none
   by Bricks base CSS when closed. */
.scv2-faq-acc { width: 100%; }
/* Bricks' own base rule (accordion starts closed) — its frontend CSS isn't
   guaranteed on this template, and bricks.min.js decides open-vs-close by
   computed display, so without this every first click runs the CLOSE branch. */
.scv2-faq-acc .accordion-content-wrapper { display: none; }
.scv2-faq-acc > .brxe-block { border-bottom: 1px solid #eee7dc; }
.scv2-faq-acc .accordion-title-wrapper { cursor: pointer; position: relative; padding: 28px 36px 28px 4px; }
.scv2-faq-acc .accordion-title-wrapper .brxe-heading { font-family: var(--scv2-font-body); font-weight: 400; font-size: 20px; line-height: 1.3; color: rgba(51,51,51,.8); margin: 0; }
.scv2-chevron { position: absolute; right: 8px; top: 50%; width: 16px; height: 16px; transform: translateY(-50%) rotate(0deg); transition: transform .2s ease; background: var(--scv2-ink); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' d='m3 6 5 5 5-5'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' d='m3 6 5 5 5-5'/%3E%3C/svg%3E") center/contain no-repeat; }
.scv2-faq-acc .brx-open .scv2-chevron { transform: translateY(-50%) rotate(180deg); }
.scv2-faq-body { padding: 0 4px 20px; color: var(--scv2-muted); }
/* WCAG AA: #ff6900 on white is ~3.2:1 — use darker orange + underline for body links */
.scv2-faq-body a { color: #c14e00; text-decoration: underline; }

/* Final CTA */
.scv2-final-cta { background: var(--scv2-cream); margin-top: 24px; padding: 24px 0 64px; }
.scv2-final-cta .scv2-container { background: #fdefe0; border-radius: var(--scv2-radius); padding: 48px 40px; max-width: 1416px; }
.scv2-final-cta .scv2-cta-row { margin-top: 22px; }
/* Design: CTA headline is extra-bold (Sameer 2026-07-23 — "fonts don't have weight") */
.scv2-final-cta .scv2-h2 { font-weight: 800; font-size: clamp(30px, 2.8vw, 40px); }

/* Responsive */
@media (min-width: 1501px) {
  /* Design: the deck runs edge-to-edge — cards clip at the VIEWPORT, not at
     an arbitrary line inside it (container+104px looked broken). width must
     be forced: Bricks sets width:100% on slider roots, so negative margins
     alone just SHIFT the deck left instead of widening it. */
  /* .scv2 prefix: out-specifies Bricks' .brxe-slider-nested{width:100%};
     max-width:none: a max-width:100% rule was silently capping width at the
     container (margin applied, width didn't — that asymmetry = max-width). */
  .scv2 .scv2-testi-splide { margin-left: calc(50% - 50vw); width: 100vw; max-width: none; }
}

@media (max-width: 900px) {
  .scv2-quote-card { min-height: 0; }
  .scv2-tilt-0, .scv2-tilt-2 { transform: rotate(-1.5deg); }
  .scv2-tilt-1, .scv2-tilt-3 { transform: rotate(1.5deg); }
  .scv2-hero { padding: 44px 0 36px; }
  /* The per-theme desktop card ratio (.scv2-theme-* .scv2-card, specificity
     0,2,0) beats this unthemed collapse at every width — media queries add
     no specificity. All five live pages carry theme classes, so cards never
     stacked on mobile (text squeezed to ~80px). List the themed selectors
     explicitly. */
  .scv2-hero-grid, .scv2-card,
  .scv2-theme-publish .scv2-card, .scv2-theme-analytics .scv2-card,
  .scv2-theme-engage .scv2-card, .scv2-theme-listening .scv2-card,
  .scv2-theme-calendar .scv2-card { grid-template-columns: 1fr; gap: 26px; }
  /* Mobile design frame: TEXT FIRST — hero copy above artwork, card
     title/body/checklist above the screenshot (tri-audit, all legs). */
  .scv2-hero-media { min-height: 0; justify-content: center; }
  .scv2-hero-frame { margin-right: 0; }
  .scv2-hero-copy { text-align: center; }
  .scv2-hero-desc { margin-inline: auto; }
  .scv2-cta-row { flex-direction: column; align-items: stretch; }
  .scv2-cta-row .scv2-btn { justify-content: center; }
  .scv2-card { padding: 26px; }
  .scv2-card .scv2-h3, .scv2-card-desc { text-align: center; }
  .scv2-platforms-inner { justify-content: center; text-align: center; }
  .scv2-faq-card { padding: 26px; }
}

@media (max-width: 768px) {
  .scv2-picon-row + .scv2-picon-row { margin-left: 0; }
  .scv2-picon-row { justify-content: center; }
  /* Mobile design: bands run FULL-BLEED with square edges. */
  .scv2-platforms-inner, .scv2-integrations-inner, .scv2-final-cta .scv2-container { margin-inline: -24px; border-radius: 0; }
}

@media (max-width: 700px) {
  /* Mobile design: capability strip = single centered column. */
  .scv2-strip-grid { grid-template-columns: 1fr; }
  .scv2 .scv2-strip-item, .scv2 .scv2-strip-item * { text-align: center; }
  .scv2 .scv2-strip-item .scv2-strip-icon { margin-left: auto; margin-right: auto; }
  .scv2-strip .scv2-strip-icon img { margin-inline: auto; }
}

/* MUST STAY LAST: overrides all motion rules above (incl. mobile).
   Splide autoplay/speed under reduced motion is handled by Splide itself
   (built-in reducedMotion defaults pause autoplay). */
/* ============================================================================
   CARD DECK (stage preview, 2026-07-24, tri-planned): cards pin below the
   sticky header and each successive card covers the previous — pure sticky,
   zero JS. Desktop + tall viewports only; mobile/short/reduced-motion get
   the static layout. The .scv2 wrapper's base overflow-x:hidden would make
   it the sticky containing scrollport — overridden to clip ONLY here
   (identical clipping, no scroll container).
   ========================================================================= */
@media (min-width: 901px) and (min-height: 820px) and (prefers-reduced-motion: no-preference) {
  .scv2 { overflow-x: clip; }
  .scv2-cards .scv2-card {
    position: sticky;
    top: 96px;
  }
  /* Runway so the last card sits pinned briefly instead of unpinning
     abruptly. NOTE: sticky constrains to the containing block's CONTENT
     box — padding does NOT extend the stick range (verified empirically).
     A generated block child does. */
  .scv2-cards > .scv2-container::after {
    content: "";
    display: block;
    height: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scv2 .scv2-quote-card { transform: none !important; }
}
