/* OM prototype styles — Wix-extracted tokens, OM-adapted.
   Fonts are self-hosted at /fonts/ (latin woff2 via fonts.css) — the Google
   Fonts CDN import was removed (privacy + render-blocking, plan 16). */
:root {
  --f-display: 'Wix Madefor Display', 'Wix Madefor Text', sans-serif;
  --f-text: 'Wix Madefor Text', 'Helvetica Neue', Arial, sans-serif;

  /* colors — wix.com extracted + OM */
  --ink: #000000;
  --body: #5E5E5E;
  --muted: #767676;
  --annot: #6E6E76;
  --hairline: #E5E7EB;
  /* interactive boundaries must hit 3:1 (WCAG 1.4.11) — --hairline (1.24:1)
     stays decorative-only; --line-input is the form/control boundary */
  --line-input: #8A8F98;
  --bg: #FFFFFF;
  --bg-soft: #F7F7F8;
  --blue: #166AEA;
  --blue-hover: #135DCE;
  --blue-50: #EFF5FE;

  /* type scale — exact wix.com */
  --t-hero: 87px;      /* lh 1.2, ls -0.02em, w400 */
  --t-feature: 57px;   /* lh 1.1, ls -0.02em, w400 */
  --t-section: 51.2px; /* lh 1.14, ls -0.01em, w400 */
  --t-lead: 22.2px;    /* lh 1.14, ls -0.01em, w500 */
  --t-intro: 19px;     /* lh 1.3, w400 */
  --t-body: 16px;      /* lh 1.5, w400, #5E5E5E */
  --t-small: 14px;
  --t-micro: 13.3px;

  /* spacing — 4px grid */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px;
  --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px;
  --s-section: 80px; --s-section-lg: 120px;
  --maxw: 1200px;
  /* page gutter — Wix-style breathing room: never let text sit under ~4.5vw
     of the browser edge; scales 24px (phone) → 64px (desktop) */
  --gutter: clamp(24px, 4.5vw, 64px);

  /* Wix Studio extended palette (brand-guidelines "recommended combinations")
     — accent + field colours layered over the mono-first core. Blue stays the
     action colour; these add hierarchy and variety instead of more blue. */
  --violet: #3910ED;      /* strong alt-primary (dark sections, display moments) */
  --navy: #0E106A;        /* deepest neutral-ink for dark fields */
  --teal: #4E7475;        /* muted support colour */
  --lime: #DEFF00;        /* loud accent — end-CTA bands only */
  --neon: #00FF6E;        /* rare highlight accent */
  --orange: #FF5500;      /* warm signal accent */
  --amber: #FFA800;       /* warm signal soft */
  --peach: #FFF0EA;       /* warm field — pain/problem surfaces */
  --peach-2: #FEE5DF;     /* warm field deeper */
  --lav: #E2D8FF;         /* lavender field — proof/stats surfaces */
  --lav-2: #CCB7FE;       /* lavender accent */
  --powder: #C0DCFC;      /* light-blue field */
  --slate: #9EB4CE;       /* muted blue-grey support */
  --mist: #F0F0ED;        /* warm neutral field */
  --cream: #F3F4E1;       /* green-neutral field */

  --r-card: 20px;
  --r-input: 12px;
  --r-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* images carry width/height attrs for CLS — without height:auto the attribute
   wins over aspect-ratio and every framed img renders at attribute height */
img { height: auto; }
html, body { overflow-x: clip; }
body {
  font-family: var(--f-text);
  font-size: var(--t-body);
  line-height: 1.5;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
/* Type norm (founder rule 2026-09-21): every heading element renders Wix
   Madefor Display 400; all body text renders Wix Madefor Text 400. */
h1, h2, h3, h4, h5, h6 { font-family: var(--f-display); font-weight: 400; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
/* Measure variants — text readability lives on NAMED classes, never on an
   inline style="max-width" cap. .wrap itself is the full 1200px spine and
   must never be narrowed inline (DESIGN-SYSTEM.md §6 measure doctrine). */
.wrap-txt { max-width: 840px; }    /* hero text zones — h1 + intro copy */
.wrap-prose { max-width: 900px; }  /* legal / policy prose */
.wrap-read { max-width: 800px; }   /* article body prose */
.wrap-msg { max-width: 640px; }    /* statement pages — 404, thank-you */
.page-hero { padding: 80px 0 64px; } /* standard .bg-hero-aurora hero rhythm */
.cta-full .t-intro { max-width: 560px; margin-inline: auto; }
.proto-head {
  padding: var(--s-4) var(--s-6);
  border-bottom: 1px solid var(--hairline);
  display: flex; align-items: center; gap: var(--s-6);
  font-size: 13px; position: sticky; top: 0; background: #fff; z-index: 10;
}
.proto-head img { height: 18px; width: auto; }
.proto-head nav { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.proto-head a { color: var(--body); text-decoration: none; }
.proto-head a:hover, .proto-head a.on { color: var(--blue); }
.proto-title { padding: var(--s-8) 0 var(--s-4); }
.proto-title h1 { font-family: var(--f-display); font-size: var(--t-section); font-weight: 400; letter-spacing: -0.01em; line-height: 1.14; color: var(--ink); }
.proto-title p { font-size: var(--t-intro); line-height: 1.3; color: var(--body); margin-top: var(--s-2); }
.spec { font-size: 11px; color: var(--annot); font-family: monospace; margin-top: var(--s-1); }
/* focus ring — keyboard users get a visible 2px blue outline everywhere */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
.btn:focus-visible, .acc-head:focus-visible, .nav-toggle:focus-visible { outline-offset: 3px; }
.row { display: flex; gap: var(--s-6); align-items: center; flex-wrap: wrap; padding: var(--s-4) 0; }
.blk { padding: var(--s-5) 0; border-top: 1px dashed var(--hairline); }

/* type classes */
.d-hero { font-family: var(--f-display); font-size: var(--t-hero); font-weight: 400; line-height: 1.2; letter-spacing: -0.02em; color: var(--ink); }
.d-lg { font-size: 72px; }
.d-md { font-size: 64px; }
.d-feature { font-family: var(--f-display); font-size: var(--t-feature); font-weight: 400; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }
.d-section { font-family: var(--f-display); font-size: var(--t-section); font-weight: 400; line-height: 1.14; letter-spacing: -0.01em; color: var(--ink); }
.d-lead { font-family: var(--f-display); font-size: var(--t-lead); font-weight: 400; line-height: 1.14; letter-spacing: -0.01em; color: var(--ink); }
.t-intro { font-family: var(--f-text); font-size: var(--t-intro); line-height: 1.3; color: var(--ink); }
.t-body { font-size: var(--t-body); line-height: 1.5; color: var(--body); }
.t-small { font-size: var(--t-small); line-height: 1.4; color: var(--body); }
.t-micro { font-size: var(--t-micro); line-height: 1.3; color: var(--annot); }
.inactive { color: var(--annot); }

/* buttons — exact wix.com */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-text); font-weight: 400; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; border-radius: var(--r-pill);
  transition: background .15s, color .15s, border-color .15s;
}
.btn-primary { font-size: 16px; line-height: 24px; padding: 8px 30px; background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); }
.btn-dark { font-size: 16px; line-height: 24px; padding: 8px 30px; background: var(--ink); color: #fff; }
.btn-dark:hover { background: #222; }
.btn-secondary { font-size: 14px; line-height: 22px; padding: 8px 24px; background: #fff; color: var(--blue); border-color: var(--hairline); }
.btn-secondary:hover { border-color: var(--blue); }
.btn-ghost { font-size: 16px; padding: 0 12px; background: transparent; color: var(--ink); }
.btn-ghost:hover { color: var(--blue); }
.btn-sm { font-size: 13.3px; padding: 8px 18px; }
/* ===== icon system — real wix paths (branding/assets/*.svg), masked → inherit currentColor =====
   Sources: arrow-right.svg (18×12) · arrow-up.svg ↗ (24×24) · plus sign.svg (30×29) · x sign.svg (200×200) */
:root {
  --arr-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 12'%3E%3Cpath d='M11.8 12H9.3l5.2-5H.4V5.3h14.1L9.3.3h2.5l6.1 5.9z'/%3E%3C/svg%3E");
  --arr-diag: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M24 0v23.352h-2.215V3.782L1.567 24 0 22.433 20.219 2.215H.648V0z'/%3E%3C/svg%3E");
  --plus-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 29'%3E%3Cpath d='M16.139 13V0h-2.167v13h-13v2.167h13v13h2.167v-13h13V13h-13Z'/%3E%3C/svg%3E");
  --x-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M134.65 128.99L105.66 100l28.99-28.99-5.66-5.66L100 94.34 71.01 65.35l-5.66 5.66L94.34 100l-28.99 28.99 5.66 5.66L100 105.66l28.99 28.99 5.66-5.66z'/%3E%3C/svg%3E");
}
.ic, .arr { display:inline-flex; align-items:center; justify-content:center; font-size:0; line-height:0; vertical-align:middle; }
.ic::after, .arr::after { content:''; flex-shrink:0; background:currentColor; transition:transform .3s cubic-bezier(.22,1,.36,1); }
.arr::after { width:16px; height:11px;
  -webkit-mask:var(--arr-mask) center/contain no-repeat; mask:var(--arr-mask) center/contain no-repeat; }
.arr.rot::after { width:16px; height:16px;
  -webkit-mask:var(--arr-diag) center/contain no-repeat; mask:var(--arr-diag) center/contain no-repeat; }
.arr.down::after { transform:rotate(90deg); }         /* ↓ scroll hint */
.ic-x::after { width:14px; height:14px;
  -webkit-mask:var(--x-mask) center/contain no-repeat; mask:var(--x-mask) center/contain no-repeat; }
/* arrow inside buttons */
/* CTA arrows reveal on hover/focus — Wix pattern: clean pill, arrow slides in */
.btn .arr { max-width:0; margin-left:0; opacity:0; overflow:hidden; flex-shrink:0; transition:max-width .3s cubic-bezier(.22,1,.36,1),margin-left .3s cubic-bezier(.22,1,.36,1),opacity .2s; }
.btn:hover .arr, .btn:focus-visible .arr { max-width:24px; width:24px; margin-left:10px; opacity:1; }
.btn:hover .arr::after { transform:translateX(3px); }
.btn:hover .arr.rot::after { transform:translate(2px,-2px); }

/* cards */
.card {
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--r-card);
  padding: var(--s-6);
}
.card-soft { background: var(--bg-soft); border-color: transparent; }
.card h2, .card h3 { font-family: var(--f-display); font-weight: 400; font-size: var(--t-lead); letter-spacing: -0.01em; color: var(--ink); margin-bottom: var(--s-2); }
.card p { font-size: var(--t-body); color: var(--body); }

/* forms */
.f-label { display: block; font-size: 14px; color: var(--ink); margin-bottom: 6px; font-weight: 500; }
.f-input, .f-select, .f-area {
  width: 100%; font-family: var(--f-text); font-size: 15.5px; color: var(--ink);
  padding: 13px 16px; border: 1px solid var(--line-input); border-radius: var(--r-input);
  background: #fff; transition: border-color .15s, box-shadow .15s;
}
.f-select { appearance: none; -webkit-appearance: none; padding-right: 40px; cursor: pointer;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23555' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
}
.f-select:invalid { color: var(--annot); }
.f-input:focus, .f-area:focus, .f-select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,106,234,.32); }
.f-input:focus-visible, .f-area:focus-visible, .f-select:focus-visible { outline: 2px solid var(--blue); outline-offset: 1px; }
.f-area { min-height: 110px; resize: vertical; }
.f-field { margin-bottom: var(--s-4); }
input[type="checkbox"], input[type="radio"] { accent-color: var(--blue); width: 17px; height: 17px; flex-shrink: 0; }
/* fsbx — custom selectbox. The native <select>'s open list is unstyleable OS
   chrome (square on Windows); JS overlays it with this rounded card list.
   The real <select> stays absolutely positioned over the widget, transparent
   and click-through, so required-validation still anchors and submits natively. */
.fsbx { position: relative; }
.fsbx > select.f-select { position: absolute; inset: 0; opacity: 0; pointer-events: none; }
.fsbx-btn { display: flex; align-items: center; justify-content: space-between; gap: 12px; text-align: left; }
.fsbx-btn.is-placeholder { color: var(--annot); }
.fsbx-btn[aria-expanded="true"] { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(22,106,234,.32); }
.fsbx-list { position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40; background: #fff; border: 1px solid var(--hairline); border-radius: 14px; box-shadow: var(--sh-glow); padding: 6px; max-height: 264px; overflow-y: auto; opacity: 0; transform: translateY(-5px) scale(.98); transform-origin: top; transition: opacity .16s cubic-bezier(.22,1,.36,1), transform .16s cubic-bezier(.22,1,.36,1); }
.fsbx-list.on { opacity: 1; transform: none; }
.fsbx-opt { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 12px; border-radius: 9px; font-size: 15px; color: var(--ink); cursor: pointer; }
.fsbx-opt:hover, .fsbx-opt.act { background: var(--blue-50); }
.fsbx-opt[aria-selected="true"] { font-weight: 600; }
.fsbx-opt[aria-selected="true"]::after { content: '✓'; color: var(--blue); font-size: 13px; font-weight: 700; }
.f-hint { font-size: 12.5px; color: var(--annot); margin-top: 5px; }

/* interactive feature list (wix signature) */
.feat-list { list-style: none; }
.feat-list li {
  font-family: var(--f-display); font-size: var(--t-feature); font-weight: 400;
  line-height: 1.1; letter-spacing: -0.02em; color: var(--annot);
  padding: var(--s-3) 0; cursor: pointer; transition: color .2s;
}
.feat-list li:hover, .feat-list li.on { color: var(--ink); }


/* ===== gradients — extracted from wix.com/domains ===== */
/* Hero aurora: white base + edge radial blobs + vertical white fade overlay */
.bg-hero-aurora {
  position: relative;
  background-color: #FFFFFF;
  background-image:
    radial-gradient(circle at 100% 31%, rgba(139,181,245,0.35) 0%, 17.5%, rgba(139,181,245,0) 35%),
    radial-gradient(circle at 86.5% 0%, rgba(255,255,255,1) 0%, 17.5%, rgba(255,255,255,0) 35%),
    radial-gradient(circle at 0% 0%, rgba(255,255,255,1) 0%, 17.5%, rgba(255,255,255,0) 35%),
    radial-gradient(circle at 50.7% 39.7%, rgba(139,181,245,0.5) 0%, 11.7%, rgba(139,181,245,0) 42%);
}
.bg-hero-aurora::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(#EFF5FE 0%, rgba(255,255,255,0) 20%, rgba(255,255,255,0) 52%, #FFFFFF 82%);
}
.bg-hero-aurora > * { position: relative; z-index: 1; }

/* section washes — white merges into soft blue and back */
.bg-wash-blue   { background: linear-gradient(180deg, #FFFFFF 0%, #DCE9FC 50%, #FFFFFF 100%); }
.bg-wash-blue-b { background: linear-gradient(0deg, rgba(226,239,255,0) 0%, #E2EFFF 100%); }
.bg-wash-soft   { background: linear-gradient(rgba(255,255,255,0.72) 0%, rgba(173,215,255,0.5) 100%); }

/* card gradients — pastel mixes (wix technique, OM blue-family palette) */
.card-g-blue     { background: linear-gradient(45deg, #EFF5FE 2%, #DCE9FC 43%, #8BB5F5 100%); border: none; }
.card-g-lavender { background: linear-gradient(0deg, #E2D8FF 0%, #EAF3FF 100%); border: none; }
.card-g-mint     { background: linear-gradient(210deg, #BAD7C1 0%, #DEFFDE 100%); border: none; }
.card-g-ice      { background: linear-gradient(180deg, #E2EFFF 0%, #FFFFFF 100%); border: none; }
.card-g-dusk     { background: linear-gradient(135deg, #0C3A81 0%, #1150B0 55%, #166AEA 100%); border: none; color: #fff; }
.card-g-dusk h2, .card-g-dusk h3, .card-g-dusk p { color: #fff !important; }
.card-g-dark     { background:
    linear-gradient(245deg, rgba(139,181,245,0.14) -20%, rgba(139,181,245,0.08) 16%, rgba(255,255,255,0) 87%),
    #0A0A0A; border: none; color: #fff; }
.card-g-dark h2, .card-g-dark h3, .card-g-dark p { color: #fff !important; }

/* aurora field — multi-blob decorative section bg (blue-family + one warm accent) */
.bg-aurora-field {
  background-color: #fff;
  background-image:
    radial-gradient(circle at 54% 29%, rgba(139,181,245,0.6) 0%, 26.5%, rgba(139,181,245,0) 53%),
    radial-gradient(circle at 100% 100%, rgba(239,226,227,0.8) 0%, 17.5%, rgba(239,226,227,0) 35%),
    radial-gradient(circle at 0% 50%, rgba(185,210,249,0.7) 0%, 20%, rgba(185,210,249,0) 40%);
}
.grad-swatch { border-radius: var(--r-card); min-height: 150px; padding: var(--s-5); }
.grad-swatch .spec { color: rgba(0,0,0,.45); }
.grad-swatch.on-dark .spec { color: rgba(255,255,255,.6); }
.grid2 { display:grid; grid-template-columns:1fr 1fr; gap: var(--s-5); }
.grid3 { display:grid; grid-template-columns:repeat(3,1fr); gap: var(--s-5); }
@media (max-width: 900px){ .grid2,.grid3 { grid-template-columns:1fr; } }


/* ===== per-page colorways — wix studio technique ===== */
/* page-scoped theme: no switcher — body class sets nav+hero colors */
.theme-light { --nav-c: #000; --nav-bg: rgba(255,255,255,.85); --hero-c: #000; }
.theme-dark  { --nav-c: #fff; --nav-bg: rgba(10,10,10,.85); --hero-c: #fff; }
.pagenav { display:flex; align-items:center; justify-content:space-between; padding:18px var(--gutter); background:var(--nav-bg); backdrop-filter:blur(12px); }
.pagenav .plinks a { color: var(--nav-c); text-decoration:none; font-size:16px; padding:0 12px; transition:color .4s; }
.pagenav .plinks a:hover { color: var(--blue); }
.theme-dark .pagenav .plinks a:hover { color: var(--blue-50, #8BB5F5); }
/* white logo file used on dark — no filter needed */

/* colorway section blocks */
.cw-teal   { background:#4E7475; color:#fff; }
.cw-deep   { background:#23464C; color:#fff; }
.cw-navy   { background:#191D28; color:#fff; }
.cw-dusk   { background:linear-gradient(135deg,#0C3A81,#1150B0 55%,#166AEA); color:#fff; }
.cw-ice    { background:#E6EEF7; color:#000; }
.cw-mint   { background:#D1E6D1; color:#000; }
.cw-block  { border-radius:var(--r-card); padding:var(--s-10) var(--s-6); }
.cw-block h2, .cw-block h3 { color:inherit; }
.cw-teal .t-body,.cw-deep .t-body,.cw-navy .t-body,.cw-dusk .t-body{color:rgba(255,255,255,.75)}

/* end-CTA bands — the loud final moment */
.band-lime { background:#DEFF00; color:#000; border-radius:var(--r-card); padding:var(--s-12) var(--s-6); text-align:center; }
.band-dusk { background:linear-gradient(135deg,#0C3A81,#1150B0 55%,#166AEA); color:#fff; border-radius:var(--r-card); padding:var(--s-12) var(--s-6); text-align:center; }
.band-ink  { background:linear-gradient(245deg,rgba(139,181,245,.14) -20%,rgba(139,181,245,.06) 16%,rgba(255,255,255,0) 87%),#0A0A0A; color:#fff; border-radius:var(--r-card); padding:var(--s-12) var(--s-6); text-align:center; }
.band-lime .d-section,.band-dusk .d-section,.band-ink .d-section{color:inherit}

/* ===== motion — extracted wix keyframes, OM-tuned ===== */
@keyframes om-fade { from{opacity:0} to{opacity:1} }
@keyframes om-glide { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
@keyframes om-slide { from{opacity:0;transform:translateX(24px)} to{opacity:1;transform:translateX(0)} }
@keyframes om-float { from{opacity:0;transform:translateY(28px) scale(.98)} to{opacity:1;transform:none} }
@keyframes om-flip  { from{opacity:0;transform:perspective(600px) rotateX(8deg)} to{opacity:1;transform:none} }
@keyframes om-marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.anim-fade  { animation:om-fade .4s cubic-bezier(.22,1,.36,1) both; }
.anim-glide { animation:om-glide .45s cubic-bezier(.22,1,.36,1) both; }
.anim-slide { animation:om-slide .45s cubic-bezier(.22,1,.36,1) both; }
.anim-float { animation:om-float .5s cubic-bezier(.22,1,.36,1) both; }
.anim-flip  { animation:om-flip .45s cubic-bezier(.22,1,.36,1) both; }
/* scroll-reveal: add .reveal, JS toggles .in; --d = stagger delay */
.js .reveal { opacity:0; transform:translateY(16px); transition:opacity .45s cubic-bezier(.22,1,.36,1) var(--d,0ms), transform .45s cubic-bezier(.22,1,.36,1) var(--d,0ms); }
.js .reveal.in { opacity:1; transform:none; }
html:not(.js) .reveal { opacity:1; transform:none; }
/* hover lift on cards */
.lift { transition:transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s; }
.lift:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(12,58,129,.10); }
/* marquee strip */
.marquee { overflow:hidden; }
.marquee-track { display:flex; gap:48px; width:max-content; animation:om-marquee 40s linear infinite; }
.marquee:hover .marquee-track { animation-play-state:paused; }
.logo-chip{border:1px solid var(--hairline);border-radius:12px;padding:10px 20px;font-family:var(--f-display);font-size:15px;color:#5E5E5E;white-space:nowrap}
/* accordion — wix pattern: 19px rows, hairline dividers, plus→× */
.acc { border-bottom:1px solid var(--hairline); }
.acc-head { display:flex; justify-content:space-between; align-items:center; gap:24px; padding:22px 0; font-family:var(--f-display); font-size:19px; font-weight:400; color:#000; cursor:pointer; transition:color .4s; }
.acc-head:hover { color:var(--blue); }
.acc-head span:last-child { width:44px; height:44px; border:1.5px solid var(--hairline); border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-size:0; line-height:0; color:#000; transition:transform .35s cubic-bezier(.22,1,.36,1),background .3s,border-color .3s; flex-shrink:0; }
.acc-head span:last-child::after { content:''; width:18px; height:18px; background:currentColor; -webkit-mask:var(--plus-mask) center/contain no-repeat; mask:var(--plus-mask) center/contain no-repeat; }
.acc-head:hover span:last-child { border-color:#000; }
.acc-head[aria-expanded="true"] span:last-child { transform:rotate(45deg); background:#000; color:#fff; border-color:#000; }
.acc-panel { display:grid; grid-template-rows:0fr; transition:grid-template-rows .35s cubic-bezier(.22,1,.36,1); }
.acc-panel.open { grid-template-rows:1fr; }
.acc-panel > div { overflow:hidden; }
.acc-panel p { font-size:16px; line-height:1.6; color:var(--body); padding:0 0 24px; max-width:560px; }
/* no-JS accordion — <details class="acc-item"><summary class="acc-head">…<div class="acc-body">;
   same wix pattern, works without JavaScript (the .acc/.acc-panel JS variant is
   being replaced by this everywhere) */
details.acc-item { border-bottom:1px solid var(--hairline); }
summary.acc-head { list-style:none; cursor:pointer; }
summary.acc-head::-webkit-details-marker { display:none; }
details.acc-item[open] > summary.acc-head span:last-child { transform:rotate(45deg); background:#000; color:#fff; border-color:#000; }
.acc-body > p, .acc-body p { font-size:16px; line-height:1.6; color:var(--body); padding:0 0 24px; max-width:560px; }
.faq-wide .acc-body p { max-width:680px; }
.acc-body a { color:var(--blue); }
/* skip link — first tab stop, jumps past the 9-link header (WCAG 2.4.1) */
.skip-link { position:absolute; left:-9999px; top:0; z-index:300; background:var(--ink); color:#fff; padding:12px 22px; font-size:15px; font-weight:500; border-radius:0 0 14px 0; text-decoration:none; }
.skip-link:focus, .skip-link:focus-visible { left:0; color:#fff; }
/* sticky header is 64px+ — focused elements must not slide under it */
a,button,input,select,textarea,[tabindex],summary { scroll-margin-top:96px; }
@media (prefers-reduced-motion: reduce) {
  .anim-fade,.anim-glide,.anim-slide,.anim-float,.anim-flip,.reveal { animation:none!important; transition:none!important; opacity:1!important; transform:none!important; }
  .marquee-track { animation:none!important; }
}


/* ===== deep extraction round 2 — gradient text, glass chips, wix shadows ===== */
/* gradient text — their recipe: 90deg ink→accent, background-clip:text */
.grad-text { background: linear-gradient(90deg, #0C3A81 0%, #166AEA 55%, #508FEF 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.grad-text-soft { background: linear-gradient(90deg, #000 0%, #166AEA 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
/* wix shadows — color-matched, not gray */
:root {
  --sh-card: rgba(60,125,196,.10) 0 38px 40px -27px;
  --sh-glow: rgba(133,154,255,.40) 0 30px 250px 20px, rgba(139,142,238,.16) 0 16px 60px;
  --sh-chip: rgba(60,125,196,.14) 0 12px 30px -8px;
  --sh-inset: inset -1.5px -1.5px 2.5px rgba(255,255,255,1), inset 1.5px 1.5px 2.5px rgba(252,252,252,1);
}
/* glass overlay chip — floats over hero media */
.chip-float {
  position:absolute; display:flex; align-items:center; gap:10px;
  background:rgba(255,255,255,.82); backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.9); border-radius:14px;
  padding:12px 16px; font-size:14px; font-weight:500; color:#000;
  box-shadow: var(--sh-chip), inset 0 1px 0 rgba(255,255,255,.9);
  animation: om-bob 5s ease-in-out infinite;
}
.chip-float .dot { width:8px;height:8px;border-radius:50%;background:var(--blue);flex-shrink:0 }
.chip-float .tick { width:20px;height:20px;border-radius:50%;background:var(--blue-50);color:var(--blue);display:flex;align-items:center;justify-content:center;font-size:11px;flex-shrink:0 }
@keyframes om-bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.chip-float:nth-child(2){animation-delay:-1.6s}.chip-float:nth-child(3){animation-delay:-3.2s}
/* suggestion chip — wix gradient-text chips */
.suggest-chip { display:inline-flex;align-items:center;gap:8px;padding:10px 18px;border-radius:999px;border:1px solid var(--hairline);background:#fff;font-size:14px;box-shadow:var(--sh-inset);cursor:pointer;transition:border-color .4s,box-shadow .3s }
.suggest-chip:hover { border-color:#B9D2F9; box-shadow:var(--sh-chip) }
.suggest-chip .gt { background:linear-gradient(90deg,#000 0%,#166AEA 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent }
/* animated counter */
.count { font-family:var(--f-display);font-weight:400;font-size:56px;letter-spacing:-0.02em;color:var(--ink);font-variant-numeric:tabular-nums }
/* eyebrow chip */
.eyebrow-chip { display:inline-flex;align-items:center;gap:8px;padding:7px 16px;border-radius:999px;background:var(--blue-50);border:1px solid #DCE9FC;font-size:13px;font-weight:500;color:var(--blue) }
.eyebrow-chip .dot{width:6px;height:6px;border-radius:50%;background:var(--blue)}
/* section divider hairline inside wrap */
.sec-head { margin-bottom: var(--s-10); }
.sec-head .sec-label{margin-bottom:var(--s-4)}
.sec-head .d-section{margin-bottom:0}
@media (prefers-reduced-motion: reduce){ .chip-float,.stage-deco{animation:none} }

/* ============================================================
   v4 — SECTIONAL COMPONENTS (extracted from wix.com 2026-09-15)
   Every block = one reusable section. Compose pages by stacking.
   ============================================================ */

/* ---------- shared hero primitives (used by aurora + solid heroes) ---------- */
.hero{text-align:center;padding:104px 0 0}
.hero .d-hero{max-width:1100px;margin:0 auto}
.hero .t-intro{max-width:560px;margin:24px auto 0}
.cta-row{display:flex;gap:12px;justify-content:center;margin-top:36px}
.hero-stage{position:relative;max-width:1180px;margin:64px auto 0;padding-bottom:40px}
.hero-band{position:relative;z-index:1;border-radius:24px;overflow:hidden;box-shadow:var(--sh-glow)}
.hero-band img{width:100%;display:block}
@media(max-width:860px){.cta-row{flex-direction:column;padding:0 24px}.cta-row .btn{width:100%;white-space:nowrap;text-align:center}}

/* ---------- C01 hero-stage — central site mock + peek cards + chips ----------
   v3 (wix.com 2026-09): per-slide aurora wash behind the composition,
   bright gradient "sweep" on each change, depth-of-field flanks.      */
.hero-stage-v2 { position:relative; max-width:1180px; margin:0 auto; height:560px; }
/* hero-field — the aurora field spans the FULL section width (edge-to-edge of
   the browser, like wix.com) and blends to white at top; the bottom fades to
   the next section's field (#DCE9FC pain-rail) so the two fields meet with no
   white seam. Wrap it around the hero: <section class="hero-field"> */
.hero-field { position: relative; overflow: clip; }
.hero-field .stage-aurora { inset: -8% -45%; }
.hero-field::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,.72) 12%, rgba(255,255,255,0) 32%, rgba(255,255,255,0) 70%, rgba(220,233,252,.7) 88%, #DCE9FC 94%); }
.hero-field > .wrap { position: relative; z-index: 2; }
/* aurora wash — 4 stacked layers, one per slide theme; JS fades them */
.stage-aurora { position:absolute; inset:-14% -8%; z-index:0; pointer-events:none; }
.stage-aurora i { position:absolute; inset:0; opacity:0; transition:opacity 1.1s cubic-bezier(.22,1,.36,1); }
.stage-aurora i.on { opacity:1; }
.au-sky      { background:radial-gradient(ellipse 62% 72% at 50% 88%,rgba(139,181,245,.5) 0%,rgba(139,181,245,0) 68%),radial-gradient(ellipse 38% 46% at 12% 78%,rgba(255,190,170,.4) 0%,rgba(255,190,170,0) 70%),radial-gradient(ellipse 38% 46% at 88% 82%,rgba(255,205,230,.38) 0%,rgba(255,205,230,0) 70%); }
.au-mint     { background:radial-gradient(ellipse 62% 72% at 50% 88%,rgba(165,224,190,.48) 0%,rgba(165,224,190,0) 68%),radial-gradient(ellipse 38% 46% at 12% 78%,rgba(185,210,249,.38) 0%,rgba(185,210,249,0) 70%),radial-gradient(ellipse 38% 46% at 88% 82%,rgba(240,230,160,.38) 0%,rgba(240,230,160,0) 70%); }
.au-lavender { background:radial-gradient(ellipse 62% 72% at 50% 88%,rgba(196,181,250,.48) 0%,rgba(196,181,250,0) 68%),radial-gradient(ellipse 38% 46% at 12% 78%,rgba(139,181,245,.38) 0%,rgba(139,181,245,0) 70%),radial-gradient(ellipse 38% 46% at 88% 82%,rgba(255,190,170,.34) 0%,rgba(255,190,170,0) 70%); }
.au-peach    { background:radial-gradient(ellipse 62% 72% at 50% 88%,rgba(255,196,150,.46) 0%,rgba(255,196,150,0) 68%),radial-gradient(ellipse 38% 46% at 12% 78%,rgba(255,205,230,.4) 0%,rgba(255,205,230,0) 70%),radial-gradient(ellipse 38% 46% at 88% 82%,rgba(139,181,245,.34) 0%,rgba(139,181,245,0) 70%); }
.au-rose     { background:radial-gradient(ellipse 62% 72% at 50% 88%,rgba(255,158,199,.44) 0%,rgba(255,158,199,0) 68%),radial-gradient(ellipse 38% 46% at 12% 78%,rgba(196,181,250,.38) 0%,rgba(196,181,250,0) 70%),radial-gradient(ellipse 38% 46% at 88% 82%,rgba(255,196,150,.38) 0%,rgba(255,196,150,0) 70%); }
.au-sand     { background:radial-gradient(ellipse 62% 72% at 50% 88%,rgba(245,217,139,.46) 0%,rgba(245,217,139,0) 68%),radial-gradient(ellipse 38% 46% at 12% 78%,rgba(165,224,190,.38) 0%,rgba(165,224,190,0) 70%),radial-gradient(ellipse 38% 46% at 88% 82%,rgba(139,181,245,.34) 0%,rgba(139,181,245,0) 70%); }
/* the "magical" moment — bright skewed band sweeps INSIDE the center frame on
   each change (clipped by .stage-frame's overflow:hidden; tint follows
   stage[data-theme], see the .frame-sweep block in the v6 section) */
@keyframes stage-sweep { 0%{opacity:0;transform:translateX(0) skewX(-12deg)} 18%{opacity:1} 100%{opacity:0;transform:translateX(340%) skewX(-12deg)} }
.stage-frame { position:absolute; left:50%; top:0; transform:translateX(-50%); width:min(720px,62%); border-radius:20px; overflow:hidden; box-shadow:var(--sh-glow); z-index:3; background:#fff; }
.stage-frame img { width:100%; display:block; aspect-ratio:16/9.4; object-fit:cover; transition:opacity .45s cubic-bezier(.22,1,.36,1),transform .9s cubic-bezier(.22,1,.36,1); }
.stage-frame img.fading { opacity:0; transform:scale(1.03); }
.stage-frame .frame-bar { height:26px; display:flex; align-items:center; gap:6px; padding:0 12px; background:#fff; border-bottom:1px solid var(--hairline); }
.stage-frame .frame-bar i { width:7px;height:7px;border-radius:50%;background:var(--hairline); }
/* chat card pinned on the frame — their "Ask Aria" overlay */
.stage-chat { position:absolute; right:14px; bottom:14px; width:230px; background:rgba(255,255,255,.94); backdrop-filter:blur(10px); border:1px solid rgba(255,255,255,.9); border-radius:16px; box-shadow:var(--sh-chip); padding:14px 16px; z-index:4; text-align:left; }
.stage-chat b { display:flex; align-items:center; gap:8px; font-size:13px; font-weight:600; color:#000; margin-bottom:8px; }
.stage-chat b::before { content:''; width:16px; height:16px; border-radius:50%; background:radial-gradient(circle at 32% 28%,#fff,#BFD8FF 34%,#166AEA 68%,#0C3A81); flex-shrink:0; }
.stage-chat p { font-size:12.5px; line-height:1.45; color:var(--body); }
.stage-chat .chat-in { margin-top:10px; display:flex; align-items:center; justify-content:space-between; border:1px solid var(--hairline); border-radius:999px; padding:6px 12px; font-size:11.5px; color:var(--annot); }
.stage-chat .chat-in i { font-style:normal; width:16px; height:16px; border-radius:50%; background:var(--blue); color:#fff; display:flex; align-items:center; justify-content:center; font-size:10px; }
/* flanks — prev/next slides visible as depth-of-field previews both sides
   (wix.com anatomy: left peek slightly sharper w/ label chip, right heavy-blur) */
.stage-peek { position:absolute; top:16%; width:34%; border-radius:16px; overflow:hidden; box-shadow:var(--sh-card); z-index:1; opacity:.85; transition:opacity .5s,transform .5s,filter .5s; }
.stage-peek img { width:100%; display:block; aspect-ratio:1440/846; object-fit:cover; transition:opacity .45s; }
.stage-peek img.fading { opacity:0; }
.stage-peek .peek-tag { position:absolute; top:10px; left:10px; background:var(--blue); color:#fff; font-size:11.5px; font-weight:500; padding:5px 12px; border-radius:8px; }
.stage-peek.l { left:-7%; transform:scale(.85); filter:blur(2px) saturate(.95); opacity:.8; }
.stage-peek.r { right:-7%; transform:scale(.85); filter:blur(2px) saturate(.95); opacity:.8; }
.stage-peek.l:hover { transform:scale(.88); filter:blur(1px) saturate(.95); }
.stage-deco { position:absolute; width:150px; z-index:2; pointer-events:none; animation:om-bob 7s ease-in-out infinite; filter:blur(7px) saturate(1.1); opacity:.85; }
.stage-deco.dl { left:2%; top:34%; } .stage-deco.dr { right:1%; top:8%; animation-delay:-3s; }
.hero-stage-v2 .chip-float { z-index:4; }
.stage-stats { display:flex; justify-content:center; gap:0; margin:40px auto 0; max-width:520px; background:rgba(255,255,255,.75); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.9); border-radius:16px; box-shadow:var(--sh-chip); }
.stage-stats>div { flex:1; text-align:center; padding:22px 12px; }
.stage-stats>div+div { border-left:1px solid var(--hairline); }
.stage-stats b { display:block; font-family:var(--f-display); font-weight:400; font-size:30px; letter-spacing:-.02em; color:#000; }
.stage-stats span { font-size:14px; color:var(--body); }
@media(max-width:860px){ .hero-stage-v2{height:auto} .stage-frame{position:relative;left:0;transform:none;width:100%} .stage-peek,.stage-deco,.stage-floats{display:none} .stage-chat{display:none} .frame-sweep{display:none} .chip-float{display:none} .stage-aurora{inset:-30% -20%} .hero-field .stage-aurora{inset:-20% -30%} }

/* ---------- human imagery — photo card tops + framed photo panels ---------- */
/* .card-img bleeds a photo to a .card's top edges (card padding = --s-6, radius --r-card) */
.card-img { position: relative; margin: calc(var(--s-6) * -1) calc(var(--s-6) * -1) var(--s-5); border-radius: var(--r-card) var(--r-card) 0 0; overflow: hidden; }
.card-img img { width: 100%; display: block; aspect-ratio: 16/8.5; object-fit: cover; }
/* soft brand wash — photo tops melt into the card below (Wix colour-field cue) */
.card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,58,129,0) 45%, rgba(12,58,129,.30) 100%); pointer-events: none; }
/* .img-chip — outcome chip anchored on a .card-img photo (words ride the image) */
.img-chip { position: absolute; left: 14px; bottom: 12px; z-index: 2; display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,.94); border-radius: 12px; padding: 8px 13px; font-size: 12.5px; font-weight: 600; color: var(--ink); box-shadow: var(--sh-chip); }
.img-chip .tick { color: #fff; background: var(--blue); width: 16px; height: 16px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; }
/* .tool-viz — honest instrument vignette on tool cards: shows WHAT the tool measures, never a fake result */
.tool-viz { margin: calc(var(--s-6) * -1) calc(var(--s-6) * -1) var(--s-4); border-radius: var(--r-card) var(--r-card) 0 0; background: linear-gradient(160deg, #F2F7FF 0%, #E8F0FE 100%); padding: 18px 18px 10px; }
.tool-viz svg { width: 100%; height: auto; display: block; }
/* .photo-frame — standalone framed photo panel (browser chrome optional via .frame-bar) */
.photo-frame { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--sh-glow); background: #fff; border: 1px solid var(--hairline); }
.photo-frame .pf-chip { position: absolute; left: 16px; bottom: 16px; display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.96); border-radius: 14px; padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--ink); box-shadow: var(--sh-chip); }
.photo-frame .pf-chip .tick { color: #fff; background: var(--blue); width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; }
/* .pf-art — the artefact the desk hands back, overlapping the photo (tilted card cue) */
.photo-frame .pf-art { position: absolute; top: 42px; right: 14px; transform: rotate(2.5deg); background: #fff; border-radius: 14px; padding: 12px 16px; box-shadow: var(--sh-chip); border: 1px solid var(--hairline); font-size: 12.5px; line-height: 1.5; color: var(--body); max-width: 210px; }
.photo-frame .pf-art b { display: block; color: var(--ink); font-size: 13px; margin-bottom: 2px; }
.photo-frame .pf-art .ok { color: var(--blue); font-weight: 700; }
.photo-frame .frame-bar { height: 26px; display: flex; align-items: center; gap: 6px; padding: 0 12px; background: #fff; border-bottom: 1px solid var(--hairline); }
.photo-frame .frame-bar i { width: 7px; height: 7px; border-radius: 50%; background: var(--hairline); }
.photo-frame > img { width: 100%; display: block; aspect-ratio: 4/3.4; object-fit: cover; }
/* .duo — the Wix composite: tilted photo card + overlapping artefact card on a tint field */
.duo { position: relative; max-width: 620px; margin-inline: auto; padding: 20px 40px 56px; }
.duo-photo { transform: rotate(-2.5deg); border-radius: 20px; overflow: hidden; box-shadow: var(--sh-glow); }
.duo-photo img { width: 100%; display: block; aspect-ratio: 4/3.2; object-fit: cover; }
.duo-art { position: absolute; right: 0; bottom: 12px; transform: rotate(2.5deg); width: 52%; min-width: 220px; background: #fff; border-radius: 16px; box-shadow: 0 12px 40px rgba(12,58,129,.14); border: 1px solid var(--hairline); padding: 18px 20px; font-size: 13px; line-height: 1.55; color: var(--body); }
.duo-art b { display: block; color: var(--ink); font-size: 14px; margin-bottom: 4px; }
.duo-art .ok { color: var(--blue); font-weight: 700; }
@media (max-width: 700px) { .duo { padding: 8px 8px 52px; } .duo-art { width: 78%; bottom: 8px; right: 4px; } }
/* .hero-split — text | framed media, collapses to stacked under 900px */
.hero-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero-split { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- C02 flow-field — drifting prompt chips + center stage ---------- */
.flow-field { position:relative; overflow:hidden; padding:150px var(--gutter) 160px; text-align:center;
  background:radial-gradient(ellipse 90% 60% at 50% 100%,rgba(209,230,209,.75) 0%,rgba(209,230,209,0) 70%),radial-gradient(ellipse 60% 40% at 15% 20%,rgba(185,210,249,.35) 0%,rgba(185,210,249,0) 60%),#fff; }
.flow-field .orb { width:72px;height:72px;border-radius:50%;margin:0 auto 28px;position:relative;background:radial-gradient(circle at 32% 28%,#fff 0%,#BFD8FF 34%,#166AEA 68%,#0C3A81 100%);box-shadow:0 0 0 1px rgba(255,255,255,.6) inset,0 14px 44px rgba(22,106,234,.45),0 0 90px rgba(80,143,239,.5);animation:orb-breathe 5s ease-in-out infinite; }
.flow-field .orb i { display:none; }
@keyframes orb-breathe { 0%,100%{transform:scale(1)} 50%{transform:scale(1.07)} }
.prompt-chip { position:absolute; padding:11px 20px; background:#fff; border:1px solid var(--hairline); border-radius:999px; font-size:14.5px; color:#333; box-shadow:0 8px 30px rgba(60,125,196,.12); white-space:nowrap; opacity:0; animation:om-drift var(--dur,26s) linear infinite; animation-delay:var(--del,0s); pointer-events:none; }
.prompt-chip em { font-style:normal; color:var(--blue); }
@keyframes om-drift { 0%{transform:translateX(-6vw);opacity:0} 8%{opacity:1} 88%{opacity:1} 100%{transform:translateX(56vw);opacity:0} }
.prompt-chip.rev { animation-name:om-drift-r; }
@keyframes om-drift-r { 0%{transform:translateX(56vw);opacity:0} 8%{opacity:1} 88%{opacity:1} 100%{transform:translateX(-6vw);opacity:0} }
@media (prefers-reduced-motion: reduce){ .prompt-chip{animation:none;opacity:.7} }
@media(max-width:860px){ .flow-field{padding:96px 20px} .prompt-chip{font-size:12.5px;padding:9px 14px} }

/* ---------- C03 svc-rail — auto-scrolling wide service cards ---------- */
.svc-rail { overflow:hidden; }
.svc-rail .rail2, .creator-rail .rail2 { display:flex; gap:24px; width:max-content; animation:om-marquee var(--spd,55s) linear infinite; padding:8px 0; }
.svc-rail:hover .rail2, .creator-rail:hover .rail2 { animation-play-state:paused; }
.svc-card { flex:0 0 660px; border-radius:22px; padding:44px; min-height:340px; display:flex; flex-direction:column; justify-content:flex-end; position:relative; overflow:hidden; }
.svc-card .ui-mock { position:absolute; top:24px; right:24px; width:46%; border-radius:14px; overflow:hidden; box-shadow:0 20px 50px rgba(12,58,129,.18); }
.svc-card .ui-mock img { width:100%; display:block; }
.svc-card h3 { font-family:var(--f-display); font-weight:400; font-size:26px; color:#000; margin-bottom:8px; letter-spacing:-.01em; position:relative; }
.svc-card p { font-size:15px; color:rgba(0,0,0,.62); max-width:46%; line-height:1.5; position:relative; }
.svc-card .svc-link { margin-top:8px; font-size:14px; font-weight:500; color:#000; text-decoration:underline; text-underline-offset:4px; position:relative; display:inline-block; padding:8px 0; }
.g-teal { background:linear-gradient(135deg,#DEEAEA 0%,#9FBDBD 55%,#7FA5A5 100%); }
.g-sky  { background:linear-gradient(135deg,#EAF3FF 0%,#B9D2F9 55%,#8BB5F5 100%); }
.g-lime { background:linear-gradient(135deg,#F2F7E8 0%,#D1E6D1 55%,#AFCBAB 100%); }
.g-sand { background:linear-gradient(135deg,#F6F0E8 0%,#E4D5C0 60%,#CBB599 100%); }
@media(max-width:860px){ .svc-card{flex-basis:82vw;padding:28px;min-height:280px} .svc-card p{max-width:60%} }

/* ---------- C04 company-collage — centered text, photos ring it evenly ---------- */
.collage { position:relative; min-height:700px; display:flex; align-items:center; justify-content:center; text-align:center; overflow:hidden;
  background:radial-gradient(ellipse 80% 55% at 50% 100%,rgba(226,216,255,.7) 0%,rgba(226,216,255,0) 70%),linear-gradient(#fff,#F4F0FF 60%,#fff); }
.collage .co { position:absolute; border-radius:18px; overflow:hidden; box-shadow:var(--sh-card); z-index:1; }
.collage .co img { width:100%;height:100%;object-fit:cover;display:block; }
.collage .co .name-chip { position:absolute; bottom:12px; left:12px; background:rgba(255,255,255,.92); backdrop-filter:blur(8px); border-radius:999px; padding:8px 16px; font-size:14px; font-weight:500; color:#000; display:flex; gap:8px; align-items:center; white-space:nowrap; }
.collage .co .name-chip::after { content:'→'; font-size:12px; }
.collage .co-txt { position:relative; z-index:2; max-width:560px; padding:0 24px; }
/* ring: rotational symmetry around the centered text —
   circle TL↔circle BR · tall BL↔tall TR · wide top-L↔wide bottom-R */
.co-1 { width:210px;height:210px;border-radius:50%;left:5%;top:9%; }
.co-2 { width:150px;height:220px;left:15%;bottom:8%; }
.co-3 { width:200px;height:150px;left:29%;top:5%; }
.co-4 { width:150px;height:200px;right:29%;bottom:6%; }
.co-5 { width:280px;height:210px;right:5%;top:9%; }
.co-6 { width:140px;height:140px;border-radius:50%;right:15%;bottom:10%; }
@media(max-width:900px){
  .collage { min-height:600px; padding:40px 0; }
  /* four corners, scaled down — text stays clear in the middle */
  .co-1 { width:118px;height:118px;left:4%;top:5%; }
  .co-5 { width:150px;height:118px;right:4%;top:5%; }
  .co-2 { width:108px;height:150px;left:6%;bottom:6%; }
  .co-4 { width:108px;height:140px;right:6%;bottom:6%; }
  .co-3,.co-6 { display:none; }
  .collage .co .name-chip { padding:5px 10px; font-size:11.5px; bottom:6px; left:6px; max-width:calc(100% - 12px); overflow:hidden; text-overflow:ellipsis; }
}

/* ---------- C05 faq-wide — left title + full-width rows ---------- */
.faq-wide .faq { max-width:none; }
.faq-wide .acc-head { font-size:22px; padding:30px 0; }
.faq-wide .acc-head span:last-child { width:52px; height:52px; }
.faq-wide .acc-head span:last-child::after { width:21px; height:21px; }
.faq-wide .acc-panel p { max-width:680px; }
.faq-wide .acc-panel a { color:var(--blue); }

/* ---------- C06 tool-grid — /tools 2-col cards ---------- */
.tool-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.tool-card { background:#F5F5F3; border-radius:18px; padding:14px 14px 26px; display:flex; flex-direction:column; transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s; }
.tool-card:hover { transform:translateY(-4px); box-shadow:var(--sh-card); }
.tool-card .t-img { border-radius:12px; overflow:hidden; margin-bottom:22px; }
.tool-card .t-img img { width:100%; display:block; aspect-ratio:16/9.2; object-fit:cover; }
.tool-card h2, .tool-card h3, .tool-card p { padding:0 16px; }
.tool-card h3 { font-family:var(--f-display); font-size:22px; font-weight:400; color:#000; margin-bottom:8px; letter-spacing:-.01em; }
.tool-card p { font-size:15px; color:var(--body); line-height:1.5; }
.tool-card .t-foot { margin-top:auto; padding:20px 16px 0; border-top:none; position:relative; }
.tool-card .t-foot::before { content:''; position:absolute; top:0; left:16px; right:16px; border-top:1px solid rgba(0,0,0,.12); }
.tool-card .t-foot { display:flex; justify-content:space-between; align-items:center; }
.tool-card .t-foot a { font-size:15px; color:#000; text-decoration:underline; text-underline-offset:4px; }
.tool-card .t-foot .arr { width:46px; height:46px; flex-shrink:0; border:1.5px solid #000; border-radius:50%; color:#000; transition:background .3s,color .3s,border-color .3s; }
.tool-card .t-foot .arr::after { width:19px; height:19px; -webkit-mask:var(--arr-diag) center/contain no-repeat; mask:var(--arr-diag) center/contain no-repeat; }
.tool-card:hover .t-foot .arr { background:#000; color:#fff; }
.tool-card:hover .t-foot .arr::after { transform:translate(2px,-2px); }
@media(max-width:860px){ .tool-grid{grid-template-columns:1fr} }

/* ---------- C07 ind-cards — 3 lavender cards w/ link clouds ---------- */
.ind-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.ind-card { background:#EDE9FB; border-radius:20px; padding:36px; display:flex; flex-direction:column; min-height:340px; }
.ind-card h3 { font-family:var(--f-display); font-weight:400; font-size:24px; color:#000; margin-bottom:12px; letter-spacing:-.01em; }
.ind-card>p { font-size:15px; color:rgba(0,0,0,.62); line-height:1.55; }
.ind-card .tagcloud { margin-top:auto; padding-top:24px; border-top:1px solid rgba(0,0,0,.1); display:flex; flex-wrap:wrap; gap:10px 18px; }
.ind-card .tagcloud a { font-size:14px; font-weight:500; color:#000; text-decoration:underline; text-underline-offset:3px; transition:color .4s; }
.ind-card .tagcloud a:hover { color:var(--blue); }
@media(max-width:860px){ .ind-grid{grid-template-columns:1fr} .ind-card{min-height:0} }

/* ---------- C08 steps-split — big title left, numbered steps right ---------- */
.steps-split { display:grid; grid-template-columns:1fr 1.2fr; gap:64px; align-items:start; }
.steps-split .ss-list { counter-reset:ss; }
.steps-split .ss-item { display:grid; grid-template-columns:52px 1fr; gap:20px; padding:26px 0; border-bottom:1px solid var(--hairline); }
.steps-split .ss-item:first-child { padding-top:6px; }
.steps-split .ss-n { font-family:var(--f-display); font-size:19px; color:#000; font-weight:400; }
.steps-split .ss-n::after { content:'.'; }
.steps-split h4 { font-size:19px; font-weight:400; color:#000; margin-bottom:8px; }
.steps-split p { font-size:15px; color:var(--body); line-height:1.55; }
@media(max-width:860px){ .steps-split{grid-template-columns:1fr;gap:32px} }

/* ---------- C09 stats-strip — big proof numbers ---------- */
.stats-strip { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; text-align:left; }
.stats-strip .st b { display:block; font-family:var(--f-display); font-weight:400; font-size:56px; letter-spacing:-.02em; color:#000; }
.stats-strip .st span { font-size:15px; color:var(--body); }
.stats-strip .st { padding-left:24px; border-left:2px solid var(--hairline); }
@media(max-width:860px){ .stats-strip{grid-template-columns:1fr 1fr} .stats-strip .st b{font-size:36px} }
@media(max-width:480px){ .stats-strip{grid-template-columns:1fr} .stats-strip .st b{font-size:32px} }

/* ---------- C10 support-band — 24/7 help row ---------- */
.support-band { display:flex; justify-content:space-between; align-items:center; gap:40px; background:linear-gradient(90deg,#EFF5FE,#F4F0FF); border-radius:24px; padding:48px 56px; }
.support-band h3 { font-family:var(--f-display); font-weight:400; font-size:28px; color:#000; letter-spacing:-.01em; margin-bottom:8px; }
.support-band p { font-size:15px; color:var(--body); max-width:520px; }
@media(max-width:860px){ .support-band{flex-direction:column;align-items:flex-start;padding:32px} }

/* ---------- C11 feat-rows — alternating image+text ---------- */
.feat-rows .f-row { display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; padding:56px 0; }
.feat-rows .f-row:nth-child(even) .f-img { order:2; }
.feat-rows .f-img { border-radius:20px; overflow:hidden; box-shadow:var(--sh-card); }
.feat-rows .f-img img { width:100%; display:block; }
.feat-rows h3 { font-family:var(--f-display); font-weight:400; font-size:34px; letter-spacing:-.02em; color:#000; margin-bottom:14px; }
.feat-rows p { font-size:16px; color:var(--body); line-height:1.6; margin-bottom:20px; }
.fl-link2 { font-size:15px; font-weight:500; color:#000; text-decoration:underline; text-underline-offset:4px; }
.fl-link2:hover { color:var(--blue); }
@media(max-width:860px){ .feat-rows .f-row{grid-template-columns:1fr;gap:28px;padding:40px 0} .feat-rows .f-row:nth-child(even) .f-img{order:0} }

/* ---------- C12 tmpl-gallery — template screenshot cards ---------- */
.tmpl-row { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.tmpl { border-radius:18px; overflow:hidden; background:#fff; border:1px solid var(--hairline); transition:transform .3s,box-shadow .3s; }
.tmpl:hover { transform:translateY(-4px); box-shadow:var(--sh-card); }
.tmpl img { width:100%; display:block; aspect-ratio:4/3.4; object-fit:cover; object-position:top; }
.tmpl .t-meta { padding:16px 20px; display:flex; justify-content:space-between; align-items:center; }
.tmpl .t-meta b { font-size:15px; font-weight:500; }
.tmpl .t-meta span { font-size:13px; color:var(--annot); }
@media(max-width:860px){ .tmpl-row{grid-template-columns:1fr} }

/* ---------- C13 domain-band — search CTA band ---------- */
.domain-band { background:linear-gradient(120deg,#0C3A81,#166AEA 60%,#508FEF); border-radius:24px; padding:64px 56px; display:flex; justify-content:space-between; align-items:center; gap:40px; }
.domain-band h3 { font-family:var(--f-display); font-weight:400; font-size:32px; color:#fff; letter-spacing:-.02em; max-width:480px; }
.domain-band .d-search { display:flex; background:#fff; border-radius:999px; padding:6px; min-width:420px; }
.domain-band .d-search input { flex:1; border:none; outline:none; padding:10px 20px; font-size:15px; font-family:inherit; border-radius:999px; }
.domain-band .d-search .btn { border-radius:999px; }
@media(max-width:860px){ .domain-band{flex-direction:column;padding:36px;align-items:flex-start} .domain-band .d-search{min-width:0;width:100%} }

/* ---------- C14 guide-grid — article cards ---------- */
.guide-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.guide { border-radius:18px; overflow:hidden; background:#fff; border:1px solid var(--hairline); transition:transform .3s,box-shadow .3s; }
.guide:hover { transform:translateY(-4px); box-shadow:var(--sh-card); }
.guide img { width:100%; display:block; aspect-ratio:16/10; object-fit:cover; }
.guide .g-meta { padding:20px 22px 24px; }
.guide .g-tag { font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--blue); display:block; margin-bottom:10px; }
.guide h2, .guide h4 { font-size:18px; font-weight:400; color:#000; line-height:1.35; margin-bottom:8px; }
.guide p { font-size:14px; color:var(--body); }
@media(max-width:860px){ .guide-grid{grid-template-columns:1fr} }

/* ---------- C15 testi-wall — big quote + face ---------- */
.testi-wall { text-align:center; }
.testi-wall blockquote { font-family:var(--f-display); font-weight:400; font-size:38px; letter-spacing:-.02em; line-height:1.25; color:#000; max-width:820px; margin:0 auto 32px; }
.testi-wall .t-who { display:flex; align-items:center; justify-content:center; gap:14px; }
.testi-wall .t-who img { width:52px;height:52px;border-radius:50%;object-fit:cover; }
.testi-wall .t-who b { font-size:15px; display:block; }
.testi-wall .t-who span { font-size:13px; color:var(--annot); }

/* ---------- C16 crumb + hero-solid ---------- */
.crumb { font-size:14px; color:var(--body); margin-bottom:36px; }
.crumb a { color:var(--body); text-decoration:none; }
.crumb a:hover { color:var(--blue); }
.crumb span { margin:0 8px; color:var(--annot); }
.hero-solid { position:relative; overflow:hidden;
  background:radial-gradient(ellipse 75% 55% at 50% 0%,rgba(255,255,255,.55) 0%,rgba(255,255,255,0) 60%),radial-gradient(ellipse 45% 40% at 12% 90%,rgba(139,181,245,.45) 0%,rgba(139,181,245,0) 70%),radial-gradient(ellipse 45% 40% at 88% 85%,rgba(255,205,230,.4) 0%,rgba(255,205,230,0) 70%),#A9CDFA; }
.hero-solid .hero { padding:96px 0 0; }
/* generic browser chrome — used by .hero-band, .deck-card, any framed mock */
.frame-bar { height:26px; display:flex; align-items:center; gap:6px; padding:0 12px; background:#fff; border-bottom:1px solid var(--hairline); }
.frame-bar i { width:7px; height:7px; border-radius:50%; background:var(--hairline); }
.frame-bar.sm { height:20px; padding:0 10px; }
.frame-bar.sm i { width:5px; height:5px; }
/* floating chips can overlay a solid hero too */
.hero-solid .hero-stage .chip-float { z-index:3; }

/* ================================================================
   v3 SHARED LAYER — site header/nav, section-head, feature list,
   stepper, scroll rail, marquee, cta-full, faq, footer.
   (moved out of page-home.html so every page shares them)
   ================================================================ */
.site-head{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.9);backdrop-filter:blur(14px);border-bottom:1px solid transparent;transition:border-color .3s}
.site-head.scrolled{border-color:var(--hairline)}
.pagenav{max-width:var(--navw,var(--maxw));margin:0 auto;height:72px;padding:0 var(--gutter);display:flex;align-items:center;justify-content:space-between}
.pagenav picture{display:flex;align-items:center}
.pagenav .brandlogo{height:30px;width:auto}
.pagenav .cta{display:flex;gap:8px;align-items:center}
.plinks{display:flex;align-items:center}
.plinks>a,.plinks>.navitem>button{font-size:16px;color:#000;text-decoration:none;padding:8px 12px;background:none;border:none;font-family:inherit;cursor:pointer;transition:color .4s}
.plinks>a{display:inline-block}
.plinks>.navitem>button{display:inline-flex;align-items:center;gap:5px}
/* hover → weight 700; the invisible bold ::after reserves the wider width so
   neighbours don't shift (data-label mirrors the link text) */
.plinks>a[data-label]::after{content:attr(data-label);display:block;height:0;visibility:hidden;overflow:hidden;font-weight:700;pointer-events:none}
.plinks a:hover,.navitem>button:hover{color:var(--blue);font-weight:700}
.navitem{position:relative}
.navitem>button .chev{transition:transform .25s;font-size:10px}
.navitem.open>button .chev{transform:rotate(180deg)}
.megamenu{position:absolute;left:50%;transform:translateX(-50%) translateY(8px);top:56px;width:min(880px,94vw);background:#fff;border:1px solid var(--hairline);border-radius:20px;box-shadow:0 24px 60px rgba(12,58,129,.12);padding:28px;display:grid;grid-template-columns:1.2fr 1.2fr .9fr;gap:28px;opacity:0;visibility:hidden;transition:opacity .2s,transform .2s,visibility .2s;z-index:60}
.navitem.open .megamenu,.navitem:hover .megamenu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.megacol h4{font-family:var(--f-display);font-size:13px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--annot);margin-bottom:12px}
.megacol a{display:block;padding:8px 0;color:#000;text-decoration:none;font-size:15px;transition:color .4s}
.megacol a:hover{color:var(--blue)}
.megacol a span{display:block;font-size:12.5px;color:var(--body);margin-top:2px}
.megafeat{background:linear-gradient(135deg,#0C3A81,#166AEA);border-radius:16px;padding:20px;color:#fff;display:flex;flex-direction:column;justify-content:flex-end;min-height:180px}
.megafeat b{font-family:var(--f-display);font-weight:500;font-size:17px;display:block;margin-bottom:6px}
.megafeat p{font-size:13px;color:rgba(255,255,255,.8)}
.burger{display:none;background:none;border:1px solid var(--hairline);border-radius:10px;width:44px;height:44px;cursor:pointer;align-items:center;justify-content:center;flex-direction:column;gap:5px}
.burger i{display:block;width:18px;height:2px;background:#000;transition:.25s}
.burger.open i:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger.open i:nth-child(2){opacity:0}
.burger.open i:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobilepanel{display:none;border-top:1px solid var(--hairline);background:#fff;padding:12px max(var(--gutter),calc((100% - var(--navw,var(--maxw)))/2 + var(--gutter))) var(--gutter)}
.mobilepanel.open{display:block}
.mobilepanel a{display:block;padding:14px 0;font-size:17px;color:#000;text-decoration:none;border-bottom:1px solid var(--hairline)}
/* single primary CTA — one action, no wrap, shrinks gracefully on phones */
.pagenav .cta .btn{white-space:nowrap}
@media(max-width:480px){.pagenav .cta .btn{font-size:12.5px;padding:8px 16px}}
@media(max-width:860px){.plinks{display:none}.burger{display:flex}.megamenu{display:none}.pagenav .cta .btn-secondary{display:none}.pagenav .brandlogo{height:32px}}
/* nav-slim — narrow-column pages (funnels/forms): header rides the page's own
   content column via --navw on .site-head; the links row can't fit inside a
   narrow column so it collapses to the burger at every width */
.pagenav.nav-slim{background:none;backdrop-filter:none}
.pagenav.nav-slim .plinks{display:none}
.pagenav.nav-slim .burger{display:flex;margin-left:10px}
.pagenav.nav-slim .cta{margin-left:auto}

/* no-JS navigation — the burger toggle lives in om.js; without it the control
   is dead, so no-JS swaps the dead button for an always-open panel. Covers
   both collapse cases: ≤860px (all pages) and .nav-slim (every width). */
html:not(.js) .burger{display:none!important}
html:not(.js) .pagenav.nav-slim~.mobilepanel{display:block}
@media(max-width:860px){html:not(.js) .mobilepanel{display:block}}

/* suggestion chips (hero helper) */
.hero .suggest{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:44px}
.suggest-label{width:100%;font-size:13px;color:var(--annot);margin-bottom:2px}

/* section head — label+title+intro LEFT, CTA pill RIGHT */
section.blk-sec{padding:96px 0}
.sec-label{font-size:13px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--annot);margin-bottom:16px}
.sec-head{display:flex;justify-content:space-between;align-items:flex-end;gap:40px;margin-bottom:56px}
.sec-head .t-intro{max-width:520px;margin-top:16px}
.sec-head.center{display:block;text-align:center}
.sec-head.center .t-intro{margin:16px auto 0}

/* scroll-driven feature: sticky media LEFT, auto-advancing list RIGHT */
.feat-split{display:grid;grid-template-columns:1.05fr 1fr;gap:72px;align-items:start}
.feat-media{position:sticky;top:100px;border-radius:20px;overflow:hidden;box-shadow:var(--sh-card)}
.feat-media img{width:100%;display:block;transition:opacity .35s}
.feat-list{list-style:none}
.feat-list li{border-bottom:1px solid var(--hairline);padding:44px 0;cursor:pointer;position:relative}
.feat-list li .fl-title{font-family:var(--f-display);font-size:48px;font-weight:400;letter-spacing:-0.02em;line-height:1.1;color:var(--annot);transition:color .3s;display:flex;align-items:baseline;gap:18px}
.feat-list li .fl-num{font-size:13px;font-family:monospace;color:var(--annot)}
.feat-list li .fl-arrow{position:absolute;right:4px;top:46px;width:52px;height:52px;border:1.5px solid #000;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#000;opacity:0;transform:translate(-6px,6px);transition:.3s;font-size:0}
.feat-list li .fl-arrow::after{content:'';width:20px;height:20px;background:currentColor;-webkit-mask:var(--arr-diag) center/contain no-repeat;mask:var(--arr-diag) center/contain no-repeat}
.feat-list li.on .fl-title{color:#000}
.feat-list li.on .fl-num{color:var(--blue)}
.feat-list li.on .fl-arrow{opacity:1;transform:none;color:#000}
.feat-list .fl-sub{font-size:15px;line-height:1.55;color:var(--body);max-height:0;overflow:hidden;transition:max-height .4s cubic-bezier(.22,1,.36,1),margin .3s;max-width:440px}
.feat-list li.on .fl-sub{max-height:110px;margin-top:10px}
.feat-list .fl-link{display:block;margin-top:10px;font-size:14px;color:#000;text-decoration:underline;text-underline-offset:4px;opacity:0;transition:opacity .3s}
.feat-list li.on .fl-link{opacity:1}

/* stats band */
.stat-band{background:linear-gradient(180deg,#fff,#EFF5FE 50%,#fff)}
.stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;text-align:center}
.stat-grid .count{font-size:64px}
.stat-grid p{margin-top:8px;font-size:15px}

/* stepper — segmented progress */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.step{padding:28px 4px 28px 0;cursor:pointer;position:relative}
.step .track{display:block;height:2px;background:var(--hairline);margin-bottom:20px;position:relative;overflow:hidden}
.step .bar{position:absolute;inset:0;width:0;background:var(--blue)}
.step.done .bar{width:100%;transition:none}
.step.on .bar{width:100%;transition:width 4.2s linear}
.step::before{content:attr(data-n);font-family:monospace;font-size:13px;color:var(--annot);display:block;margin-bottom:14px;transition:color .3s}
.step.on::before,.step.done::before{color:var(--blue)}
.step h3{font-family:var(--f-display);font-weight:500;font-size:22px;color:var(--annot);margin-bottom:8px;letter-spacing:-0.01em;transition:color .3s}
.step.on h3,.step.done h3{color:#000}
.step p{font-size:15px;color:var(--body);line-height:1.55}

/* gradient cards — gradient moves on hover */
.card.card-g-ice,.card.card-g-blue,.card.card-g-lavender{background-size:170% 170%;transition:opacity .5s ease var(--d,0ms),transform .5s cubic-bezier(.22,1,.36,1) var(--d,0ms),background-position .7s cubic-bezier(.22,1,.36,1),box-shadow .3s ease}
.card.card-g-ice:hover{background-position:90% 60%}
.card.card-g-blue:hover{background-position:85% 70%}
.card.card-g-lavender:hover{background-position:80% 90%}

/* scroll-driven horizontal rail — sticky, translateX by scroll progress */
.rail-sec{height:280vh;position:relative}
.rail-sticky{position:sticky;top:0;height:100vh;display:flex;flex-direction:column;justify-content:center;overflow:hidden;padding-top:24px}
.rail-sticky>.wrap{width:100%}
.rail-track{display:flex;gap:24px;padding:0 var(--gutter);will-change:transform}
.rail-card{flex:0 0 420px}
.rail-card .rc-img{border-radius:20px;overflow:hidden;box-shadow:var(--sh-card)}
.rail-card img{width:100%;height:300px;object-fit:cover;display:block;transition:transform .6s cubic-bezier(.22,1,.36,1)}
.rail-card:hover img{transform:scale(1.04)}
.rail-card h3{font-family:var(--f-display);font-weight:500;font-size:20px;color:#000;margin:16px 0 6px;letter-spacing:-0.01em}
.rail-card p{font-size:14.5px;color:var(--body);line-height:1.5}

/* centered faq variant */
.faq{max-width:720px;margin:0 auto}
.faq-wide .faq{max-width:none}

/* FULL-BLEED end CTA */
.cta-full{position:relative;padding:150px var(--gutter) 170px;text-align:center;overflow:hidden;
background:radial-gradient(circle at 30% 55%,rgba(185,210,249,.85) 0%,18%,rgba(185,210,249,0) 45%),radial-gradient(circle at 68% 40%,rgba(209,230,209,.9) 0%,20%,rgba(209,230,209,0) 48%),radial-gradient(circle at 55% 75%,rgba(139,181,245,.5) 0%,15%,rgba(139,181,245,0) 40%),#fff}
.cta-full::after{content:'';position:absolute;inset:0;background:linear-gradient(#fff 0%,rgba(255,255,255,0) 22%,rgba(255,255,255,0) 60%,#fff 96%);pointer-events:none}
.cta-full>*{position:relative;z-index:1}
.cta-full .d-hero{font-size:82px}

/* footer */
footer{border-top:1px solid var(--hairline);padding:64px 0 40px}
.fgrid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:32px}
.fgrid .f-col{font-size:13px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:var(--annot);margin-bottom:12px}
.fgrid a{display:block;padding:5px 0;color:var(--body);text-decoration:none;font-size:14px;transition:color .4s}
.fgrid a:hover{color:var(--blue)}
.fbase{display:flex;justify-content:space-between;align-items:center;margin-top:56px;padding-top:24px;border-top:1px solid var(--hairline);font-size:13px;color:var(--annot)}

@media (prefers-reduced-motion: reduce){.feat-media img{transition:none}.step.on .bar{transition:none!important}.rail-track{transition:none}.flow-field .orb{animation:none}.prompt-chip{animation:none!important;opacity:1!important}.rail2{animation:none!important}}
@media(max-width:860px){.d-hero{font-size:44px}.d-section{font-size:34px}.d-feature{font-size:34px}.cta-full .d-hero{font-size:42px}.testi-wall blockquote{font-size:27px}.feat-rows h3{font-size:26px}.domain-band h3{font-size:26px}.acc-head{font-size:19px;padding:18px 0}.faq-wide .acc-head{font-size:20px;padding:22px 0}.faq-wide .acc-head span:last-child{width:44px;height:44px}.feat-split{grid-template-columns:1fr;gap:40px}.feat-media{position:static}.fgrid{grid-template-columns:1fr 1fr}.hero{padding:64px 0 0}.stat-grid,.steps{grid-template-columns:1fr}.stat-grid .count{font-size:44px}.feat-list li .fl-title{font-size:30px}.sec-head{flex-direction:column;align-items:center;gap:20px;text-align:center}.rail-sec{height:auto}.rail-sticky{position:static;height:auto}.rail-track{overflow-x:auto;padding-bottom:16px}.flow-field .prompt-chip{display:none}.flow-field{padding:72px 24px}.flow-field .d-hero{font-size:40px}.d-lg{font-size:44px}.d-md{font-size:40px}.collage .d-hero{font-size:44px}}

/* ============================================================
   v5 — wix.com research round 2 (2026-09-15)
   C17 scale-panel   — /website/design "Scale your business":
                       light-blue section + giant color panel whose
                       slides auto-cycle; panel bg follows slide hue.
   C18 search-hero   — /domains hero: display + gradient-placeholder
                       search pill + fanned browser-mock deck.
   C18b bento        — /domains "Millions register": pastel cards.
   C19 creator-rail  — /domains auto-scrolling testimonial cards.
   C20 prompt-hero   — /wixel hero: AI console card + suggestion
                       chips + scattered tilted asset cards.
   ============================================================ */

/* ---------- C17 scale-panel — auto-cycling colored feature panel ---------- */
.scale-sec { background:#D9E8F8; padding:96px 0; }
.scale-sec .sec-head .d-section { max-width:520px; }
.scale-panel { position:relative; border-radius:28px; overflow:hidden; min-height:520px; color:#fff; background:#01529B; transition:background-color .8s cubic-bezier(.22,1,.36,1); }
.scale-slide { position:absolute; inset:0; display:grid; grid-template-columns:1fr 1.15fr; gap:48px; align-items:center; padding:56px 64px 96px; opacity:0; visibility:hidden; transition:opacity .6s cubic-bezier(.22,1,.36,1),visibility .6s; pointer-events:none; }
.scale-slide.on { opacity:1; visibility:visible; pointer-events:auto; }
.scale-slide h3 { font-family:var(--f-display); font-weight:400; font-size:34px; letter-spacing:-.02em; line-height:1.15; margin-bottom:16px; }
.scale-slide p { font-size:16px; line-height:1.55; color:rgba(255,255,255,.82); max-width:420px; }
.scale-visual { position:relative; min-height:340px; height:100%; }
.scale-visual>img { position:absolute; right:0; top:50%; transform:translateY(-50%); width:min(86%,430px); border-radius:18px; box-shadow:0 30px 70px rgba(0,0,0,.28); display:block; }
.scale-visual .pill-tag { position:absolute; left:6%; top:16%; display:inline-flex; align-items:center; gap:8px; background:#fff; color:#000; font-size:13.5px; font-weight:500; padding:10px 18px; border-radius:999px; box-shadow:0 14px 34px rgba(0,0,0,.22); animation:om-bob 5.5s ease-in-out infinite; }
.scale-visual .pill-tag i { font-style:normal; width:18px; height:18px; border-radius:50%; background:linear-gradient(135deg,#166AEA,#8BB5F5); display:flex; align-items:center; justify-content:center; color:#fff; font-size:10px; }
.scale-foot { position:absolute; left:64px; bottom:36px; z-index:6; display:flex; align-items:center; gap:20px; }
.scale-dots { display:flex; gap:10px; }
.scale-dots button { width:10px; height:10px; padding:0; border:none; border-radius:50%; background:rgba(255,255,255,.35); cursor:pointer; transition:.3s; }
.scale-dots button.on { background:#fff; transform:scale(1.3); }
.scale-dots button:hover { background:rgba(255,255,255,.7); }
.scale-pause { width:40px; height:40px; border-radius:50%; border:1.5px solid rgba(255,255,255,.55); background:transparent; color:#fff; cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:12px; transition:.3s; }
.scale-pause:hover { border-color:#fff; background:rgba(255,255,255,.12); }
@media(max-width:860px){
  .scale-sec{padding:64px 0}
  .scale-panel{min-height:0;padding-bottom:0}
  .scale-slide{position:relative;grid-template-columns:1fr;gap:24px;padding:36px 28px 72px;opacity:1;visibility:visible;pointer-events:auto;display:none}
  .scale-slide.on{display:grid}
  .scale-slide h3{font-size:26px}
  .scale-visual{min-height:220px}
  .scale-visual>img{width:100%;position:static;transform:none}
  .scale-visual .pill-tag{top:6%}
  .scale-foot{left:28px;bottom:22px}
}

/* ---------- C18 search-hero — display + gradient-placeholder pill + fanned deck ---------- */
.search-hero { position:relative; overflow:hidden; padding:104px 0 0; text-align:center;
  background:radial-gradient(ellipse 55% 45% at 18% 55%,rgba(196,181,250,.5) 0%,rgba(196,181,250,0) 70%),radial-gradient(ellipse 50% 42% at 82% 60%,rgba(165,224,190,.5) 0%,rgba(165,224,190,0) 70%),radial-gradient(ellipse 60% 50% at 50% 100%,rgba(139,181,245,.4) 0%,rgba(139,181,245,0) 70%),#fff; }
.search-pill { max-width:660px; margin:44px auto 0; display:flex; align-items:center; gap:8px; background:#fff; border:1px solid var(--hairline); border-radius:999px; padding:8px 8px 8px 30px; box-shadow:0 20px 50px rgba(12,58,129,.14); position:relative; z-index:3; }
.search-pill input { flex:1; min-width:0; border:none; outline:none; font-family:var(--f-display); font-size:19px; padding:12px 0; color:#000; background:transparent; }
.search-pill input::placeholder { background:linear-gradient(90deg,#166AEA 0%,#A855F7 55%,#34C9A3 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent; }
.search-pill .btn { padding:13px 28px; font-size:16px; flex-shrink:0; }
.deck { position:relative; max-width:1300px; margin:76px auto 0; display:flex; justify-content:center; align-items:flex-end; }
.deck-card { flex:0 1 270px; min-width:0; margin:0 -14px; border-radius:16px; overflow:hidden; background:#fff; box-shadow:0 24px 60px rgba(12,58,129,.16); transition:transform .55s cubic-bezier(.22,1,.36,1); }
.deck-card img { width:100%; display:block; aspect-ratio:4/4.4; object-fit:cover; object-position:top; }
.deck-card:nth-child(1) { transform:rotate(-10deg) translateY(10%); z-index:1; }
.deck-card:nth-child(2) { transform:rotate(-5deg) translateY(3%); z-index:2; }
.deck-card:nth-child(3) { transform:none; z-index:3; flex-basis:330px; }
.deck-card:nth-child(4) { transform:rotate(5deg) translateY(3%); z-index:2; }
.deck-card:nth-child(5) { transform:rotate(10deg) translateY(10%); z-index:1; }
.deck-card:hover { transform:rotate(0deg) translateY(-2%); z-index:6; }
/* trust strip — "Our customers rate us ★★★★★" row under the deck */
.trust-strip { position:relative; z-index:4; display:flex; align-items:center; justify-content:center; gap:10px; flex-wrap:wrap; margin:36px auto 0; padding-bottom:64px; font-size:14px; color:var(--body); }
.trust-strip .badge { display:inline-flex; align-items:center; gap:7px; background:#fff; border:1px solid var(--hairline); border-radius:999px; padding:6px 14px; font-size:13px; font-weight:600; color:#000; box-shadow:var(--sh-chip); }
.trust-strip .badge .stars { color:#F5A623; letter-spacing:1px; font-size:12px; }
@media(max-width:860px){
  .search-hero{padding:72px 0 0}
  .search-pill{margin:36px 20px 0;padding-left:22px}
  .search-pill input{font-size:16px}
  .deck{flex-wrap:wrap;justify-content:center;gap:14px;padding:0 20px;margin-top:56px}
  .deck-card{flex:0 0 42%;margin:0}
  .deck-card:nth-child(3){flex-basis:56%;order:-1}
  .deck-card:nth-child(1),.deck-card:nth-child(2){transform:rotate(-4deg)}
  .deck-card:nth-child(4),.deck-card:nth-child(5){transform:rotate(4deg)}
}

/* ---------- C18b bento — pastel feature cards (title top, visual bottom) ---------- */
.bento { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.bento-card { border-radius:18px; padding:28px 26px; min-height:380px; display:flex; flex-direction:column; }
.bento-card h3 { font-family:var(--f-display); font-weight:500; font-size:21px; letter-spacing:-.01em; color:#000; margin-bottom:12px; }
.bento-card p { font-size:14px; line-height:1.55; color:rgba(0,0,0,.62); }
.bento-card .b-img { margin-top:auto; padding-top:24px; border-radius:12px; overflow:hidden; }
.bento-card .b-img img { width:100%; display:block; border-radius:12px; }
.bento-card .b-img .b-chip { display:block; background:#fff; border-radius:12px; padding:26px 20px; text-align:center; box-shadow:var(--sh-chip); }
.card-g-navy { background:linear-gradient(160deg,#2B4C9B 0%,#1A3376 100%); border:none; color:#fff; }
.card-g-navy h3, .card-g-navy p { color:#fff; }
.card-g-navy p { color:rgba(255,255,255,.75); }
@media(max-width:860px){ .bento{grid-template-columns:1fr 1fr} .bento-card{min-height:300px;padding:22px} }
@media(max-width:560px){ .bento{grid-template-columns:1fr} }

/* ---------- C19 creator-rail — auto-scrolling testimonial cards ---------- */
.creator-sec { background:#DCE9FC; padding:96px 0; overflow:hidden; }
.creator-rail { overflow:hidden; }
.creator-rail .rail2 { --spd:60s; }
.cr-card { flex:0 0 600px; background:#fff; border-radius:20px; padding:28px; display:grid; grid-template-columns:1fr 228px; gap:30px; box-shadow:0 10px 30px rgba(12,58,129,.06); }
.cr-card .cr-txt { display:flex; flex-direction:column; }
.dom-chip { display:inline-flex; align-items:center; gap:8px; align-self:flex-start; padding:7px 15px; border-radius:999px; font-size:13px; font-weight:500; color:#000; margin-bottom:18px; }
.dom-chip::before { content:''; width:13px; height:13px; border-radius:50%; border:1.6px solid currentColor; opacity:.7; }
.dom-chip::after { content:'↗'; font-size:12px; opacity:.8; }
.dc-lav { background:#EDE9FB; } .dc-grn { background:#DFF5C9; } .dc-ylw { background:#FCE9B8; } .dc-blu { background:#DCE9FC; }
.cr-card blockquote { font-size:14.5px; line-height:1.6; color:#222; margin:0; }
.cr-card .cr-who { margin-top:auto; padding-top:18px; font-size:13.5px; color:var(--body); }
.cr-card .cr-who b { font-weight:600; color:#000; }
.cr-card .cr-who .sep { margin:0 8px; color:var(--muted); }
.cr-card img { width:100%; height:100%; min-height:220px; object-fit:cover; border-radius:12px; display:block; }
@media(max-width:860px){ .creator-sec{padding:64px 0} .cr-card{flex-basis:84vw;grid-template-columns:1fr;padding:22px} .cr-card img{min-height:200px;max-height:240px} }

/* ---------- C20 prompt-hero — AI console + suggestion chips + scattered deck ---------- */
.prompt-hero { position:relative; overflow:hidden; padding:96px 0 0; text-align:center;
  background:radial-gradient(ellipse 70% 55% at 50% 105%,rgba(185,210,249,.55) 0%,rgba(185,210,249,0) 70%),radial-gradient(ellipse 40% 30% at 85% 20%,rgba(209,230,209,.5) 0%,rgba(209,230,209,0) 70%),linear-gradient(#EFF4FB,#F7F8FA); }
.prompt-card { max-width:850px; margin:44px auto 0; background:#fff; border-radius:22px; box-shadow:0 24px 70px rgba(12,58,129,.13); padding:14px 14px 22px; text-align:left; position:relative; z-index:3; }
.prompt-top { display:flex; gap:18px; align-items:flex-start; padding:12px 14px 20px; }
.prompt-input { flex:1; min-height:64px; font-family:var(--f-text); font-size:17px; color:#000; border:none; outline:none; resize:none; background:transparent; line-height:1.4; }
.prompt-input::placeholder { color:#34A853; }
.prompt-ideas { padding:0 14px; }
.prompt-ideas>p { font-size:14px; color:var(--body); margin-bottom:12px; }
.p-chips { display:flex; gap:10px; flex-wrap:wrap; }
.p-chip { display:inline-flex; align-items:center; gap:9px; padding:11px 17px; border:1px solid var(--hairline); border-radius:999px; background:#fff; font-size:14px; color:#000; font-family:inherit; cursor:pointer; transition:border-color .3s,box-shadow .3s; }
.p-chip i { font-style:normal; font-size:13px; opacity:.65; }
.p-chip:hover { border-color:var(--blue); box-shadow:var(--sh-chip); }
.scatter { position:relative; max-width:1280px; margin:64px auto 0; height:430px; }
.sc-card { position:absolute; width:225px; border-radius:16px; overflow:hidden; background:#fff; box-shadow:0 20px 50px rgba(12,58,129,.16); transition:transform .5s cubic-bezier(.22,1,.36,1); }
.sc-card img { width:100%; display:block; aspect-ratio:3/3.7; object-fit:cover; }
.sc-card .sc-tag { position:absolute; top:10px; left:10px; background:var(--blue); color:#fff; font-size:11.5px; font-weight:500; padding:5px 12px; border-radius:8px; display:flex; gap:6px; align-items:center; }
.sc-card:hover { transform:rotate(0deg) scale(1.05)!important; z-index:6; }
@media(max-width:860px){
  .prompt-hero{padding:72px 0 0}
  .prompt-card{margin:36px 20px 0}
  .prompt-top{flex-direction:column;gap:12px}
  .prompt-card .btn{width:100%}
  .scatter{height:auto;display:flex;gap:14px;overflow-x:auto;padding:8px 20px 28px;margin-top:48px}
  .sc-card{position:static!important;transform:none!important;flex:0 0 62vw}
}

@media (prefers-reduced-motion: reduce){
  .stage-sweep{display:none}
  .scale-panel{transition:none}
  .scale-slide{transition:opacity .2s}
  .scale-visual .pill-tag{animation:none}
  .deck-card,.sc-card{transition:none}
}

/* ============================================================
   v6 — homepage v2 components (wix.com benchmark 2026-09-19)
   C01b hero-stage-v3  — slide film-strip contained INSIDE the
                         browser frame; aurora crossfades behind
                         it; scan-bot overlay traverses the frame
   C25  pain-map       — their words → the desk's fix, connected
   C26  steps-media    — stepper steps as media cards
   stat-band-v2        — smaller, centred, high-contrast stats
   ============================================================ */

/* ---------- C01b hero-stage-v3 ---------- */
.hero-v2-head { text-align: center; max-width: 820px; }
.hero-v2-title { font-size: clamp(40px, 5.8vw, 68px); line-height: 1.14; }
.hero-v2-title span { display: block; }
.hero-stage-v3 { position: relative; max-width: 860px; margin: 52px auto 0; }
.hero-stage-v3 .stage-aurora { inset: -24% -16%; }
.stage-frame3 { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--sh-glow); background: #fff; z-index: 3; }
.stage-frame3 .film { display: flex; transition: transform .85s cubic-bezier(.22,1,.36,1); }
.stage-frame3 .film img { flex: 0 0 100%; width: 100%; aspect-ratio: 16/9.4; object-fit: cover; display: block; }
.stage-dots { position: absolute; left: 16px; bottom: 16px; z-index: 5; display: flex; gap: 8px; }
.stage-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.55); box-shadow: 0 1px 4px rgba(0,0,0,.28); transition: .3s; }
.stage-dots i.on { background: #fff; transform: scale(1.3); }
/* frame-sweep — the bright sweep lives INSIDE the frame only (clipped by
   overflow:hidden), tinted to the active slide's theme while the section
   aurora crossfades to the same theme — the wix.com two-change sync. JS sets
   data-theme on the stage ([data-stage] or [data-stage3]) and retriggers
   the sweep each slide via .sweeping. */
.frame-sweep { position: absolute; top: -12%; bottom: -12%; left: -32%; width: 42%; z-index: 4; pointer-events: none; opacity: 0; transform: skewX(-12deg); }
.sweeping .frame-sweep { animation: stage-sweep .95s cubic-bezier(.5,.05,.2,1); }
[data-theme="sky"]      .frame-sweep { background: linear-gradient(90deg, transparent, rgba(139,181,245,.55) 45%, rgba(219,235,255,.85) 50%, rgba(139,181,245,.55) 55%, transparent); }
[data-theme="mint"]     .frame-sweep { background: linear-gradient(90deg, transparent, rgba(126,211,165,.55) 45%, rgba(224,248,234,.85) 50%, rgba(126,211,165,.55) 55%, transparent); }
[data-theme="lavender"] .frame-sweep { background: linear-gradient(90deg, transparent, rgba(196,181,250,.58) 45%, rgba(238,232,255,.88) 50%, rgba(196,181,250,.58) 55%, transparent); }
[data-theme="peach"]    .frame-sweep { background: linear-gradient(90deg, transparent, rgba(255,196,150,.58) 45%, rgba(255,240,224,.88) 50%, rgba(255,196,150,.58) 55%, transparent); }
[data-theme="rose"]     .frame-sweep { background: linear-gradient(90deg, transparent, rgba(255,158,199,.55) 45%, rgba(255,228,240,.85) 50%, rgba(255,158,199,.55) 55%, transparent); }
[data-theme="sand"]     .frame-sweep { background: linear-gradient(90deg, transparent, rgba(245,217,139,.58) 45%, rgba(252,244,214,.88) 50%, rgba(245,217,139,.58) 55%, transparent); }
/* stage-floats — per-slide floating work chips around the frame edges, in the
   stage margin like wix's floating cards. .fset per slide, synced .on; chips
   drift out/in with the sweep so every slide owns its own flanks. */
.stage-floats { position: absolute; inset: -8px calc(40px - (50vw - 50%)); z-index: 5; pointer-events: none; }
.fset { position: absolute; inset: 0; opacity: 0; transition: opacity .5s cubic-bezier(.22,1,.36,1); }
.fset.on { opacity: 1; }
.fchip { position: absolute; left: var(--x); top: var(--y); display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.95); border: 1px solid rgba(255,255,255,.85); border-radius: 14px; padding: 10px 16px; font-size: 13px; font-weight: 600; color: #0B1B33; box-shadow: 0 14px 36px rgba(12,58,129,.16); white-space: nowrap; opacity: 0; transform: translateY(10px) scale(.94); transition: opacity .5s cubic-bezier(.22,1,.36,1), transform .5s cubic-bezier(.22,1,.36,1); }
.fchip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.fchip small { font-weight: 400; color: var(--annot); font-size: 11.5px; }
.fset.on .fchip { opacity: 1; transform: translateY(0) scale(1); }
.fset.on .fchip:nth-child(2) { transition-delay: 90ms; }
.fset.on .fchip:nth-child(3) { transition-delay: 180ms; }
.fset:not(.on) .fchip { transform: translateY(-14px) scale(.94); transition-duration: .3s; }
.fchip.pop { animation: fchip-idle 4.6s ease-in-out infinite; }
.fchip.pop:nth-child(2) { animation-delay: -1.6s; }
.fchip.pop:nth-child(3) { animation-delay: -3.1s; }
@keyframes fchip-idle { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-7px) } }
/* frame-ui — per-slide DOM overlays INSIDE the center frame (v6+): slides are
   photo-only webps; the label chip + work card render as real HTML so text is
   crisp, selectable and localisable. .fui sets toggle with the slide index. */
.frame-veil { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(to top, rgba(11,27,51,.42) 0%, rgba(11,27,51,0) 46%); }
.frame-ui { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.fui { position: absolute; inset: 0; opacity: 0; transition: opacity .45s cubic-bezier(.22,1,.36,1); }
.fui.on { opacity: 1; }
.frame-chip { position: absolute; top: 12px; left: 14px; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.94); border-radius: 999px; padding: 7px 14px; font-size: 12.5px; font-weight: 600; color: #0B1B33; box-shadow: var(--sh-chip); }
.frame-chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.frame-card { position: absolute; bottom: 10%; width: min(340px, 52%); background: #fff; border-radius: 14px; box-shadow: var(--sh-card); padding: 10px 14px; }
.fui.fl .frame-card { left: 14px; }
.fui.fr .frame-card { right: 14px; }
.frow { display: flex; align-items: center; gap: 9px; padding: 6px 0; }
.frow + .frow { border-top: 1px solid var(--hairline); }
.fav { position: relative; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12.5px; font-weight: 700; flex-shrink: 0; }
.fav i { position: absolute; right: -1px; bottom: -1px; width: 9px; height: 9px; border-radius: 50%; border: 2px solid #fff; }
.fav.b { background: #EFF5FE; color: var(--blue); } .fav.b i { background: var(--blue); }
.fav.g { background: #E8F7F0; color: #0B7A55; } .fav.g i { background: #0E9F6E; }
.fav.n { background: #F1F5F9; color: #5E5E5E; } .fav.n i { background: #6E6E76; }
.frow .ft { flex: 1; min-width: 0; }
.frow .ft b { display: block; font-size: 12.5px; font-weight: 600; color: #0B1B33; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.frow .ft span { display: block; font-size: 11px; color: var(--annot); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fpill { flex-shrink: 0; font-size: 10.5px; font-weight: 600; padding: 4px 9px; border-radius: 999px; }
.fpill.b { background: var(--blue); color: #fff; }
.fpill.g { background: #E8F7F0; color: #0B7A55; }
.fpill.bo { background: #EFF5FE; color: var(--blue); }
.fpill.n { background: #F1F5F9; color: #5E5E5E; }
@media (max-width: 860px) { .frame-card { display: none; } }
/* scan-bot — soft beam sweeps the frame on an 8.5s loop; ticks pop where it
   "checks". Decorative only: aria-hidden, pointer-events none, dies under
   reduced-motion and on mobile. */
.scan-bot { position: absolute; top: 0; bottom: 0; left: -110px; width: 100px; z-index: 4; pointer-events: none; animation: scan-x 8.5s cubic-bezier(.5,.05,.35,.95) infinite; }
.scan-bot .beam { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(139,181,245,.10) 25%, rgba(139,181,245,.30) 50%, rgba(139,181,245,.10) 75%, transparent 100%); }
.scan-bot .beam::after { content: ''; position: absolute; top: 0; bottom: 0; right: 16px; width: 2px; background: linear-gradient(180deg, transparent 4%, rgba(22,106,234,.55) 50%, transparent 96%); }
.scan-bot .bot-chip { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.9); border-radius: 999px; padding: 4px 11px; font-size: 10.5px; font-weight: 600; color: var(--blue); box-shadow: var(--sh-chip); white-space: nowrap; }
.scan-bot .bot-chip::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: radial-gradient(circle at 32% 28%, #fff, #BFD8FF 34%, #166AEA 68%, #0C3A81); animation: orb-breathe 1.6s ease-in-out infinite; }
@keyframes scan-x { 0% { left: -110px } 60% { left: calc(100% + 10px) } 100% { left: calc(100% + 10px) } }
.scan-tick { position: absolute; z-index: 4; width: 22px; height: 22px; border-radius: 50%; background: #fff; box-shadow: var(--sh-chip); color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; opacity: 0; pointer-events: none; animation: tick-pop 8.5s ease infinite; }
@keyframes tick-pop { 0%, 2% { opacity: 0; transform: scale(.4) } 6% { opacity: 1; transform: scale(1.15) } 9% { transform: scale(1) } 15% { opacity: 1 } 21%, 100% { opacity: 0; transform: scale(1) } }
@media (max-width: 860px) {
  .hero-stage-v3 { margin-top: 40px; }
  .hero-stage-v3 .stage-aurora { inset: -16% -10%; }
  .scan-bot, .scan-tick, .stage-floats, .frame-sweep { display: none; }
}

/* ---------- C25b pain-rail — C19 creator-rail as the pain→fix section ----------
   auto-scrolling white cards on the light-blue field: pastel dom-chip = the
   pain lane, quote in their words, .cr-fix = the desk's answer, photo right. */
.pain-rail .cr-card { flex-basis: 640px; }
/* quote → fix as two visual beats: the fix is a resolved-state chip (green
   wash = done/resolved, matching the status-green discipline), not a footnote */
.pain-rail .cr-fix { margin-top: 14px; padding: 12px 14px; background: rgba(14,159,110,.08); border: 1px solid rgba(14,159,110,.18); border-radius: 12px; font-size: 13.5px; font-weight: 500; line-height: 1.5; color: var(--ink); display: flex; gap: 10px; align-items: flex-start; }
.pain-rail .cr-fix b { color: #0B7A55; font-weight: 600; white-space: nowrap; }
.pain-rail .cr-fix .arr { flex-shrink: 0; margin-top: 3px; }
@media (max-width: 860px) { .pain-rail .cr-card { flex-basis: 86vw; } }

/* trade cards — Wix field-tint surfaces (guideline combos), photo bleeds top */
.trade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trade-card { border-radius: 20px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; border: none; transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s; }
.trade-card:hover { transform: translateY(-6px); box-shadow: var(--sh-glow); }
.trade-card .card-img { aspect-ratio: 16/9; }
.tf-lav { background: var(--lav); }
.tf-peach { background: var(--peach); }
.tf-powder { background: var(--powder); }
.trade-card h3, .trade-card p, .trade-card .svc-link { padding-inline: 26px; }
.trade-card h3 { padding-top: 22px; }
.trade-card p { margin-top: 8px; }
.trade-card .svc-link { margin-top: auto; padding-block: 18px 24px; }
@media (max-width: 860px) { .trade-grid { grid-template-columns: 1fr; } }

/* ---------- C25 pain-map — their words → the desk's fix ---------- */
.pain-map { display: flex; flex-direction: column; gap: 30px; max-width: 1020px; margin: 0 auto; }
.pain-pair { display: grid; grid-template-columns: 1fr 72px 1.15fr; align-items: stretch; }
.pain-card { background: var(--peach); border-radius: 18px; padding: 30px 30px 24px; position: relative; }
.pain-card::before { content: '“'; position: absolute; top: 4px; left: 16px; font-family: var(--f-display); font-size: 64px; line-height: 1; color: var(--orange); opacity: .55; }
.pain-card blockquote { font-family: var(--f-display); font-size: 21px; line-height: 1.35; letter-spacing: -.01em; color: #000; position: relative; }
.pain-card figcaption { margin-top: 16px; font-size: 13px; color: var(--annot); display: flex; align-items: center; gap: 8px; }
.pain-card figcaption::before { content: ''; width: 20px; height: 2px; background: var(--orange); flex-shrink: 0; }
.fix-arrow { display: flex; align-items: center; justify-content: center; position: relative; }
.fix-arrow::before { content: ''; position: absolute; left: 8px; right: 8px; top: 50%; border-top: 2px dashed #C9C9C9; }
.fix-arrow i { position: relative; z-index: 1; width: 42px; height: 42px; border-radius: 50%; background: #fff; border: 1.5px solid var(--hairline); display: flex; align-items: center; justify-content: center; color: var(--blue); font-style: normal; transition: .3s; }
.fix-arrow i::after { content: ''; width: 16px; height: 11px; background: currentColor; -webkit-mask: var(--arr-mask) center/contain no-repeat; mask: var(--arr-mask) center/contain no-repeat; }
.pain-pair:hover .fix-arrow i { border-color: var(--blue); transform: translateX(3px); }
.fix-card { background: #fff; border: 1px solid var(--hairline); border-radius: 18px; padding: 28px 30px; box-shadow: var(--sh-card); display: flex; flex-direction: column; }
.fix-tag { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.fix-body { font-size: 15.5px; line-height: 1.55; color: var(--body); }
.fix-card .svc-link { margin-top: auto; padding-top: 14px; font-size: 14px; font-weight: 500; color: var(--blue); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 860px) {
  .pain-pair { grid-template-columns: 1fr; }
  .fix-arrow { padding: 12px 0; }
  .fix-arrow::before { top: 8px; bottom: 8px; left: 50%; right: auto; border-top: none; border-left: 2px dashed #C9C9C9; }
  .fix-arrow i::after { transform: rotate(90deg); }
  .pain-pair:hover .fix-arrow i { transform: translateY(2px); }
  .pain-card blockquote { font-size: 18px; }
}

/* ---------- C26 steps-media — stepper steps as media cards ---------- */
.steps-media { gap: 20px; }
.steps-media .step { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--hairline); border-radius: 18px; padding: 0 0 22px; transition: border-color .3s, box-shadow .3s; overflow: hidden; }
.steps-media .step.on { border-color: #B9D2F9; box-shadow: var(--sh-chip); }
.steps-media .step::before { order: 1; margin: 18px 22px 12px; }
.steps-media .step .track { order: 2; margin: 0 22px 16px; }
.steps-media .step h3, .steps-media .step p { order: 3; padding: 0 22px; }
.steps-media .step .svc-link { order: 4; margin: 14px 22px 0; align-self: flex-start; }
.steps-media .step-img { order: 0; margin: 0; border-bottom: 1px solid var(--hairline); }
.steps-media .step-img img { width: 100%; display: block; aspect-ratio: 16/8.6; object-fit: cover; object-position: center 30%; }

/* ---------- stat-band-v2 — smaller, centred, high-contrast ---------- */
.stat-band-v2 .count, .stat-band-v2 .count-static { font-size: 46px; }
.stat-band-v2 .stat-grid { max-width: 1080px; margin: 0 auto; }
.stat-band-v2 .stat-grid .t-body { max-width: 300px; margin-inline: auto; }
.stat-src { text-align: center; margin-top: 40px; }
@media (max-width: 860px) { .stat-band-v2 .count, .stat-band-v2 .count-static { font-size: 38px; } }

/* ---------- stat-big — wix.com/about "NUMBERS & FIGURES": giant light display
   numerals (~120px, weight 400, black), small suffix, short label under;
   hairline-topped editorial grid, left-aligned ---------- */
.stat-big { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.stat-big .s { border-top: 1px solid var(--hairline); padding-top: 28px; }
.stat-big .s b { display: block; font-family: var(--f-display); font-weight: 400; font-size: clamp(64px, 7.5vw, 116px); line-height: .95; letter-spacing: -.03em; color: #000; }
.stat-big .s b small { font-size: .38em; font-weight: 400; letter-spacing: 0; margin-left: 4px; }
.stat-big .s p { margin-top: 16px; font-size: 15.5px; line-height: 1.55; color: var(--body); max-width: 32ch; }
@media (max-width: 860px) { .stat-big { grid-template-columns: 1fr; gap: 34px; } .stat-big .s b { font-size: 56px; } }

/* ---------- v6 — sectional rhythm ----------
   Wix-scale breathing between blocks. */
.v6-gap   { padding: clamp(88px, 8.5vw, 124px) 0; }
.v6-gap-t { padding-top: clamp(88px, 8.5vw, 124px); }
.v6-gap-b { padding-bottom: clamp(88px, 8.5vw, 124px); }
@media (max-width: 860px) { .v6-gap, .v6-gap-t { padding-top: 72px; } .v6-gap, .v6-gap-b { padding-bottom: 72px; } }

/* ---------- v2 tool cards — honest instrument vignettes (C24) ---------- */
.tool-viz svg text { font-family: var(--f-text); }

@media (prefers-reduced-motion: reduce) {
  .scan-bot, .scan-tick, .frame-sweep { display: none; }
  .stage-frame3 .film { transition: none; }
  .stage-frame img.fading, .stage-peek img.fading { transition: none; }
}

/* print — JS-gated reveals and nav chrome must not blank the page */
@media print {
  .reveal,.rise,[data-reveal]{opacity:1!important;transform:none!important;transition:none!important}
  .pagenav,.mobilepanel,.burger,.megamenu{display:none!important}
  .hero-stage-v2,.stage-peek,.stage-deco,.chip-float{display:none!important}
  a{color:#000!important;text-decoration:underline}
}
