/*
 * Page builder — shared base stylesheet (.pb-*).
 *
 * Port of BASE_CSS from the CMS's PageBuilderRenderer.php, adapted to the
 * site's design tokens (site.css): fonts inherit, brand blue via
 * var(--color-primary), dark via var(--ink), greys via var(--surface-*) and
 * var(--border), .pb-button shaped like .btn (36px, 4px radius). Icons are the
 * site's inline SVG sprite wrapped in .pb-ic (sized by font-size, like the
 * dashicons of the original). Every class name of the original is kept.
 *
 * Cascade contract: a widget's explicit typography/colour is emitted by the
 * renderer as `.pb-elt-<id> .pb-heading{...}` (specificity 0,2,0) in a <style>
 * placed AFTER this sheet. Every base rule here therefore stays at or below
 * (0,1,1) — e.g. `h1.pb-heading`, `:where(...) .pb-text` — so the explicit
 * settings always win. The only (0,3,0) rules are the mobile grid collapses,
 * for which the renderer emits no per-device value at all.
 *
 * Type scale = site.css, on the 13.5px root: 1rem body · 1.14rem card title
 * (.feat-card h3, .pillar h3) · 1.43–1.71rem sub-section title (.shelf__head
 * h2, .mp-h2) · clamp(1.85rem,3.2vw,2.7rem) section title (.section-head h2)
 * · clamp(2.4rem,5vw,3.86rem) page title (.hero__title, .page-hero h1) ·
 * clamp(1.07rem,1.5vw,1.29rem) lead (.hero__lead, .section-head p).
 *
 * The same file is copied to service/frontend/public/builder/builder.css for
 * the editor canvas: keep the two identical.
 */
.pb-root{width:100%;font-family:inherit;color:inherit;line-height:1.6}
.pb-root *,.pb-root *::before,.pb-root *::after{box-sizing:border-box}
.pb-root img{max-width:100%;height:auto}
.pb-ic{display:inline-flex;align-items:center;justify-content:center;width:1em;height:1em;line-height:1;flex:none;vertical-align:middle}
.pb-ic .icon{width:1em;height:1em;flex:none}
.pb-ic-glyph{font-weight:600;font-size:1.25em;line-height:1}
.pb-placeholder{background:var(--surface-2);color:var(--muted);border-radius:var(--r-md);font-size:1rem}
/* = .btn (site.css): 36px, 4px radius, 1px border, 500, 13.5px text at every size. EVERY button atom of
   the builder shares this box, so a page that mixes a Button, a Card and a Pricing card shows one button
   shape and not three; each atom's own rule further down adds only what distinguishes it (colours, full
   width…). Kept at (0,1,0) like the rest of the sheet, so a widget's own settings still win. */
.pb-button,.pb-card-btn,.pb-cta-btn,.pb-price-btn,.pb-slide-btn,.pb-flip-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;height:36px;padding:0 16px;border-radius:4px;border:1px solid transparent;font-family:inherit;font-weight:500;font-size:1rem;line-height:1.5rem;white-space:nowrap;text-decoration:none;cursor:pointer;user-select:none;-webkit-user-select:none}
/* = .btn--primary: brand ground, colour transitions on var(--ease) only. */
.pb-button{background:var(--color-primary);color:#fff;transition:background-color .15s var(--ease),color .15s var(--ease),border-color .15s var(--ease),box-shadow .15s var(--ease)}
.pb-button:hover{background:var(--color-primary-hover);color:#fff}
.pb-button:focus-visible{outline:none;box-shadow:0 0 0 1px #fff,0 0 0 3px var(--color-primary)}
.pb-button.pb-btn-sm{height:32px;padding:0 12px;gap:6px}
.pb-button.pb-btn-md{height:36px;padding:0 16px}
.pb-button.pb-btn-lg{height:44px;padding:0 20px}
.pb-section{width:100%}
.pb-section-inner{display:flex;flex-wrap:wrap;margin:0 auto}
/* Same box as the site's .container: --container (1440px) and its gutter; a page may still narrow it through --content-width. */
.pb-section.pb-boxed>.pb-section-inner{max-width:var(--content-width,var(--container,1440px));padding-inline:clamp(24px,4vw,64px)}
.pb-section.pb-full>.pb-section-inner{max-width:100%}
.pb-column{display:flex;flex-direction:column;min-width:0}
/* A wrapping ROW of full-width widgets: behaves like a column, but adjacent button widgets
   (width:auto below) share a line, as in the site's .hero__actions. */
.pb-column-inner{width:100%;flex:1 1 auto;display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start;justify-content:flex-start;align-items:flex-end}
/* Stacked blocks: 16px on the site's 8px rhythm (.section-head h2 → p is 14px, .hero__lead → actions 22–32px); 24px on phones,
   where the coded grids (.pillars, .feat-grid) keep 32px rows between stacked items. */
.pb-widget{width:100%;margin-bottom:16px}
.pb-widget:last-child{margin-bottom:0}
/* Two widgets side by side inside one column. `.pb-column-inner` is already a
   wrapping flex row; only the default width:100% keeps widgets stacked. Used
   where the coded view puts two blocks in a 1fr 1fr grid (marketplace charts). */
.pb-widget.pb-w-half{width:calc(50% - 12px)}
@media(max-width:767px){.pb-widget.pb-w-half{width:100%}}
/* Adjacent button widgets sit on one line (hero pairs), like the legacy .hero__actions row. */
.pb-widget-button:has(+.pb-widget-button),.pb-widget-button+.pb-widget-button{width:auto;margin-right:12px;margin-bottom:12px}
.pb-widget-button+.pb-widget-button:last-child{margin-right:0;margin-bottom:0}
/* Gutter between side-by-side columns (none on the first, so section edges stay aligned). */
.pb-column+.pb-column>.pb-column-inner{padding-left:clamp(24px,3vw,40px)}
.pb-img{max-width:100%;height:auto;display:inline-block}
/* Heading widget — fluid scale per tag, taken from site.css (see header). Base = the site's h1–h4 reset;
   `h1.pb-heading` is (0,1,1) so a widget's own typography (0,2,0) still wins. h3 sits between the site's
   two sub-section sizes (1.43rem .shelf__head h2 / 1.71rem .mp-h2); h4 is the card title (1.14rem). */
.pb-heading{font-family:var(--font-head);font-weight:500;letter-spacing:-.0125em;line-height:1.2;overflow-wrap:break-word}
h1.pb-heading{font-size:clamp(2.4rem,5vw,3.86rem);font-weight:700;letter-spacing:-.02em;line-height:1.12}
h2.pb-heading{font-size:clamp(1.85rem,3.2vw,2.7rem)}
h3.pb-heading{font-size:clamp(1.43rem,2vw,1.71rem)}
h4.pb-heading{font-size:1.14rem}
h5.pb-heading,h6.pb-heading{font-size:1rem}
/* Text widget — the site's paragraph (1rem/1.6, .doc-body spacing for lists and stacked paragraphs). */
.pb-text{font-size:1rem;line-height:1.6}
.pb-text>*+*{margin-top:1em}
.pb-text ul,.pb-text ol{padding-left:22px}
.pb-text li+li{margin-top:.4em}
.pb-text a{color:var(--color-primary);font-weight:500}
.pb-text a:hover{text-decoration:underline}
.pb-text strong{font-weight:600}
/* A text right after an h1/h2 heading is the site's lead (.hero__lead, .section-head p): fluid, muted.
   :where() keeps it at (0,1,0), under any explicit size/colour of the widget. */
:where(.pb-widget-heading:has(>h1,>h2)+.pb-widget-text) .pb-text{font-size:clamp(1.07rem,1.5vw,1.29rem);color:var(--muted)}
.pb-icon-list{list-style:none;margin:0;padding:0}
.pb-icon-list li{display:flex;align-items:center;gap:.6em;margin-bottom:.5em}
.pb-gallery{display:grid;gap:10px}
.pb-accordion-item{border:1px solid var(--border);margin-bottom:-1px}
.pb-accordion-head{margin:0;padding:14px 18px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-weight:500;font-size:1.14rem;background:var(--surface-1)}
/* A folded panel is hidden from the keyboard and from assistive tech too (visibility, not just a zero
   box) — a link inside a closed panel used to keep its place in the tab order, sending the focus into a
   0px-high area. `visibility` is transitioned so it only flips at the END of the closing animation.
   The open panel is capped by its own content, never by a pixel value: a wysiwyg answer may run to
   20 000 characters, and the old max-height:1000px silently cut the rest off with no way to scroll.
   `interpolate-size` is what lets the browsers that support it still animate 0 → max-content; the
   others simply open without the animation, which is what a keyword max-height degrades to. */
.pb-accordion-body{padding:0 18px;max-height:0;overflow:hidden;visibility:hidden;interpolate-size:allow-keywords;transition:max-height .25s ease,padding .25s ease,visibility .25s ease}
.pb-accordion-item.pb-open .pb-accordion-body{max-height:max-content;padding:14px 18px;visibility:visible}
.pb-tabs-nav{display:flex;flex-wrap:wrap;list-style:none;margin:0;padding:0;border-bottom:1px solid var(--border)}
/* = .kb-tab (core Tabs, underline variant): 1rem/500 muted, active primary with a 3px indicator. */
.pb-tabs-nav li{padding:8px 16px 11px;cursor:pointer;font-weight:500;color:var(--muted);border-bottom:3px solid transparent;margin-bottom:-1px;transition:background .15s var(--ease),color .15s}
.pb-tabs-nav li:hover{background:var(--surface-2)}
.pb-tabs-nav li.pb-active{color:var(--color-primary);border-bottom-color:currentColor;font-weight:500}
.pb-tabs-panel{display:none;padding:18px 0}
.pb-tabs-panel.pb-active{display:block}
.pb-testimonial{text-align:center}
.pb-testimonial-img img{width:80px;height:80px;border-radius:50%;object-fit:cover}
.pb-video{position:relative;width:100%}
.pb-video video,.pb-video iframe{width:100%;display:block;border:0}
/* = .doc-callout: hairline neutral border, the tinted surface carries the severity, body text stays ink. */
.pb-alert{display:flex;gap:.7em;padding:12px 16px;border-radius:8px;border:1px solid var(--border);align-items:flex-start;color:var(--ink-2)}
.pb-alert-icon{flex:0 0 auto;font-size:20px;width:20px;height:20px;margin-top:1px}
.pb-alert-title{font-weight:500;color:var(--ink);margin-bottom:2px}
.pb-alert-info{background:var(--color-primary-light)}
.pb-alert-success{background:var(--success-light)}
.pb-alert-warning{background:var(--warning-light)}
.pb-alert-danger{background:var(--danger-light)}
.pb-counter-row{display:inline-flex;align-items:baseline;font-size:2.29rem;font-weight:500;letter-spacing:-.0125em;line-height:1;color:var(--color-primary)}
.pb-counter-title{margin-top:8px;font-size:1rem;color:var(--muted)}
.pb-progress-label{display:flex;justify-content:space-between;margin-bottom:6px;font-weight:500;font-size:1rem}
.pb-progress-track{background:var(--surface-3);border-radius:20px;overflow:hidden;height:16px}
.pb-progress-bar{height:100%;background:var(--color-primary);width:0;border-radius:20px;transition:width 1.1s cubic-bezier(.2,.7,.3,1)}
.pb-imagebox-img{margin-bottom:12px}
.pb-imagebox-img img{display:inline-block;max-width:100%;height:auto}
.pb-imagebox-title{margin:0 0 4px;font-size:1.14rem;font-weight:500}
.pb-imagebox a{text-decoration:none;color:inherit}
.pb-iconbox-stacked .pb-iconbox-iconwrap{margin-bottom:14px}
.pb-iconbox-left,.pb-iconbox-right{display:flex;gap:16px;align-items:flex-start;text-align:left}
.pb-iconbox-right{flex-direction:row-reverse}
.pb-iconbox-iconwrap{line-height:1;flex:0 0 auto}
.pb-iconbox-icon{font-size:24px;color:var(--color-primary);display:inline-block}
.pb-iconbox-title{margin:0 0 4px;font-size:1.14rem;font-weight:500}
.pb-iconbox a{text-decoration:none;color:inherit}
.pb-starrating .pb-stars{position:relative;display:inline-block;white-space:nowrap;color:var(--border);line-height:1;font-size:24px}
.pb-starrating .pb-stars .pb-ic{font-size:inherit;width:1em;height:1em}
.pb-starrating .pb-stars-fill{position:absolute;top:0;left:0;overflow:hidden;color:#f5b840}
.pb-blockquote{margin:0;font-size:1.14rem;line-height:1.6}
.pb-blockquote-text{font-style:italic}
.pb-blockquote-author{display:block;margin-top:12px;font-style:normal;font-weight:500;font-size:1rem;color:var(--muted)}
.pb-blockquote-mark{font-size:52px;line-height:0;font-weight:700;display:inline-block;margin-bottom:-12px;color:var(--color-primary)}
.pb-social{display:flex;flex-wrap:wrap;gap:10px}
.pb-social-link{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;background:var(--color-primary);color:#fff;text-decoration:none;transition:transform .15s,opacity .15s}
.pb-social-link:hover{transform:translateY(-2px);opacity:.9}
.pb-social-link .pb-ic{font-size:20px;width:20px;height:20px}
.pb-social-square .pb-social-link{border-radius:4px}
.pb-social-rounded .pb-social-link{border-radius:var(--r-md)}
.pb-social-circle .pb-social-link{border-radius:50%}
.pb-price{position:relative;border:1px solid var(--border);border-radius:var(--r-lg);padding:30px 26px;text-align:center;background:var(--surface-0);overflow:hidden}
.pb-price-featured{box-shadow:0 14px 40px rgba(26,115,232,.15)}
.pb-price-plan{font-weight:700;text-transform:uppercase;letter-spacing:.5px;font-size:14px;color:var(--color-primary)}
.pb-price-amount{font-size:46px;font-weight:800;margin:10px 0 4px;line-height:1}
.pb-price-currency{font-size:24px;vertical-align:super;margin-right:2px}
.pb-price-period{font-size:15px;font-weight:500;color:var(--muted);margin-left:4px}
.pb-price-list{list-style:none;margin:18px 0 24px;padding:0;text-align:left;display:inline-block}
.pb-price-feat{display:flex;align-items:center;gap:9px;margin-bottom:10px}
.pb-price-feat .pb-ic{color:var(--color-primary)}
/* Full width is the pricing card's own trait; the shape comes from the shared atom above. */
.pb-price-btn{width:100%;transition:opacity .15s}
.pb-price-btn:hover{opacity:.88}
.pb-price-ribbon{position:absolute;top:16px;right:-32px;background:var(--color-primary);color:#fff;transform:rotate(45deg);padding:4px 38px;font-size:11px;font-weight:700;text-transform:uppercase}
.pb-price-tagline{color:var(--muted);margin:6px 0 0;font-size:15px;line-height:1.5}
.pb-price--tier .pb-price-plan{font-size:20px;text-transform:none;letter-spacing:0}
.pb-price--tier .pb-price-list{margin-top:22px}
.pb-team-photo{width:140px;max-width:100%;margin:0 auto 16px;overflow:hidden;display:inline-block}
.pb-team-photo img{width:100%;height:100%;object-fit:cover;display:block}
.pb-team-circle{border-radius:50%;aspect-ratio:1}
.pb-team-rounded{border-radius:var(--r-xl);aspect-ratio:1}
/* "Square" is a real crop, not the absence of one: without aspect-ratio the frame keeps the
   picture's own ratio and the option renders exactly like no option at all. */
.pb-team-square{border-radius:0;aspect-ratio:1}
.pb-team-name{margin:0 0 4px;font-size:1.14rem;font-weight:500}
.pb-team-role{font-weight:500;color:var(--color-primary);font-size:1rem}
.pb-team-bio{margin:12px 0 14px;color:var(--muted)}
.pb-team-socials{display:flex;gap:12px;justify-content:center}
.pb-team-socials a{color:var(--muted);text-decoration:none}
.pb-team-socials a:hover{color:var(--color-primary)}
.pb-timeline{position:relative;padding-left:34px}
.pb-timeline::before{content:"";position:absolute;left:9px;top:6px;bottom:6px;width:2px;background:var(--color-primary);opacity:.35}
.pb-tl-item{position:relative;padding-bottom:26px}
.pb-tl-item:last-child{padding-bottom:0}
.pb-tl-dot{position:absolute;left:-30px;top:3px;width:14px;height:14px;border-radius:50%;background:var(--color-primary);box-shadow:0 0 0 4px #fff}
.pb-tl-date{font-size:.86rem;font-weight:600;color:var(--color-primary)}
.pb-tl-title{margin:3px 0 6px;font-size:1.14rem;font-weight:500}
.pb-tl-text{color:var(--muted)}
.pb-flip{perspective:1200px;height:280px}
.pb-flip-inner{position:relative;width:100%;height:100%;transition:transform .6s;transform-style:preserve-3d}
/* :focus-within turns the card when the keyboard reaches the back's link — without it the focus landed
   on a face the reader cannot see. Hiding that face instead would take its link off the keyboard
   altogether, since nothing on the front can flip the card without a pointer. */
.pb-flip:hover .pb-flip-inner,.pb-flip:focus-within .pb-flip-inner,.pb-flip.pb-flipped .pb-flip-inner{transform:rotateY(180deg)}
.pb-flip-front,.pb-flip-back{position:absolute;inset:0;backface-visibility:hidden;-webkit-backface-visibility:hidden;border-radius:var(--r-lg);display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:24px}
.pb-flip-back{transform:rotateY(180deg)}
.pb-flip-icon{font-size:46px;width:46px;height:46px;margin-bottom:12px}
.pb-flip h3{margin:0 0 8px}
.pb-flip-btn{margin-top:14px;border-color:currentColor;color:inherit}
.pb-table-wrap{overflow-x:auto}
.pb-table{width:100%;border-collapse:collapse;font-size:1rem}
.pb-table th,.pb-table td{padding:11px 14px;text-align:left;border-bottom:1px solid var(--border)}
.pb-table thead th{background:var(--surface-1);color:var(--muted);font-weight:500}
.pb-table-striped tbody tr:nth-child(even){background:var(--surface-1)}
.pb-carousel{position:relative;height:360px;overflow:hidden;border-radius:var(--r-md)}
.pb-carousel-slide{position:absolute;inset:0;opacity:0;transition:opacity .5s}
.pb-carousel-slide.pb-active{opacity:1}
.pb-carousel-slide img{width:100%;height:100%;object-fit:cover;display:block}
.pb-carousel-arrow{position:absolute;top:50%;transform:translateY(-50%);width:42px;height:42px;border:none;background:rgba(0,0,0,.4);color:#fff;font-size:26px;line-height:1;border-radius:50%;cursor:pointer;z-index:2}
.pb-carousel-arrow:hover{background:rgba(0,0,0,.6)}
.pb-carousel-prev{left:12px}.pb-carousel-next{right:12px}
.pb-carousel-dots{position:absolute;bottom:12px;left:0;right:0;display:flex;gap:8px;justify-content:center;z-index:2}
.pb-carousel-dot{width:10px;height:10px;border-radius:50%;border:none;background:rgba(255,255,255,.55);cursor:pointer;padding:0}
.pb-carousel-dot.pb-active{background:#fff}
.pb-toggle-item{border:1px solid var(--border);border-radius:var(--r-md);margin-bottom:8px;overflow:hidden}
.pb-toggle-head{width:100%;display:flex;justify-content:space-between;align-items:center;gap:10px;padding:14px 16px;background:var(--surface-0);border:none;cursor:pointer;font-weight:500;font-size:1.14rem;text-align:left;color:inherit}
.pb-toggle-icon{transition:transform .25s;flex:0 0 auto}
.pb-toggle-item.pb-open .pb-toggle-icon{transform:rotate(45deg)}
/* Same contract as .pb-accordion-body above: content-sized when open, out of the tab order when folded. */
.pb-toggle-body{max-height:0;overflow:hidden;visibility:hidden;interpolate-size:allow-keywords;transition:max-height .25s ease,visibility .25s ease;padding:0 16px}
.pb-toggle-item.pb-open .pb-toggle-body{max-height:max-content;padding:0 16px 14px;visibility:visible}
.pb-cta{position:relative;border-radius:var(--r-lg);overflow:hidden;padding:clamp(40px,5vw,64px) clamp(20px,4vw,36px);background:var(--color-primary)}
.pb-cta-inner{position:relative;z-index:1}
.pb-cta-title{margin:0 0 12px;font-size:clamp(1.85rem,3.2vw,2.7rem);font-weight:500;letter-spacing:-.0125em;line-height:1.2;color:#fff}
.pb-cta-desc{margin:0 0 28px;font-size:1.14rem;line-height:1.6;color:var(--color-primary-tint)}
.pb-cta-btn{background:#fff;color:var(--color-primary);transition:opacity .15s var(--ease)}
.pb-cta-btn:hover{opacity:.9}
.pb-cta-btn2{margin-left:14px}
.pb-cta-btn2-outline{background:transparent;border-color:rgba(255,255,255,.45);color:#fff}
.pb-countdown{display:flex;gap:14px;flex-wrap:wrap}
.pb-cd-box{display:flex;flex-direction:column;align-items:center;gap:6px}
.pb-cd-num{display:flex;align-items:center;justify-content:center;min-width:74px;padding:14px 8px;border-radius:var(--r-lg);background:var(--color-primary-tint);font-size:34px;font-weight:800;font-variant-numeric:tabular-nums}
.pb-cd-label{font-size:12px;text-transform:uppercase;letter-spacing:.5px;color:var(--muted)}
.pb-cd-expired{font-size:22px;font-weight:700}
.pb-ah{margin:0;font-size:clamp(1.85rem,3.2vw,2.7rem);font-weight:500;letter-spacing:-.0125em;line-height:1.2}
.pb-ah-words{color:var(--color-primary);display:inline-block;transition:opacity .25s,transform .25s}
.pb-ah-words.pb-ah-out{opacity:0;transform:translateY(-10px)}
.pb-anchor{display:block;position:relative;top:-80px;visibility:hidden;height:0}
.pb-btn-full{display:flex;width:100%;justify-content:center}
.pb-slides .pb-carousel-slide{display:flex;align-items:center;justify-content:center;text-align:center;padding:30px;opacity:0}
.pb-slides .pb-carousel-slide.pb-active{opacity:1}
.pb-slide-inner{max-width:680px}
.pb-slide-title{margin:0 0 12px;font-size:clamp(1.85rem,3.2vw,2.7rem);font-weight:500}
.pb-slide-sub{margin:0 0 18px;font-size:1.14rem;opacity:.92}
.pb-slide-btn{background:#fff;color:var(--ink)}
.pb-carousel.pb-tcar{height:240px;background:var(--surface-1);border:1px solid var(--border)}
.pb-tcar-slide{display:flex;align-items:center;justify-content:center;text-align:center;padding:24px}
.pb-tcar-inner{max-width:640px}
.pb-tcar-mark{font-size:50px;line-height:0;font-weight:700;color:var(--color-primary)}
.pb-tcar-text{font-size:1.14rem;font-style:italic;margin:10px 0 16px}
.pb-tcar-name{font-weight:700;color:var(--color-primary)}
.pb-tcar-role{font-size:1rem;color:var(--muted)}
.pb-tcar-dots{position:absolute;bottom:10px}
.pb-tcar-dots .pb-carousel-dot{background:var(--border-strong)}
.pb-tcar-dots .pb-carousel-dot.pb-active{background:var(--color-primary)}
.pb-share{display:flex;flex-wrap:wrap;gap:10px}
.pb-share-btn{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;color:#fff;text-decoration:none;transition:transform .15s,opacity .15s}
.pb-share-btn:hover{transform:translateY(-2px);opacity:.92}
.pb-share-btn .pb-ic{font-size:20px;width:20px;height:20px}
.pb-share-square .pb-share-btn{border-radius:4px}
.pb-share-rounded .pb-share-btn{border-radius:var(--r-md)}
.pb-share-circle .pb-share-btn{border-radius:50%}
.pb-toc{background:var(--surface-1);border:1px solid var(--border);border-radius:var(--r-md);padding:16px 20px}
.pb-toc-title{font-weight:500;margin-bottom:8px;font-size:1.14rem}
.pb-toc-list{list-style:none;margin:0;padding:0}
.pb-toc-list li{margin:4px 0}
.pb-toc-list li.pb-toc-h3{padding-left:16px}
.pb-toc-list li.pb-toc-h4{padding-left:32px}
.pb-toc-list a{text-decoration:none}
.pb-toc-list a:hover{text-decoration:underline}
/* Same cap as the accordion had: the unfolded text is bounded by its own content, never by a pixel
   value. !important because the folded height is emitted per widget as `.pb-elt-<id> .pb-readmore-content`. */
.pb-readmore-content{overflow:hidden;position:relative;interpolate-size:allow-keywords;transition:max-height .35s ease}
.pb-readmore.pb-open .pb-readmore-content{max-height:max-content!important}
.pb-readmore-content::after{content:"";position:absolute;left:0;right:0;bottom:0;height:46px;background:linear-gradient(transparent,#fff);pointer-events:none}
.pb-readmore.pb-open .pb-readmore-content::after{opacity:0}
.pb-readmore-btn{margin-top:12px;background:none;border:none;font-weight:500;color:var(--color-primary);cursor:pointer;padding:0;font-size:1rem}
.pb-img-caption{font-size:1rem;color:var(--muted);margin-top:8px}
.pb-imghover-zoom{transition:transform .4s}
.pb-imghover-zoom:hover{transform:scale(1.06)}
.pb-imghover-grayscale{filter:grayscale(1);transition:filter .35s}
.pb-imghover-grayscale:hover{filter:grayscale(0)}
.pb-imghover-lift{transition:transform .25s,box-shadow .25s}
.pb-imghover-lift:hover{transform:translateY(-5px);box-shadow:0 12px 24px rgba(0,0,0,.18)}
.pb-lb-link{cursor:zoom-in;display:inline-block}
.pb-lb{position:fixed;inset:0;background:rgba(0,0,0,.88);display:none;align-items:center;justify-content:center;z-index:9999}
.pb-lb.pb-lb-on{display:flex}
.pb-lb-img{max-width:90vw;max-height:88vh;border-radius:4px;box-shadow:0 10px 40px rgba(0,0,0,.5)}
.pb-lb-close{position:absolute;top:18px;right:24px;background:none;border:none;color:#fff;font-size:40px;line-height:1;cursor:pointer}
.pb-lb-nav{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,.12);border:none;color:#fff;font-size:40px;width:54px;height:54px;border-radius:50%;cursor:pointer}
.pb-lb-nav:hover{background:rgba(255,255,255,.25)}
.pb-lb-prev{left:18px}.pb-lb-next{right:18px}
.pb-accordion-icon{transition:transform .25s;margin-left:auto}
.pb-acc-arrow .pb-open .pb-accordion-icon,.pb-acc-chevron .pb-open .pb-accordion-icon{transform:rotate(180deg)}
.pb-acc-plus .pb-open .pb-accordion-icon{transform:rotate(45deg)}
.pb-icon-list li{transition:color .15s}
.pb-il-divider li{border-bottom:1px solid var(--border);padding-bottom:8px}
.pb-il-divider li:last-child{border-bottom:none}
.pb-gal-fig img{transition:transform .4s,filter .35s}
.pb-galhover-zoom:hover img{transform:scale(1.08)}
.pb-galhover-grayscale img{filter:grayscale(1)}
.pb-galhover-grayscale:hover img{filter:grayscale(0)}
.pb-tabs-left{display:flex;gap:22px;align-items:flex-start}
.pb-tabs-left .pb-tabs-nav{flex-direction:column;flex-wrap:nowrap;border-bottom:none;border-right:1px solid var(--border);flex:0 0 200px}
.pb-tabs-left .pb-tabs-nav li{border-bottom:none;border-left:2px solid transparent;margin:0}
.pb-tabs-left .pb-tabs-nav li.pb-active{border-bottom:none;border-left:2px solid;margin-right:-1px;margin-bottom:0}
.pb-tabs-left .pb-tabs-panels{flex:1;min-width:0}
.pb-tabs-left .pb-tabs-panel{padding-top:0}
.pb-map{width:100%;height:360px;border-radius:var(--r-md);overflow:hidden}
.pb-map iframe{width:100%;height:100%;border:0;display:block}
.pb-youtube iframe{width:100%;height:100%;border:0;display:block}
.pb-hotspots{position:relative;display:inline-block;max-width:100%;line-height:0}
.pb-hotspots img{max-width:100%;height:auto;border-radius:var(--r-md)}
.pb-hotspot{position:absolute;transform:translate(-50%,-50%);background:none;border:0;padding:0;cursor:pointer;line-height:1}
.pb-hotspot-dot{display:block;width:22px;height:22px;border-radius:50%;background:var(--color-primary);border:3px solid #fff;box-shadow:0 2px 6px rgba(0,0,0,.3);animation:pbHotPulse 2s infinite}
@keyframes pbHotPulse{0%{box-shadow:0 0 0 0 rgba(26,115,232,.45),0 2px 6px rgba(0,0,0,.3)}70%{box-shadow:0 0 0 12px rgba(26,115,232,0),0 2px 6px rgba(0,0,0,.3)}100%{box-shadow:0 0 0 0 rgba(26,115,232,0),0 2px 6px rgba(0,0,0,.3)}}
.pb-hotspot-tip{position:absolute;bottom:140%;left:50%;transform:translateX(-50%) translateY(6px);min-width:160px;max-width:240px;background:var(--ink);color:#fff;padding:10px 12px;border-radius:var(--r-md);font-size:13px;line-height:1.4;text-align:left;opacity:0;visibility:hidden;transition:opacity .15s,transform .15s;z-index:3;box-shadow:0 8px 24px rgba(0,0,0,.3)}
.pb-hotspot-tip strong{display:block;margin-bottom:3px}
.pb-hotspot-tip::after{content:"";position:absolute;top:100%;left:50%;transform:translateX(-50%);border:6px solid transparent;border-top-color:var(--ink)}
.pb-hotspot:hover .pb-hotspot-tip,.pb-hotspot.pb-open .pb-hotspot-tip{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.pb-code{border-radius:var(--r-md);overflow:hidden;font-size:13.5px}
.pb-code-head{display:flex;align-items:center;justify-content:space-between;padding:7px 14px;font-size:12px}
.pb-code-lang{text-transform:uppercase;letter-spacing:.5px;font-weight:700;opacity:.7}
.pb-code-copy{background:rgba(255,255,255,.14);color:inherit;border:0;border-radius:5px;padding:4px 11px;cursor:pointer;font:inherit;font-size:12px}
.pb-code-copy:hover{background:rgba(255,255,255,.26)}
.pb-code pre{margin:0;padding:16px 18px;overflow:auto}
.pb-code code{font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;white-space:pre}
.pb-code-dark{background:#1e1f26;color:#e6e7ee}
.pb-code-light{background:var(--surface-2);color:var(--ink)}
.pb-code-light .pb-code-copy{background:rgba(0,0,0,.07)}.pb-code-light .pb-code-copy:hover{background:rgba(0,0,0,.14)}
.pb-bc{display:flex}
.pb-bc ol{display:flex;flex-wrap:wrap;align-items:center;gap:6px;list-style:none;margin:0;padding:0;font-size:1rem;font-weight:500;color:var(--muted)}
.pb-bc a{text-decoration:none}.pb-bc a:hover{text-decoration:underline}
.pb-bc-sep{opacity:.5}
.pb-bc-cur{color:var(--ink)}
.pb-audio{margin:0;background:var(--surface-1);border-radius:var(--r-lg);padding:14px 16px}
.pb-audio-title{font-weight:600;margin-bottom:8px}
.pb-audio audio{width:100%;display:block}
.pb-reviews{display:grid;gap:22px}
.pb-review{background:var(--surface-0);border:1px solid var(--border);border-radius:var(--r-md);padding:22px}
.pb-review-stars{display:flex;gap:2px;font-size:17px;margin-bottom:10px}
.pb-review-stars .pb-ic{width:1em;height:1em;font-size:17px;line-height:1}
.pb-review-stars .pb-off{color:var(--border)}
.pb-review-text{margin:0 0 14px;line-height:1.6;color:var(--ink)}
.pb-review-meta{display:flex;flex-direction:column;gap:1px}
.pb-review-name{font-size:1rem;font-weight:500}
.pb-review-role{font-size:1rem;color:var(--muted)}
.pb-steps{position:relative;display:flex;flex-wrap:wrap;gap:28px 0}
.pb-step{position:relative;flex:1 1 0;min-width:150px;text-align:center;padding:0 14px}
.pb-step:not(:last-child)::after{content:"";position:absolute;top:18px;left:50%;width:100%;height:1px;background:var(--border);z-index:0}
/* = .arch-steps__n: 36px disc, primary-light ground, primary figure, 500. */
.pb-step-mark{position:relative;z-index:1;width:36px;height:36px;margin:0 auto 14px;border-radius:50%;background:var(--color-primary-light);color:var(--color-primary);display:flex;align-items:center;justify-content:center;font-weight:500;font-size:1.14rem}
.pb-step-mark .pb-ic{width:1em;height:1em;font-size:18px;line-height:1}
.pb-step-title{margin:0 0 4px;font-size:1.14rem;font-weight:500}
.pb-step-text{margin:0;font-size:1rem;color:var(--muted);line-height:1.55}
.pb-logos{display:grid;align-items:center;gap:30px}
.pb-logo{display:flex;align-items:center;justify-content:center}
.pb-logo img{max-width:100%;max-height:64px;width:auto;height:auto;object-fit:contain}
.pb-logos-gray .pb-logo img{filter:grayscale(1);opacity:.65;transition:filter .25s,opacity .25s}
.pb-logos-gray .pb-logo img:hover{filter:grayscale(0);opacity:1}
.pb-hours{background:var(--surface-0);border:1px solid var(--border);border-radius:var(--r-md);padding:8px 22px}
.pb-hours-title{font-weight:500;font-size:1.14rem;padding:14px 0 4px}
.pb-hours ul{list-style:none;margin:0;padding:0}
.pb-hours-row{display:flex;justify-content:space-between;gap:16px;padding:13px 0;border-top:1px solid var(--border)}
.pb-hours ul li:first-child{border-top:none}
.pb-hours-day{font-weight:600;color:var(--ink)}
.pb-hours-time{color:var(--muted)}
.pb-hours-row.pb-closed .pb-hours-time{color:#d23b54;font-weight:600}
.pb-ci{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:18px}
.pb-ci-h{flex-direction:row;flex-wrap:wrap;gap:30px}
.pb-ci-item{display:flex;align-items:flex-start;gap:13px}
.pb-ci-icon{flex:none;font-size:22px;width:1em;height:1em;line-height:1}
.pb-ci-body{display:flex;flex-direction:column;gap:1px}
.pb-ci-label{font-size:1rem;color:var(--muted)}
.pb-ci-value{font-size:1rem;font-weight:500;color:var(--ink)}
.pb-ci-value a{color:inherit;text-decoration:none}
.pb-ci-value a:hover{text-decoration:underline}
.pb-ba{position:relative;width:100%;overflow:hidden;border-radius:var(--r-lg);line-height:0;user-select:none;touch-action:none}
.pb-ba-img{display:block;width:100%;height:auto;pointer-events:none}
.pb-ba-before-wrap{position:absolute;top:0;left:0;height:100%;overflow:hidden}
.pb-ba-before-wrap .pb-ba-before{position:absolute;top:0;left:0;height:100%;width:auto;max-width:none}
.pb-ba:not(.pb-ba-v) .pb-ba-before-wrap .pb-ba-before{width:var(--pb-ba-w,1000px)}
.pb-ba-v .pb-ba-before-wrap{width:100%;height:50%}
.pb-ba-v .pb-ba-before-wrap .pb-ba-before{width:100%;height:auto}
.pb-ba-handle{position:absolute;top:0;left:50%;width:3px;height:100%;background:#fff;transform:translateX(-50%);box-shadow:0 0 6px rgba(0,0,0,.4);z-index:3}
.pb-ba-v .pb-ba-handle{top:50%;left:0;width:100%;height:3px;transform:translateY(-50%)}
.pb-ba-handle .pb-ba-arrow{position:absolute;top:50%;left:50%;width:38px;height:38px;border-radius:50%;background:inherit;transform:translate(-50%,-50%);box-shadow:0 1px 6px rgba(0,0,0,.3)}
.pb-ba-handle .pb-ba-arrow::before,.pb-ba-handle .pb-ba-arrow::after{content:"";position:absolute;top:50%;width:0;height:0;border:6px solid transparent}
.pb-ba-handle .pb-ba-arrow::before{left:6px;border-right-color:var(--muted);transform:translateY(-50%)}
.pb-ba-handle .pb-ba-arrow::after{right:6px;border-left-color:var(--muted);transform:translateY(-50%)}
/* Longhands, never the `font:` shorthand: it resets font-family too and dropped the labels out of the
   site's face, which .pb-root only ever passes down by inheritance. */
.pb-ba-label{position:absolute;bottom:12px;padding:4px 11px;background:rgba(0,0,0,.6);color:#fff;font-weight:600;font-size:12px;border-radius:4px;line-height:1.4;z-index:2}
.pb-ba-label-b{left:12px}.pb-ba-label-a{right:12px}
.pb-ba-range{position:absolute;inset:0;width:100%;height:100%;margin:0;opacity:0;cursor:ew-resize;z-index:4}
.pb-ba-v .pb-ba-range{cursor:ns-resize}
.pb-chk{list-style:none;margin:0;padding:0}
.pb-chk-item{display:flex;align-items:flex-start;gap:.6em;line-height:1.5}
.pb-chk-item:last-child{margin-bottom:0!important}
.pb-chk-ic{flex:none;font-size:20px;width:1em;height:1em;line-height:1.3}
.pb-chk-strike .pb-chk-tx{text-decoration:line-through;opacity:.55}
.pb-circ-wrap{text-align:center}
.pb-circ{position:relative;margin:0 auto;border-radius:50%;display:flex;align-items:center;justify-content:center}
.pb-circ-hole{position:absolute;inset:var(--pb-circ-thick,12px);background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center}
.pb-circ-num{font-weight:800;font-size:clamp(20px,7vw,34px)}
.pb-circ-title{margin-top:12px;font-weight:600;color:var(--muted)}
.pb-btt{position:fixed;right:22px;bottom:22px;width:46px;height:46px;border:none;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 6px 18px rgba(0,0,0,.25);opacity:0;visibility:hidden;transform:translateY(12px);transition:opacity .25s,transform .25s,visibility .25s;z-index:9990}
.pb-btt.pb-btt-show{opacity:1;visibility:visible;transform:none}
.pb-btt-left{right:auto;left:22px}.pb-btt-square{border-radius:var(--r-lg)}
.pb-btt .pb-ic{font-size:24px;line-height:1}
.pb-notif{position:relative;display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap;padding:12px 44px;text-align:center;font-weight:500;border-radius:var(--r-md)}
.pb-notif-sticky{position:sticky;top:0;border-radius:0;z-index:9980}
.pb-notif-link{color:inherit;font-weight:700;text-decoration:underline;white-space:nowrap}
.pb-notif-x{position:absolute;right:14px;background:none;border:none;color:inherit;font-size:24px;line-height:1;cursor:pointer;opacity:.7}
.pb-notif-x:hover{opacity:1}
/* = .client-card / .app-card: 8px radius, hairline, NO shadow, 1.14rem title, .eyebrow-style kicker, .btn-shaped action. */
.pb-card{background:var(--surface-0);border:1px solid var(--border);border-radius:var(--r-md);overflow:hidden;height:100%;display:flex;flex-direction:column;transition:background .2s var(--ease),border-color .2s var(--ease)}
.pb-card:hover{background:rgba(32,33,36,.04);border-color:var(--border-strong)}
.pb-card-media img{display:block;width:100%}
.pb-card-body{padding:24px;display:flex;flex-direction:column;gap:8px;flex:1}
.pb-card-eyebrow{font-size:1rem;font-weight:500;letter-spacing:0;text-transform:none}
.pb-card-title{margin:0;font-size:1.14rem;font-weight:500;line-height:1.3}
.pb-card-text{margin:0;color:var(--muted);font-size:1rem;line-height:1.5;flex:1}
.pb-card-btn{align-self:flex-start;margin-top:8px;transition:filter .15s var(--ease)}
.pb-card-btn:hover{filter:brightness(.92)}
/* The card's alignment is emitted as `.pb-elt-<id> .pb-card{text-align}`, never as a style attribute:
   the two `.pb-card[style*=…]` rules that used to sit here could not match anything, and the button's
   own placement has to come from the renderer (it is a flex item, so text-align does not reach it). */
/* = .pillars / .feat-grid: 32px 36px gaps, 24px stroke icon, 1.14rem/500 title, 1rem text; tinted discs as .client-card__icon (56px). */
.pb-fg{display:grid;gap:32px 36px}
.pb-fg>*{min-width:0}
.pb-fg-item{display:flex;flex-direction:column;gap:6px}
.pb-fg-icon{font-size:24px;width:1em;height:1em;line-height:1;margin-bottom:6px}
.pb-fg-ic-circle,.pb-fg-ic-square{width:56px;height:56px;font-size:24px;display:flex;align-items:center;justify-content:center}
.pb-fg-ic-circle{border-radius:50%}.pb-fg-ic-square{border-radius:var(--r-xl)}
.pb-fg-title{margin:0;font-size:1.14rem;font-weight:500}
.pb-fg-text{margin:0;color:var(--muted);font-size:1rem;line-height:1.5}
.pb-fg-item-link{text-decoration:none;color:inherit}
.pb-fg-chips{display:flex;flex-wrap:wrap;gap:6px}
.pb-chips{display:flex;flex-wrap:wrap;gap:8px}
.pb-chip{display:inline-flex;align-items:center;padding:3px 10px;border-radius:999px;background:var(--color-primary-tint);color:var(--color-primary-hover);font-size:1rem;font-weight:500;line-height:1.6}
.pb-faq .pb-accordion-item{border:1px solid var(--border);border-radius:var(--r-lg);margin-bottom:10px;overflow:hidden}
.pb-faq .pb-accordion-head{padding:16px 18px;font-size:1.14rem}
.pb-faq.pb-acc-plus .pb-accordion-item.pb-open .pb-accordion-icon{transform:rotate(45deg)}
.pb-shape{position:relative;line-height:0;width:100%;overflow:hidden}
.pb-shape svg{display:block;width:100%;height:80px}
.pb-shape-flip svg{transform:scaleX(-1)}
.pb-shape-top svg{transform:rotate(180deg)}
.pb-shape-top.pb-shape-flip svg{transform:rotate(180deg) scaleX(-1)}
.pb-imgacc{display:flex;gap:8px;overflow:hidden;border-radius:var(--r-xl)}
.pb-imgacc-panel{position:relative;flex:1;min-width:0;background-size:cover;background-position:center;text-decoration:none;display:flex;align-items:flex-end;padding:18px;transition:flex .45s cubic-bezier(.4,0,.2,1);overflow:hidden}
.pb-imgacc-panel:hover{flex:3.2}
.pb-imgacc-veil{position:absolute;inset:0;background:linear-gradient(transparent,rgba(0,0,0,.6));z-index:0}
.pb-imgacc-title{position:relative;z-index:1;font-weight:700;font-size:17px;writing-mode:vertical-rl;transform:rotate(180deg);transition:writing-mode .3s,transform .3s;text-shadow:0 1px 4px rgba(0,0,0,.4)}
.pb-imgacc-panel:hover .pb-imgacc-title{writing-mode:horizontal-tb;transform:none}
/* Same feel as the site's .reveal: 12px travel, .45s on var(--ease). (--pb-ad is set inline by the renderer.) */
.pb-anim.pb-anim-active{opacity:0;transition:opacity var(--pb-ad,.45s) var(--ease),transform var(--pb-ad,.45s) var(--ease);transition-delay:var(--pb-adl,0s);will-change:opacity,transform}
.pb-anim.pb-anim-active.pb-anim-in{opacity:1;transform:none}
.pb-anim[data-pb-anim="fade-up"].pb-anim-active{transform:translateY(12px)}
.pb-anim[data-pb-anim="fade-down"].pb-anim-active{transform:translateY(-12px)}
.pb-anim[data-pb-anim="fade-left"].pb-anim-active{transform:translateX(12px)}
.pb-anim[data-pb-anim="fade-right"].pb-anim-active{transform:translateX(-12px)}
.pb-anim[data-pb-anim="zoom-in"].pb-anim-active{transform:scale(.86)}
.pb-anim[data-pb-anim="zoom-out"].pb-anim-active{transform:scale(1.14)}
.pb-anim[data-pb-anim="slide-up"].pb-anim-active{transform:translateY(60px)}
.pb-anim[data-pb-anim="flip"].pb-anim-active{transform:perspective(900px) rotateX(-55deg);transform-origin:top center}
@media(prefers-reduced-motion:reduce){.pb-anim.pb-anim-active{opacity:1!important;transform:none!important;transition:none}}
/* Grids collapse like the site's (.pillars 4→2 at 1024, →1 at 560). The renderer emits `.pb-elt-<id> .pb-fg{grid-template-columns}`
   for desktop only (0,2,0), hence the (0,3,0) selector: there is no per-device intent to override. */
@media(max-width:1024px){.pb-column .pb-widget .pb-fg{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:767px){.pb-step:not(:last-child)::after{display:none}
  /* Phones stack by default. No !important: the renderer now emits a column's desktop width above this
     breakpoint (@media(min-width:768px)), so nothing from the page's <style> competes here — and a phone
     width set in the console, emitted inside THIS query and later in the document, simply wins. */
  .pb-column{flex-basis:100%;max-width:100%}
  .pb-column+.pb-column>.pb-column-inner{padding-left:0}.pb-tabs-left{flex-direction:column}.pb-tabs-left .pb-tabs-nav{flex-direction:row;border-right:none;flex-basis:auto}
  /* Stacked columns keep the gap the site's grids have (.hero__inner, .spotlight: 32px+); :where() so a column's own margin wins. */
  :where(.pb-column+.pb-column){margin-top:32px}
  .pb-widget{margin-bottom:24px}
  .pb-cta{padding:40px 20px}}
/* = site.css @560: .container gutter 18px, .btn--lg full width, .hero__actions / .cta-band__actions stacked. */
@media(max-width:560px){.pb-section.pb-boxed>.pb-section-inner{padding-inline:18px}
  .pb-column .pb-widget .pb-fg{grid-template-columns:minmax(0,1fr)}
  .pb-button.pb-btn-lg{width:100%}
  .pb-widget-button:has(+.pb-widget-button),.pb-widget-button+.pb-widget-button{width:100%;margin-right:0}
  .pb-cta-btn{display:flex;width:100%}.pb-cta-btn2{margin:10px 0 0}}
.pb-starrating .pb-ic .icon,.pb-review-stars .pb-ic .icon{fill:currentColor;stroke:none}
.pb-stars .pb-ic{vertical-align:top}
/* Kubuno dynamic widgets: wrappers around the site's shared blocks. */
.pb-kb{width:100%}
/* The boxed section already provides the gutter: a block's own .container must not double it. */
.pb-boxed .pb-kb .container{padding-inline:0}
/* A block made of ONE section gets its rhythm from the builder section's own padding; a block that
   carries several sections (download-options) keeps the site's inter-section spacing. */
.pb-kb>.section:only-child{padding:0}
.pb-kb .st-grid--featured{grid-template-columns:minmax(0,360px)}
.pb-kb-site-icon__ic{color:var(--color-primary)}
.pb-kb-swagger .container{padding-inline:0}
