/* ============================================================================
   PICK VIZ SHOWCASE — SITE LAYOUT
   Page-level layout (nav, hero, footer, grids). Depends on pickviz-kit.css
   for all tokens, buttons, badges, pricing, and WooCommerce harmonization.
   ============================================================================ */

:root {
  --pv-font-body: "Archivo", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pv-font-head: "Oswald", "Inter", -apple-system, "Segoe UI", sans-serif;
  --pv-font-display: "Bebas Neue", "Oswald", sans-serif;
  --pv-font-mono: "JetBrains Mono", monospace;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--pv-bg); }
body {
  font-family: var(--pv-font-body);
  background: transparent; color: var(--pv-text);
  line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  transition: color .3s var(--pv-ease);
}

/* ── AMBIENT BACKGROUND FX (injected once by site.js) ─────────────────────
   Purely decorative (fixed, z-index -1, aria-hidden) — invisible to crawlers
   and has zero effect on SEO. Orbs drift on multi-point paths; a handful of
   tiny particles float upward for subtle sparkle. Same treatment both themes,
   just dimmed for light mode so it stays readable.                       */
.bg-fx { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }

.bg-fx__orb { position: absolute; border-radius: 50%; filter: blur(100px); will-change: transform; }
.bg-fx__orb--1 { width: 620px; height: 620px; left: -160px; top: -140px;
  background: radial-gradient(circle, rgba(232,85,0,.55), transparent 70%); animation: orb1 26s ease-in-out infinite; }
.bg-fx__orb--2 { width: 480px; height: 480px; right: -140px; top: 12%;
  background: radial-gradient(circle, rgba(255,140,60,.42), transparent 70%); animation: orb2 32s ease-in-out infinite; }
.bg-fx__orb--3 { width: 680px; height: 680px; left: 22%; bottom: -300px;
  background: radial-gradient(circle, rgba(204,64,0,.38), transparent 70%); animation: orb3 36s ease-in-out infinite; }
.bg-fx__orb--4 { width: 380px; height: 380px; right: 8%; bottom: 5%;
  background: radial-gradient(circle, rgba(255,180,90,.28), transparent 70%); animation: orb4 30s ease-in-out infinite; }

.bg-fx__grid { position: absolute; inset: 0;
  background-image: linear-gradient(var(--pv-grid) 1px, transparent 1px), linear-gradient(90deg, var(--pv-grid) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 85% 55% at 50% 0%, #000 15%, transparent 72%);
  mask-image: radial-gradient(ellipse 85% 55% at 50% 0%, #000 15%, transparent 72%); }
.bg-fx__grain { position: absolute; inset: 0; opacity: .03; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ── Subtle floating particles ────────────────────────────────────────── */
.bg-fx__particle {
  position: absolute; bottom: -20px; width: var(--p-size, 4px); height: var(--p-size, 4px);
  border-radius: 50%; background: var(--pv-orange); opacity: 0;
  animation: particle-rise var(--p-dur, 18s) linear infinite;
  animation-delay: var(--p-delay, 0s);
}

[data-theme="light"] .bg-fx__orb { opacity: .45; }
[data-theme="light"] .bg-fx__particle { opacity: 0; }
[data-theme="light"] .bg-fx__grain { opacity: .015; }

@keyframes orb1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(70px,50px) scale(1.1); }
  66%      { transform: translate(30px,90px) scale(0.95); }
}
@keyframes orb2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  40%      { transform: translate(-80px,60px) scale(1.12); }
  70%      { transform: translate(-30px,-40px) scale(0.92); }
}
@keyframes orb3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  30%      { transform: translate(50px,-70px) scale(1.08); }
  65%      { transform: translate(-60px,-30px) scale(1.18); }
}
@keyframes orb4 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-40px,-60px) scale(1.15); }
}
@keyframes particle-rise {
  0%   { transform: translateY(0) translateX(0);      opacity: 0; }
  10%  { opacity: .5; }
  90%  { opacity: .35; }
  100% { transform: translateY(-110vh) translateX(var(--p-drift, 30px)); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .bg-fx__orb, .bg-fx__particle { animation: none !important; } }

/* ── BILLING TOGGLE (pricing) ──────────────────────────────────────────── */
.billing-toggle { display: inline-flex; gap: .3rem; padding: .3rem; border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius-pill); background: var(--pv-bg-card); margin: 0 auto 1.75rem; }
.billing-toggle button { border: 0; background: transparent; color: var(--pv-text-muted); font-weight: 700;
  font-family: var(--pv-font-head); font-size: .9rem; padding: .55em 1.25em; border-radius: var(--pv-radius-pill);
  cursor: pointer; display: inline-flex; align-items: center; gap: .5em; transition: color .2s; }
.billing-toggle button.is-active { background: var(--pv-gradient); color: #fff; box-shadow: var(--pv-shadow-orange); }
.billing-toggle .save { font-size: .68rem; font-weight: 800; background: rgba(255,255,255,.22); color: #fff;
  padding: .12em .5em; border-radius: var(--pv-radius-pill); }
.billing-toggle button:not(.is-active) .save { background: var(--pv-orange-soft); color: var(--pv-orange); }
.bill { display: inline; }
.bill--annual { display: none; }
[data-bill="annual"] .bill--monthly { display: none; }
[data-bill="annual"] .bill--annual { display: inline; }
/* .pv-btn--block sets display:flex — the generic .bill rules above would
   otherwise force display:inline/none regardless of billing state, since
   they're loaded after pickviz-kit.css. These button-specific overrides
   restore the flex/none toggle so the monthly/annual CTA swaps correctly
   without breaking the full-width button layout. */
.pv-btn.bill--monthly { display: flex; }
.pv-btn.bill--annual { display: none; }
[data-bill="annual"] .pv-btn.bill--monthly { display: none; }
[data-bill="annual"] .pv-btn.bill--annual { display: flex; }
.value-stack { font-size: .82rem; color: var(--pv-text-muted); margin-top: .5rem;
  border-top: 1px dashed var(--pv-border); padding-top: .65rem; line-height: 1.5; }
.value-stack b { color: var(--pv-win); }

/* ── MODERN CARD ACCENTS ───────────────────────────────────────────────── */
.pv-card { position: relative; }
.feat, .perk { overflow: hidden; }
.feat::after, .perk::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--pv-gradient); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--pv-ease); }
.feat:hover::after, .perk:hover::after { transform: scaleX(1); }
h3, h4, .nav__logo, .pv-btn, .pv-plan__price, .prose h3 {
  font-family: var(--pv-font-head); letter-spacing: -.02em;
}

/* ── FORGE SKIN — boxy cards + condensed display type ─────────────────────
   Display headlines go huge condensed uppercase (Bebas Neue); card titles,
   buttons and labels go wide-tracked uppercase (Oswald); eyebrows, badges
   and stat numbers go mono (JetBrains Mono) for a technical/data feel;
   cards trade soft rounded corners for sharp edges with notch-bracket
   accents that light up on hover. */
h1, h2, .pv-h1, .pv-h2, .stat__num, .roi__big, .split h2, .cta-band h2, .prose h2, .sec-head h2 {
  font-family: var(--pv-font-display); letter-spacing: .01em; text-transform: uppercase; font-weight: 400; line-height: .95;
}
h3, .feature-title, .pv-btn, .stat__lbl, .quote__who b { font-family: var(--pv-font-head); }
.feature-title, h3 { text-transform: uppercase; letter-spacing: .02em; }
.pv-btn { text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.pv-eyebrow, .footer h4, .stat__lbl, .quote__who small, .hero__trust, .proofbar__inner {
  font-family: var(--pv-font-mono); letter-spacing: .15em;
}
.stat__num { font-family: var(--pv-font-display); letter-spacing: .01em; }

.pv-card, .pv-btn, .pv-plan, .table-wrap { border-radius: 0 !important; }
.pv-card { position: relative; }
.pv-card::before, .pv-card::after {
  content: ""; position: absolute; width: 12px; height: 12px;
  border: 1px solid var(--pv-orange); opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.pv-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.pv-card::after  { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.pv-card:hover::before, .pv-card:hover::after { opacity: 1; }
.feat__ico, .tag, .pv-badge { border-radius: 0 !important; }

@keyframes forge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--pv-orange-glow), 0 0 30px rgba(232,85,0,.25); }
  50%      { box-shadow: 0 0 0 14px rgba(232,85,0,0), 0 0 30px rgba(232,85,0,.25); }
}
.pv-btn--primary { animation: forge-pulse 2.4s ease-out infinite; border-radius: 0 !important; }
.pv-btn--primary:hover { animation-play-state: paused; }
.pv-eyebrow::before { width: 32px; }

@media (max-width: 768px) {
  .pv-h2, .sec-head h2, .split h2 { font-size: calc(var(--pv-h2) * 0.9); }
}

/* ── SVG ICON SYSTEM (replaces emojis) ─────────────────────────────────── */
.ic { width: 1.25em; height: 1.25em; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: inline-block; vertical-align: middle; }
.ic--sm { width: 1em; height: 1em; }
svg.pv-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ── LOGO (image, theme + breakpoint swapped — no text) ─────────────────
   Mobile / narrow: square mark (transparent bg, works on both themes)
   Tablet+ : full wordmark, swapped for dark vs light theme.
   Every rule below is a compound selector (breakpoint AND theme combined)
   so the two conditions never race each other on specificity/order.     */
.nav__logo { display: flex; align-items: center; gap: .6rem; }
.nav__logo img { width: auto; display: block; }

/* Mobile default: square mark only */
.nav__logo .logo-square           { display: block; height: 40px; width: 40px; }
.nav__logo .logo-full.logo-ondark  { display: none; }
.nav__logo .logo-full.logo-onlight { display: none; }

/* Tablet+: full wordmark, theme-matched; square mark hidden */
@media (min-width: 620px) {
  .nav__logo .logo-square { display: none; }
  .nav__logo .logo-full.logo-ondark  { display: block; height: 42px; width: auto; }
  .nav__logo .logo-full.logo-onlight { display: none; }
  [data-theme="light"] .nav__logo .logo-full.logo-ondark  { display: none; }
  [data-theme="light"] .nav__logo .logo-full.logo-onlight { display: block; height: 42px; width: auto; }
}

/* Footer: always full wordmark (no square variant), theme-matched */
.footer .nav__logo .logo-square { display: none; }
.footer .nav__logo .logo-full.logo-ondark  { display: block; height: 38px; width: auto; }
.footer .nav__logo .logo-full.logo-onlight { display: none; }
[data-theme="light"] .footer .nav__logo .logo-full.logo-ondark  { display: none; }
[data-theme="light"] .footer .nav__logo .logo-full.logo-onlight { display: block; height: 38px; width: auto; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92vw); margin-inline: auto; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ── NAV — floating frosted pill, sticky, links true-centered ──────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0 0; background: transparent;
}
.nav__inner {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding-inline: 1.4rem;
  background: color-mix(in srgb, var(--pv-bg-elev) 66%, transparent);
  backdrop-filter: blur(20px) saturate(1.6); -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius-pill);
  box-shadow: 0 10px 30px -14px rgba(0,0,0,.4);
  transition: background .3s var(--pv-ease), box-shadow .3s var(--pv-ease), border-color .3s var(--pv-ease);
}
.nav.is-scrolled .nav__inner {
  background: color-mix(in srgb, var(--pv-bg-elev) 88%, transparent);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.55);
  border-color: var(--pv-border-strong);
}

/* Links sit dead-center of the pill regardless of how wide the logo or
   CTA cluster are — absolute-centered rather than flex-balanced. */
.nav__links {
  display: flex; gap: .2rem; align-items: center;
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.nav__links a.navlink {
  position: relative; padding: .5rem 1.05rem; border-radius: var(--pv-radius-pill);
  font-size: .8rem; font-weight: 700; color: var(--pv-text-muted); font-family: var(--pv-font-head);
  text-transform: uppercase; letter-spacing: .04em;
  transition: color var(--pv-dur), background var(--pv-dur), box-shadow var(--pv-dur);
}
.nav__links a.navlink:hover { color: var(--pv-text); background: var(--pv-bg-card); }
.nav__links a.navlink.is-active {
  color: #fff; background: var(--pv-gradient); box-shadow: var(--pv-shadow-orange);
}
.nav__cta { display: flex; align-items: center; gap: .7rem; }

/* "New" pill on the Theme nav item — CSS-only so it works whether the menu
   comes from a WP nav menu or the built-in fallback. */
.nav__links a.navlink[href*="/theme/"] { position: relative; overflow: visible; }
.nav__links a.navlink[href*="/theme/"]::after {
  content: "New"; position: absolute; top: -9px; right: -6px;
  background: var(--pv-gradient); color: #fff; font-size: .55rem; font-weight: 800;
  padding: .15em .55em; border-radius: var(--pv-radius-pill); letter-spacing: .03em;
  box-shadow: var(--pv-shadow-orange); pointer-events: none; text-transform: uppercase;
  font-family: var(--pv-font-mono);
}

/* Get Pro button in the nav — pill, static (no pulse), near-black on both
   color modes, with a hairline border so it still reads against a dark bg. */
.nav__cta .pv-btn--primary {
  border-radius: var(--pv-radius-pill) !important; animation: none !important;
  background: #0d0d10; color: #fff; border: 1px solid rgba(255,255,255,.14);
}
.nav__cta .pv-btn--primary:hover { background: #1a1a1f; }
[data-theme="light"] .nav__cta .pv-btn--primary { border-color: rgba(0,0,0,.14); }
.nav__burger { display: none; width: 44px; height: 44px; border: 1px solid var(--pv-border-strong);
  background: var(--pv-bg-card); border-radius: var(--pv-radius-sm); cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.nav__burger span { width: 18px; height: 2px; background: var(--pv-text); transition: .25s; border-radius: 2px; }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero { position: relative; padding-top: clamp(3rem, 7vw, 6rem); padding-bottom: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; position: relative; z-index: 1; }
.hero__cta-row { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.75rem; }
.hero__trust { margin-top: 1.4rem; font-size: .85rem; color: var(--pv-text-faint); display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.hero__trust b { color: var(--pv-text-muted); font-weight: 600; }
.hero__media { position: relative; }
.device {
  border-radius: var(--pv-radius); overflow: hidden;
  border: 1px solid var(--pv-border-strong); box-shadow: var(--pv-shadow-2);
  transform: perspective(1400px) rotateY(-7deg) rotateX(2deg);
  transition: transform .5s var(--pv-ease);
}
.device:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(0); }
.device__bar { background: #111; display: flex; gap: 6px; padding: 9px 12px; }
.device__bar i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.hero__float {
  position: absolute; z-index: 2; background: var(--pv-bg-card);
  border: 1px solid var(--pv-border); border-radius: var(--pv-radius-sm);
  box-shadow: var(--pv-shadow-2); padding: .7rem 1rem; font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; gap: .5rem;
}
.hero__float--win { bottom: -14px; left: -18px; color: var(--pv-win); }
.hero__float--roi { top: -14px; right: -16px; color: var(--pv-orange); }
.hero__float .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 25%, transparent); }

/* ── SECTION HEADERS ──────────────────────────────────────────────────── */
.sec-head { max-width: 640px; margin-inline: auto; text-align: center; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sec-head .pv-eyebrow { justify-content: center; margin-bottom: .9rem; }
.sec-head p { color: var(--pv-text-muted); margin-top: .75rem; font-size: 1.05rem; }

/* ── LOGO / PROOF BAR — concise single-line strip, padded within the
   container (not edge-to-edge); scrolls horizontally rather than wrapping
   if the viewport is too narrow to fit every sport on one line. ──────── */
.proofbar { border-block: 1px solid var(--pv-border); padding-block: 1.1rem; background: var(--pv-bg-elev); }
.proofbar__inner { width: 100%; }
.proofbar__sports {
  display: flex; align-items: center; gap: .9rem;
  width: 100%; flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none;
}
.proofbar__sports::-webkit-scrollbar { display: none; }
.proofbar__label {
  font-family: var(--pv-font-mono); font-weight: 700; font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--pv-orange); white-space: nowrap; flex-shrink: 0;
}
.proofbar__pill {
  flex-shrink: 0;
  font-size: .76rem; font-weight: 600; color: var(--pv-text-muted);
  background: var(--pv-bg-card); border: 1px solid var(--pv-border);
  padding: .35em .85em; border-radius: var(--pv-radius-pill); white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.proofbar__pill:hover { color: var(--pv-text); border-color: var(--pv-border-strong); }
.proofbar__divider { width: 1px; height: 20px; background: var(--pv-border); flex-shrink: 0; }
@media (max-width: 700px) {
  .proofbar__divider { display: none; }
}

/* ── WORKS WITH — big colorful brand-icon tiles ──────────────────────── */
.techstrip { padding-block: clamp(2.5rem, 5vw, 3.5rem); border-bottom: 1px solid var(--pv-border); }
.techstrip__label {
  text-align: center; font-family: var(--pv-font-head); font-weight: 700;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--pv-text-faint); margin-bottom: 1.75rem;
}
.techgrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.techtile {
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  padding: 1.4rem 1rem; border-radius: var(--pv-radius); border: 1px solid var(--pv-border);
  background: var(--pv-bg-card); transition: transform .25s var(--pv-ease), border-color .25s, box-shadow .25s;
}
.techtile:hover { transform: translateY(-4px); border-color: var(--tile-c, var(--pv-orange)); box-shadow: 0 12px 28px -10px color-mix(in srgb, var(--tile-c, var(--pv-orange)) 45%, transparent); }
.techtile i {
  font-size: 2.4rem; color: var(--tile-c, var(--pv-orange));
  filter: drop-shadow(0 2px 8px color-mix(in srgb, var(--tile-c, var(--pv-orange)) 35%, transparent));
}
.techtile span { font-size: .82rem; font-weight: 700; color: var(--pv-text-muted); }
.techtile:hover span { color: var(--pv-text); }
@media (max-width: 700px) { .techgrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 420px) { .techgrid { grid-template-columns: repeat(2, 1fr); } }

/* ── SOCIAL DOCK (fixed vertical, left edge) ──────────────────────────── */
.social-dock {
  position: fixed; left: 18px; top: 50%; transform: translateY(-50%);
  z-index: 80; display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.social-dock a {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: var(--pv-bg-card); border: 1px solid var(--pv-border); color: var(--pv-text-muted);
  transition: color .2s, border-color .2s, transform .2s, background .2s;
}
.social-dock a:hover { color: #fff; background: var(--pv-gradient); border-color: transparent; transform: scale(1.1); }
.social-dock a .ic { width: 16px; height: 16px; }
.social-dock__line { width: 1px; height: 36px; background: var(--pv-border); margin-top: .25rem; }
@media (max-width: 1400px) { .social-dock { display: none; } }

/* ── STICKY "TRY DEMO" SIDE TAB (fixed vertical, right edge) ──────────── */
.demo-tab {
  position: fixed; right: 0; top: 62%; transform: translateY(-50%) translateX(0);
  z-index: 85; display: flex; align-items: center; gap: .5rem;
  background: var(--pv-gradient); color: #fff; text-decoration: none;
  padding: .8rem 1.1rem .8rem 1rem; border-radius: var(--pv-radius-sm) 0 0 var(--pv-radius-sm);
  font-family: var(--pv-font-head); font-weight: 700; font-size: .85rem; letter-spacing: .04em;
  box-shadow: var(--pv-shadow-orange); transition: padding-right .25s var(--pv-ease), transform .25s;
}
.demo-tab .ic { width: 17px; height: 17px; flex-shrink: 0; }
.demo-tab:hover { padding-right: 1.5rem; }
@media (max-width: 640px) {
  .demo-tab { top: auto; bottom: 90px; border-radius: var(--pv-radius-pill); padding: .75rem 1rem; }
  .demo-tab span { display: none; }
}

/* ── FEATURE / BENTO GRID ─────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.feat { padding: 1.6rem 1.5rem; }
.feat__ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  color: var(--pv-orange); background: var(--pv-orange-soft); margin-bottom: 1rem; }
.feat__ico .ic { width: 24px; height: 24px; }
.feat h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: .45rem; }
.feat p { color: var(--pv-text-muted); font-size: .95rem; }

/* ── SPLIT (alternating image/text) ───────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; padding-block: clamp(2rem,4vw,3.5rem); }
.split--rev .split__media { order: 2; }
.split__media img { border-radius: var(--pv-radius); border: 1px solid var(--pv-border); box-shadow: var(--pv-shadow-1); }
.split h2 { font-size: var(--pv-h2); font-weight: 800; letter-spacing: -.015em; line-height: 1.12; margin-bottom: .9rem; }
.split p { color: var(--pv-text-muted); margin-bottom: 1.1rem; }
.split ul { list-style: none; display: grid; gap: .55rem; margin-bottom: 1.3rem; }
.split li { display: flex; gap: .6rem; color: var(--pv-text-muted); }
.split li::before { content: "✓"; color: var(--pv-orange); font-weight: 800; }

/* ── STAT COUNTERS ────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.stat { text-align: center; padding: 1.5rem 1rem; }
.stat__num { font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 800; color: var(--pv-orange); letter-spacing: -.02em; }
.stat__lbl { color: var(--pv-text-muted); font-size: .9rem; margin-top: .25rem; }

/* ── TESTIMONIALS ─────────────────────────────────────────────────────── */
.quote { padding: 1.6rem; display: flex; flex-direction: column; gap: 1rem; }
.quote p { font-size: 1rem; color: var(--pv-text); }
.quote__who { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.quote__av { width: 40px; height: 40px; border-radius: 50%; background: var(--pv-gradient); display: grid; place-items: center; color: #fff; font-weight: 800; }
.quote__who b { display: block; font-size: .9rem; }
.quote__who small { color: var(--pv-text-faint); }

/* ── CTA BAND ─────────────────────────────────────────────────────────── */
.cta-band { background: var(--pv-gradient); border-radius: var(--pv-radius); padding: clamp(2.5rem,5vw,4rem); text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band h2 { font-size: var(--pv-h2); font-weight: 800; margin-bottom: .8rem; color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 0 auto 1.6rem; }
.cta-band .pv-btn--primary { background: #fff; background-image: none; color: var(--pv-orange); }
.cta-band .pv-btn--primary:hover { filter: none; background: #fff5f0; }
.cta-band .pv-btn--ghost { border-color: rgba(255,255,255,.6); color: #fff; }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq { max-width: 780px; margin-inline: auto; }
.faq details { border: 1px solid var(--pv-border); border-radius: var(--pv-radius-sm); margin-bottom: .7rem; background: var(--pv-bg-card); overflow: hidden; }
.faq summary { padding: 1.05rem 1.25rem; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--pv-orange); font-size: 1.4rem; font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.25rem 1.15rem; color: var(--pv-text-muted); }

/* ── FOOTER ───────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--pv-border); padding-block: clamp(2.5rem,5vw,3.5rem) 1.5rem; margin-top: clamp(3rem,6vw,5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer__grid > div:not(:first-child) { border-left: 1px solid var(--pv-border); padding-left: 2rem; }
.footer__brand p { color: var(--pv-text-muted); font-size: .9rem; margin-top: .8rem; max-width: 34ch; }
.footer h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--pv-text-faint); margin-bottom: .9rem; }
.footer ul { list-style: none; display: grid; gap: .5rem; }
.footer a { color: var(--pv-text-muted); font-size: .92rem; }
.footer a:hover { color: var(--pv-orange); }
.footer-payments { display: flex; align-items: center; gap: .9rem; margin-top: 2.2rem; padding-top: 1.5rem; border-top: 1px solid var(--pv-border); flex-wrap: wrap; }
.footer-payments__label { font-family: var(--pv-font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--pv-text-faint); margin-right: .4rem; }
/* Font Awesome brand glyphs are single-color by nature (not full logo art);
   each gets its own real brand color (via currentColor) on a white chip so
   they read clearly as "colored" on both dark and light mode, at a size
   that's actually legible instead of a faint uniform-gray row. */
.footer-payments__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 32px; background: #fff; border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,.15);
}
.footer-payments__icon i { font-size: 1.35rem; }
.footer-payments__icon--stripe i { color: #635BFF; }
.footer-payments__icon--paypal i { color: #003087; }
.footer-payments__icon--visa i { color: #1A1F71; }
.footer-payments__icon--mastercard i { color: #EB001B; }
.footer-payments__icon--amex i { color: #2E77BB; }
.footer__bottom { border-top: 1px solid var(--pv-border); margin-top: 1.5rem; padding-top: 1.3rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; color: var(--pv-text-faint); font-size: .85rem; }

/* ── BREADCRUMB ───────────────────────────────────────────────────────── */
.crumb { font-size: .85rem; color: var(--pv-text-faint); padding-top: 1.5rem; }
.crumb a:hover { color: var(--pv-orange); }

/* ── ROI CALCULATOR ───────────────────────────────────────────────────── */
.roi { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
.roi__panel { padding: 1.8rem; }
.roi__field { margin-bottom: 1.15rem; }
.roi__field label { display: flex; justify-content: space-between; font-weight: 600; font-size: .92rem; margin-bottom: .45rem; }
.roi__field label b { color: var(--pv-orange); }
.roi input[type="range"] { width: 100%; accent-color: var(--pv-orange); height: 6px; }
.roi input[type="number"] {
  width: 100%; padding: .7em .9em; border-radius: var(--pv-radius-sm);
  background: var(--pv-bg-input); border: 1px solid var(--pv-border-strong); color: var(--pv-text); font-size: 1rem;
}
.roi input:focus { outline: 0; border-color: var(--pv-orange); box-shadow: 0 0 0 3px var(--pv-orange-soft); }
.roi__out { padding: 1.8rem; text-align: center; position: sticky; top: 90px; }
.roi__big { font-size: clamp(2.5rem,6vw,3.75rem); font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.roi__big.pos { color: var(--pv-win); } .roi__big.neg { color: var(--pv-loss); }
.roi__sub { color: var(--pv-text-muted); margin-top: .4rem; }
.roi__row { display: flex; justify-content: space-between; padding: .7rem 0; border-bottom: 1px solid var(--pv-border); font-size: .95rem; }
.roi__row:last-child { border-bottom: 0; }
.roi__row b { font-weight: 700; }

/* ── COMPARISON TABLE ─────────────────────────────────────────────────── */
.cmp { width: 100%; border-collapse: collapse; }
.cmp th, .cmp td { padding: .95rem 1rem; text-align: center; border-bottom: 1px solid var(--pv-border); }
.cmp th:first-child, .cmp td:first-child { text-align: left; }
.cmp thead th { font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; color: var(--pv-text-muted); }
.cmp thead th.hi { color: var(--pv-orange); }
.cmp td.hi { background: var(--pv-orange-soft); }
.cmp .yes { color: var(--pv-win); font-weight: 800; }
.cmp .no  { color: var(--pv-text-faint); }
.cmp tbody tr:hover { background: var(--pv-bg-elev); }
.cmp-wrap { overflow-x: auto; border: 1px solid var(--pv-border); border-radius: var(--pv-radius); }
.cmp col.hicol { background: var(--pv-orange-soft); }

/* ── PROSE (pillar guide) ─────────────────────────────────────────────── */
.prose { max-width: 720px; margin-inline: auto; }
.prose h2 { font-size: var(--pv-h2); font-weight: 800; margin: 2.5rem 0 .8rem; letter-spacing: -.015em; }
.prose h3 { font-size: 1.3rem; font-weight: 700; margin: 1.8rem 0 .6rem; }
.prose p { color: var(--pv-text-muted); margin-bottom: 1.1rem; }
.prose ul, .prose ol { color: var(--pv-text-muted); margin: 0 0 1.2rem 1.3rem; display: grid; gap: .5rem; }
.prose a.pv-link { color: var(--pv-orange); border-bottom: 1px solid transparent; }
.prose a.pv-link:hover { border-bottom-color: currentColor; }
.prose .toc { padding: 1.4rem 1.6rem; margin-bottom: 2rem; }
.prose .toc ul { list-style: none; margin: .6rem 0 0; }
.prose .toc a { color: var(--pv-text-muted); } .prose .toc a:hover { color: var(--pv-orange); }
.prose h1 { font-family: var(--pv-font-display); text-transform: uppercase; font-size: var(--pv-h1); font-weight: 400; margin-bottom: .4rem; }
.prose blockquote { border-left: 3px solid var(--pv-orange); padding: .2rem 0 .2rem 1.1rem; color: var(--pv-text-muted); margin: 0 0 1.2rem; }
.prose hr { border: none; border-top: 1px solid var(--pv-border); margin: 2rem 0; }
.prose code { font-family: var(--pv-font-mono); font-size: .88em; background: var(--pv-bg-card); border: 1px solid var(--pv-border); padding: .1em .4em; }
.prose pre { font-family: var(--pv-font-mono); font-size: .85em; background: var(--pv-bg-card); border: 1px solid var(--pv-border); padding: 1rem 1.2rem; overflow-x: auto; margin-bottom: 1.2rem; }
.prose pre code { background: none; border: none; padding: 0; }
.prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.4rem; font-size: .92rem; }
.prose th, .prose td { border: 1px solid var(--pv-border); padding: .55rem .8rem; text-align: left; }
.prose th { background: var(--pv-bg-elev); font-family: var(--pv-font-head); text-transform: uppercase; font-size: .78rem; letter-spacing: .04em; }
.prose strong { color: var(--pv-text); }

/* ── DOCS PAGE — product switch, search, sidebar TOC ─────────────────── */
.docs-switch { display: flex; gap: .4rem; justify-content: center; margin-bottom: 1.6rem;
  background: var(--pv-bg-elev); border: 1px solid var(--pv-border); padding: .3rem; width: fit-content; margin-inline: auto; }
.docs-switch__btn {
  font-family: var(--pv-font-head); text-transform: uppercase; letter-spacing: .04em; font-weight: 700;
  font-size: .82rem; padding: .6em 1.4em; border: none; background: none; color: var(--pv-text-muted); cursor: pointer;
  transition: color var(--pv-dur), background var(--pv-dur);
}
.docs-switch__btn:hover { color: var(--pv-text); }
.docs-switch__btn.is-active { color: #fff; background: var(--pv-gradient); box-shadow: var(--pv-shadow-orange); }

.docs-search { position: relative; max-width: 560px; margin: 0 auto 2.5rem; display: flex; align-items: center; gap: .7rem;
  background: var(--pv-bg-card); border: 1px solid var(--pv-border); padding: .8rem 1.1rem; }
.docs-search i { color: var(--pv-text-faint); }
.docs-search input { flex: 1; background: none; border: none; outline: none; color: var(--pv-text); font-family: var(--pv-font-body); font-size: .95rem; }
.docs-search input::placeholder { color: var(--pv-text-faint); }
.docs-search__count { font-family: var(--pv-font-mono); font-size: .72rem; color: var(--pv-text-faint); white-space: nowrap; }

.docs-layout { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: start; }
.docs-toc { position: sticky; top: 100px; max-height: calc(100vh - 130px); overflow-y: auto; }
.docs-toc__label { font-family: var(--pv-font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--pv-orange); margin-bottom: .8rem; }
.docs-toc ul { list-style: none; display: grid; gap: .1rem; }
.docs-toc a { display: block; padding: .4rem .6rem; font-size: .85rem; color: var(--pv-text-muted); border-left: 2px solid transparent; transition: color .2s, border-color .2s; }
.docs-toc a:hover { color: var(--pv-text); border-color: var(--pv-border-strong); }
.docs-toc a.is-dimmed { opacity: .35; }

.docs-content { min-width: 0; }
.docs-doc { display: none; }
.docs-doc.is-active { display: block; }
.docs-noresults { text-align: center; color: var(--pv-text-muted); padding: 3rem 0; }

@media (max-width: 900px) {
  .docs-layout { grid-template-columns: 1fr; }
  .docs-toc { position: static; max-height: none; border-bottom: 1px solid var(--pv-border); padding-bottom: 1.2rem; margin-bottom: 1.5rem; }
}

/* ── UTIL ─────────────────────────────────────────────────────────────── */
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-2{margin-bottom:1rem}.gap-sm{gap:.5rem}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--pv-ease), transform .6s var(--pv-ease); }
.reveal.in { opacity: 1; transform: none; }
/* Inside the Elementor editor, widgets are injected/re-rendered via AJAX
   after our one-time scroll IntersectionObserver has already been set up —
   new/edited elements are never observed, so they'd stay invisible forever
   without ever needing to "scroll". elementor-editor-active is a class
   Elementor itself adds to the preview iframe's <body> in edit mode, so
   this reliably shows real content immediately while editing, with zero
   dependency on our JS timing. Real visitors on the live site still get
   the normal scroll-reveal effect. */
body.elementor-editor-active .reveal { opacity: 1 !important; transform: none !important; }

/* ── AUTOSCROLL SCREENSHOTS ────────────────────────────────────────────
   A tall screenshot pans vertically inside a fixed viewport so users get a
   close look at the whole UI. Auto-loops; pauses on hover for inspection. */
.shot {
  --shot-h: 320px;
  position: relative; height: var(--shot-h); overflow: hidden; cursor: zoom-in;
  border-radius: var(--pv-radius); border: 1px solid var(--pv-border-strong);
  box-shadow: var(--pv-shadow-2); background: var(--pv-bg-card);
  transition: box-shadow .25s var(--pv-ease), transform .25s var(--pv-ease);
}
.shot:hover { box-shadow: 0 16px 46px -10px rgba(0,0,0,.4), 0 0 0 1px var(--pv-orange); transform: translateY(-2px); }
.shot__chrome { position: absolute; inset: 0 0 auto 0; height: 34px; z-index: 3;
  background: color-mix(in srgb, #0d0d0d 88%, transparent); backdrop-filter: blur(6px);
  display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid rgba(255,255,255,.06); }
.shot__chrome i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.shot__view { position: absolute; inset: 34px 0 0 0; overflow: hidden; }
.shot__view img { width: 100%; height: auto; display: block; will-change: transform; }
.shot--auto .shot__view img { animation: shotpan 16s var(--pv-ease) infinite alternate; }
.shot:hover .shot__view img { animation-play-state: paused; }
.shot__hint { position: absolute; right: 10px; bottom: 10px; z-index: 4;
  display: inline-flex; align-items: center; gap: .4em; font-size: .7rem; font-weight: 700;
  color: #fff; background: color-mix(in srgb, var(--pv-orange) 90%, transparent);
  padding: .35em .7em; border-radius: var(--pv-radius-pill); box-shadow: var(--pv-shadow-orange);
  opacity: .92; pointer-events: none; }
.shot:hover .shot__hint { opacity: 1; }
.shot__hint .ic { width: 13px; height: 13px; animation: hintbob 1.4s ease-in-out infinite; }
.shot__zoom { position: absolute; left: 10px; bottom: 10px; z-index: 4; width: 30px; height: 30px;
  border-radius: 50%; background: rgba(20,20,20,.7); backdrop-filter: blur(4px);
  display: grid; place-items: center; color: #fff; opacity: 0; transform: scale(.8);
  transition: opacity .2s, transform .2s; pointer-events: none; }
.shot:hover .shot__zoom { opacity: 1; transform: scale(1); }
.shot__zoom .ic { width: 15px; height: 15px; }
@keyframes shotpan { 0%, 7% { transform: translateY(0); } 93%, 100% { transform: translateY(calc(-100% + var(--shot-h) - 34px)); } }
@keyframes hintbob { 0%,100% { transform: translateY(-1px); } 50% { transform: translateY(2px); } }
.shot--tall { --shot-h: 460px; }
@media (hover: none) { .shot__view { overflow-y: auto; -webkit-overflow-scrolling: touch; } .shot--auto .shot__view img { animation: none; } }
@media (prefers-reduced-motion: reduce) { .shot--auto .shot__view img { animation: none; } }

/* ── LIGHTBOX (click any .shot to open, zoom + pan) ─────────────────────── */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: none;
  background: rgba(6,6,8,.92); backdrop-filter: blur(6px); align-items: center; justify-content: center;
  padding: 5vh 4vw; }
.lightbox.open { display: flex; animation: lbFade .2s var(--pv-ease); }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__stage { position: relative; max-width: 1200px; width: 100%; max-height: 90vh;
  border-radius: var(--pv-radius); overflow: auto; border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.55); background: #0d0d0f; cursor: zoom-in; }
.lightbox__stage.zoomed { cursor: zoom-out; }
.lightbox__stage img { width: 100%; height: auto; display: block; transition: transform .25s var(--pv-ease); transform-origin: top center; }
.lightbox__stage.zoomed img { transform: scale(1.6); }
.lightbox__close, .lightbox__cap { position: fixed; z-index: 1001; }
.lightbox__close { top: 22px; right: 26px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); color: #fff;
  display: grid; place-items: center; cursor: pointer; transition: background .2s, transform .2s; }
.lightbox__close:hover { background: var(--pv-orange); transform: rotate(90deg); }
.lightbox__cap { left: 50%; bottom: 26px; transform: translateX(-50%); color: #cfcfd4; font-size: .85rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); padding: .5em 1.1em;
  border-radius: var(--pv-radius-pill); max-width: 90vw; text-align: center; }

/* ── WIDGET SHOWCASE (Vault theme widgets grid) ─────────────────────────── */
.wgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.wcard { padding: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }
.wcard__ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  color: var(--pv-orange); background: var(--pv-orange-soft); }
.wcard__ico .ic { width: 22px; height: 22px; }
.wcard h3 { font-size: 1rem; font-weight: 700; }
.wcard p { color: var(--pv-text-muted); font-size: .88rem; }
.wcard .tag { align-self: flex-start; }

/* ── TEMPLATE PREVIEW CARD (individual picks page template) ────────────── */
.tmpl-card { padding: 0; overflow: hidden; }
.tmpl-card__head { padding: 1.1rem 1.3rem .3rem; }
.tmpl-card__head h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; }
.tmpl-card__head p { color: var(--pv-text-muted); font-size: .87rem; }
.tmpl-card .shot { border-radius: 0; border-left: 0; border-right: 0; border-bottom: 0; margin-top: 1rem; }

/* ── DETAIL PAGE HELPERS ───────────────────────────────────────────────── */
.tabbar { display: inline-flex; gap: .3rem; padding: .3rem; border: 1px solid var(--pv-border);
  border-radius: var(--pv-radius-pill); background: var(--pv-bg-card); margin-bottom: 1.75rem; }
.tabbar button { border: 0; background: transparent; color: var(--pv-text-muted); font-weight: 700;
  font-size: .9rem; padding: .55em 1.15em; border-radius: var(--pv-radius-pill); cursor: pointer; font-family: var(--pv-font-head); }
.tabbar button.is-active { background: var(--pv-gradient); color: #fff; box-shadow: var(--pv-shadow-orange); }
.tabpane { display: none; } .tabpane.is-active { display: block; }
.checklist { list-style: none; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; color: var(--pv-text-muted); }
.checklist li .ic { color: var(--pv-orange); flex-shrink: 0; margin-top: .15rem; width: 20px; height: 20px; }
.checklist li b { color: var(--pv-text); font-weight: 700; }
.perk { padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.perk .feat__ico { flex-shrink: 0; margin: 0; }
.perk h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .3rem; }
.perk p { color: var(--pv-text-muted); font-size: .93rem; }
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill { display: inline-flex; align-items: center; gap: .4em; font-size: .82rem; font-weight: 600;
  color: var(--pv-text-muted); background: var(--pv-bg-elev); border: 1px solid var(--pv-border);
  padding: .45em .85em; border-radius: var(--pv-radius-pill); }
.pill .ic { width: 15px; height: 15px; color: var(--pv-orange); }
.section-tint { background: var(--pv-bg-elev); }
.lead-badges { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.2rem; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* .nav__inner has backdrop-filter, which (per spec, same as transform)
     makes it a containing block for any position:fixed descendant — so
     without this override, the fixed mobile dropdown below would be
     positioned/clipped relative to the ~68px nav pill instead of the
     viewport, making it appear broken/invisible. Solid background still
     looks fine at this breakpoint; frosted blur just isn't needed there. */
  .nav__inner { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .nav__links { position: fixed; inset: 92px 0 auto 0; transform: translateY(-140%);
    flex-direction: column; align-items: stretch;
    background: var(--pv-bg); border: 0; border-bottom: 1px solid var(--pv-border); border-radius: 0; padding: 1rem; gap: .25rem;
    max-height: calc(100vh - 92px); overflow-y: auto; box-shadow: var(--pv-shadow-2);
    transition: transform .3s var(--pv-ease); z-index: 99; }
  .nav__links a.navlink { padding: .85rem 1rem; border-radius: var(--pv-radius-sm); text-align: left; }
  .nav__links a.navlink.is-active { box-shadow: none; }
  .nav__links.open { transform: none; }
  .nav__burger { display: flex; }
  .hero__grid, .split, .grid-3, .grid-2, .roi, .footer__grid, .wgrid { grid-template-columns: 1fr; }
  .footer__grid > div:not(:first-child) { border-left: none; padding-left: 0; border-top: 1px solid var(--pv-border); padding-top: 1.5rem; }
  .lightbox__close { top: 14px; right: 14px; } .lightbox__cap { bottom: 14px; font-size: .78rem; }
  .split--rev .split__media { order: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero__media { margin-top: 1rem; }
  .device { transform: none; }
  .roi__out { position: static; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > div:not(:first-child) { border-left: none; padding-left: 0; }
}

/* ── BLOG — index cards + single post ───────────────────────────────────── */
.blog-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.blog-card__media { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--pv-bg-elev); }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--pv-ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.04); }
.blog-card__body { padding: 1.4rem 1.5rem 1.6rem; }
.blog-card__meta { display: flex; align-items: center; gap: .6rem; font-family: var(--pv-font-mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--pv-text-faint); margin-bottom: .6rem; }
.blog-card__cat { color: var(--pv-orange); }
.blog-card__body h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.blog-card__body h3 a { color: var(--pv-text); }
.blog-card__body h3 a:hover { color: var(--pv-orange); }
.blog-card__body p { color: var(--pv-text-muted); font-size: .9rem; margin-bottom: .9rem; }

.blog-pagination { display: flex; justify-content: center; gap: .4rem; }
.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 .8rem;
  background: var(--pv-bg-card); border: 1px solid var(--pv-border); color: var(--pv-text-muted); font-weight: 700; font-size: .85rem;
}
.blog-pagination .page-numbers.current { background: var(--pv-gradient); color: #fff; border-color: transparent; }
.blog-pagination .page-numbers:hover { color: var(--pv-text); border-color: var(--pv-border-strong); }

.blog-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.pv-pagination { display: flex; gap: .6rem; margin-top: 1.5rem; }
.pv-pagination a { color: var(--pv-orange); }

/* ── CONTACT PAGE ─────────────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; align-items: start; }
.contact-info { display: grid; gap: 1rem; }
.contact-info .pv-card h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; color: var(--pv-text-faint); margin-bottom: .7rem; }
.contact-email { display: flex; align-items: center; gap: .6rem; font-size: 1.05rem; font-weight: 700; color: var(--pv-text); }
.contact-email:hover { color: var(--pv-orange); }
.contact-email i { color: var(--pv-orange); }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}
