/**
 * Section rendering styles for CMS block-based pages.
 *
 * These rules apply the section background colours, intent presets, inner
 * panel styles, and layout variants generated by the block renderer matrix.
 * The file is loaded independently so that CMS page output
 * and the admin page-editor preview can display namespace-themed sections.
 */

/* ------------------------------------------------------------------ */
/*  Base section                                                       */
/* ------------------------------------------------------------------ */

.section {
  --section-surface: transparent;
  --section-bg-color: var(--section-surface);
  --section-padding-outer: clamp(20px, 4vw, 48px);
  --section-padding-inner: clamp(22px, 4vw, 44px);
  --section-bg-overlay: 0;
  --section-overlay-color: color-mix(in srgb, var(--color-text, #0b1728) 16%, transparent);
  --section-text-color: var(--color-text, inherit);
  color: var(--section-text-color, var(--color-text, inherit));
  font-family: var(--marketing-font-stack, inherit);
  padding: var(--section-padding-outer) 0;
  background: var(--section-bg-color);
}

.section h1,
.section h2,
.section h3,
.section h4 {
  font-family: var(--marketing-heading-font-stack, inherit);
  font-weight: var(--marketing-heading-weight, 700);
  line-height: var(--marketing-heading-line-height, 1.15);
  letter-spacing: var(--marketing-heading-letter-spacing, 0);
}


/* ------------------------------------------------------------------ */
/*  Intent presets                                                     */
/* ------------------------------------------------------------------ */

.section[data-section-intent="content"] {
  --section-surface: var(--surface);
  --section-padding-outer: clamp(20px, 4vw, 48px);
  --section-padding-inner: clamp(22px, 4vw, 44px);
}

.section[data-section-intent="plain"] {
  --section-surface: var(--surface);
  --section-padding-outer: clamp(20px, 4vw, 48px);
  --section-padding-inner: clamp(22px, 4vw, 44px);
}

/*
 * Defensive text colour for light-background intents.
 * Guarantees readable (dark) text even when the JS renderer does not
 * set --section-text-color via inline style.  The inline style from
 * the renderer takes precedence; this is the CSS-only safety net.
 */
.section[data-section-intent="content"],
.section[data-section-intent="plain"] {
  --section-text-color: var(--contrast-text-on-surface, var(--color-text, #111827));
}

.section[data-section-intent="feature"] {
  --section-text-color: var(--contrast-text-on-surface-muted, var(--color-text, #111827));
}

.section[data-section-intent="feature"] {
  --section-surface: var(--surface-muted);
  --section-padding-outer: clamp(28px, 5vw, 64px);
  --section-padding-inner: clamp(28px, 5vw, 60px);
}

.section[data-section-intent="highlight"] {
  --section-surface: var(--accent-primary, var(--brand-primary, #1e87f0));
  --section-padding-outer: clamp(32px, 6vw, 72px);
  --section-padding-inner: clamp(32px, 6vw, 68px);
  --section-text-color: var(--contrast-text-on-primary, var(--text-on-primary, #ffffff));
}

.section[data-section-intent="hero"] {
  --section-surface: color-mix(in srgb, var(--accent-secondary, var(--accent-primary, #1e87f0)) 85%, #0b1728);
  --section-padding-outer: clamp(36px, 7vw, 88px);
  --section-padding-inner: clamp(36px, 7vw, 80px);
  --section-text-color: var(--contrast-text-on-secondary, var(--contrast-text-on-primary, #ffffff));
}

/* ------------------------------------------------------------------ */
/*  Viewport height                                                    */
/* ------------------------------------------------------------------ */

/*
 * When a section has a viewport-height setting, vertically centre
 * the content within the tall section via flexbox.
 */
.section--viewport-height {
  display: flex;
  flex-direction: column;
}

.section--viewport-height > .uk-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}

/* CSS fallback for the 80 vh (reduced) mode – no UIkit attribute needed */
.section[data-viewport-height="reduced"] {
  min-height: 80vh;
}

/* Responsive: disable viewport height on small screens to prevent
   excessively tall hero sections on mobile devices. */
@media (max-width: 959px) {
  .section[data-viewport-height="full"],
  .section[data-viewport-height="reduced"],
  .section[data-viewport-height="minus-next"] {
    min-height: auto !important;
    height: auto !important;
  }

  .section--viewport-height > .uk-container {
    justify-content: flex-start;
  }
}

/* ------------------------------------------------------------------ */
/*  Dark mode: section surface + text overrides                        */
/* ------------------------------------------------------------------ */

/*
 * In dark mode the semantic surface tokens from variables.css provide dark
 * backgrounds.  The namespace-design JS now skips setting light-theme
 * inline styles, so the CSS cascade applies correctly.
 *
 * These rules reinforce the correct dark values for section intents,
 * inner panels and contrast text so sections render with the dark palette.
 */

:root[data-theme="dark"] .section[data-section-intent="content"],
:root[data-theme="dark"] .section[data-section-intent="plain"] {
  --section-surface: var(--surface-section);
  --section-text-color: var(--text-body);
}

:root[data-theme="dark"] .section[data-section-intent="feature"] {
  --section-surface: var(--surface-muted);
  --section-text-color: var(--text-body);
}

/* Inner panels in dark mode: use dark card surface */
:root[data-theme="dark"] .section__inner--panel,
:root[data-theme="dark"] .section__inner--card {
  background: var(--surface-card);
  border-color: var(--border-muted);
}

:root[data-theme="dark"] .section--contained .section__inner,
:root[data-theme="dark"] .section[data-section-layout="card"] .section__inner,
:root[data-theme="dark"] .section--full[data-section-layout="card"] .section__inner {
  background: var(--surface-card);
  border-color: var(--border-muted);
}

/* Card/panel contrast on coloured sections: dark mode needs light text */
:root[data-theme="dark"] .section[data-section-intent="highlight"] .section__inner--card,
:root[data-theme="dark"] .section[data-section-intent="highlight"] .section__inner--panel,
:root[data-theme="dark"] .section[data-section-intent="highlight"][data-section-layout="card"] .section__inner,
:root[data-theme="dark"] .section[data-section-intent="hero"] .section__inner--card:not(.section__inner--hero),
:root[data-theme="dark"] .section[data-section-intent="hero"] .section__inner--panel,
:root[data-theme="dark"] .section[data-section-intent="hero"][data-section-layout="card"] .section__inner:not(.section__inner--hero),
:root[data-theme="dark"] .section[data-appearance-legacy="contrast"] .section__inner--card,
:root[data-theme="dark"] .section[data-appearance-legacy="contrast"] .section__inner--panel,
:root[data-theme="dark"] .section[data-appearance-legacy="contrast"][data-section-layout="card"] .section__inner {
  color: var(--text-body);
}

/* ------------------------------------------------------------------ */
/*  Background (colour / image)                                        */
/* ------------------------------------------------------------------ */

.section[data-section-background] {
  position: relative;
  background-color: var(--section-bg-color, var(--section-surface));
  background-image: var(--section-bg-image, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: var(--section-bg-attachment, scroll);
}

/* Container (replaces UIkit uk-container which is not loaded on CMS pages) */
.section .uk-container {
  box-sizing: border-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
  position: relative;
}

.section[data-section-background] .section__inner {
  position: relative;
  z-index: 1;
}

.section[data-section-background]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, var(--section-bg-overlay, 0));
  background: color-mix(
    in srgb,
    var(--section-overlay-color, rgba(15, 23, 42, 0.12)) calc(var(--section-bg-overlay, 0) * 100%),
    transparent
  );
  pointer-events: none;
  z-index: 0;
}

.section[data-block-type="stat_strip"],
.section[data-block-type="faq"] {
  --section-bg-color: var(--section-surface, transparent);
  --section-bg-overlay: 0;
}

/* ------------------------------------------------------------------ */
/*  Inner panels                                                       */
/* ------------------------------------------------------------------ */

.section__inner {
  background: var(--section-surface-inner, transparent);
  border-radius: var(--card-radius-square, 8px);
  box-sizing: border-box;
  max-width: 100%;
  padding: var(--section-padding-inner);
  width: 100%;
}

.section__inner--panel {
  background: var(--surface);
  border-radius: var(--marketing-card-radius, var(--card-radius, 10px));
  border: 1px solid color-mix(in srgb, var(--surface-muted) 72%, var(--surface) 28%);
  box-shadow: var(--marketing-shadow-panel, 0 16px 32px rgba(15, 23, 42, 0.08));
}

.section__inner--card {
  background: var(--surface);
  border-radius: var(--marketing-card-radius, var(--card-radius, 10px));
  border: 1px solid color-mix(in srgb, var(--surface-muted) 70%, var(--surface) 30%);
  box-shadow: var(--marketing-shadow-card, 0 22px 48px rgba(15, 23, 42, 0.09));
}

.section__inner--accent {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--marketing-card-radius, var(--card-radius, 10px));
  box-shadow: var(--marketing-shadow-accent, 0 28px 60px rgba(0, 0, 0, 0.18));
}

/* Hero inner panel */
.section[data-section-intent="hero"] {
  --section-hero-surface: color-mix(
    in srgb,
    var(--section-surface, var(--surface)) 88%,
    var(--section-surface-muted, var(--surface-muted)) 12%
  );
  --section-hero-border: color-mix(
    in srgb,
    var(--section-surface-muted, var(--surface-muted)) 68%,
    var(--section-surface, var(--surface)) 32%
  );
  --section-hero-glow: color-mix(
    in srgb,
    var(--accent-secondary, var(--accent-primary, var(--brand-primary, #1e87f0))) 22%,
    rgba(0, 0, 0, 0.18)
  );
}

.section__inner--hero {
  background: var(--section-hero-surface);
  color: var(--section-text-color, var(--color-text));
  border: 1px solid var(--section-hero-border);
  border-radius: calc(var(--marketing-card-radius, var(--card-radius, 10px)) + 4px);
  box-shadow: 0 34px 76px color-mix(in srgb, var(--section-hero-glow) 55%, rgba(0, 0, 0, 0.24));
  backdrop-filter: blur(4px);
}

.section[data-section-intent="hero"] .section__inner--hero a {
  color: inherit;
}

/* ------------------------------------------------------------------ */
/*  Layout variants                                                    */
/* ------------------------------------------------------------------ */

.section--contained .section__inner {
  background: var(--surface);
}

.section--full {
  background: var(--section-bg-color, var(--surface-muted));
  padding: var(--section-padding-outer) 0;
}

.section--full .section__inner {
  padding: var(--section-padding-inner);
}

.section[data-section-layout="card"] .section__inner {
  background: var(--surface);
  border-radius: var(--marketing-card-radius, var(--card-radius, 10px));
  border: 1px solid color-mix(in srgb, var(--surface-muted) 70%, var(--surface) 30%);
  box-shadow: var(--marketing-shadow-card-soft, 0 16px 36px rgba(0, 0, 0, 0.05));
}

.section--full[data-section-layout="card"] .section__inner {
  background: var(--surface);
  border-radius: var(--marketing-card-radius, var(--card-radius, 10px));
  border: 1px solid color-mix(in srgb, var(--surface-muted) 70%, var(--surface) 30%);
  box-shadow: var(--marketing-shadow-card-soft, 0 16px 36px rgba(0, 0, 0, 0.05));
}

/* ------------------------------------------------------------------ */
/*  Card/panel contrast reset on coloured sections                     */
/* ------------------------------------------------------------------ */

/*
 * When a card or panel layout wraps content inside a coloured-background
 * intent (highlight, hero, legacy-contrast), the inner element receives a
 * light surface (--surface).  Text and link colours must revert to normal
 * body values so they remain readable on the light card background.
 *
 * The :not(.section__inner--hero) guard prevents overriding the hero inner
 * panel which carries its own dark surface and intentionally white text.
 */

.section[data-section-intent="highlight"] .section__inner--card,
.section[data-section-intent="highlight"] .section__inner--panel,
.section[data-section-intent="highlight"][data-section-layout="card"] .section__inner,
.section[data-section-intent="hero"] .section__inner--card:not(.section__inner--hero),
.section[data-section-intent="hero"] .section__inner--panel,
.section[data-section-intent="hero"][data-section-layout="card"] .section__inner:not(.section__inner--hero),
.section[data-appearance-legacy="contrast"] .section__inner--card,
.section[data-appearance-legacy="contrast"] .section__inner--panel,
.section[data-appearance-legacy="contrast"][data-section-layout="card"] .section__inner {
  color: var(--contrast-text-on-surface, var(--color-text, #111827));
}

/* Links inside cards on coloured sections revert to normal link styling. */
.section[data-section-intent="highlight"] .section__inner--card a,
.section[data-section-intent="highlight"] .section__inner--panel a,
.section[data-section-intent="highlight"][data-section-layout="card"] .section__inner a,
.section[data-section-intent="hero"] .section__inner--card:not(.section__inner--hero) a,
.section[data-section-intent="hero"] .section__inner--panel a,
.section[data-section-intent="hero"][data-section-layout="card"] .section__inner:not(.section__inner--hero) a,
.section[data-appearance-legacy="contrast"] .section__inner--card a,
.section[data-appearance-legacy="contrast"] .section__inner--panel a,
.section[data-appearance-legacy="contrast"][data-section-layout="card"] .section__inner a {
  color: var(--link-color, var(--accent-primary, var(--brand-primary, #1e87f0)));
}

/* ------------------------------------------------------------------ */
/*  Dark background token contrast — any intent                        */
/* ------------------------------------------------------------------ */

/*
 * When a section carries an explicit dark background colour token
 * (primary, secondary, accent) on a non-highlight/hero intent, the
 * JS renderer sets --section-text-color via inline style.  These rules
 * reinforce contrast for UIkit elements and provide card/panel resets
 * so that inner light-surface cards remain readable.
 */

.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) {
  color: var(--section-text-color, var(--contrast-text-on-primary, var(--text-on-primary, #ffffff)));
}

.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) a {
  color: inherit;
}

.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) .section__inner--card,
.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) .section__inner--panel,
.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
)[data-section-layout="card"] .section__inner {
  color: var(--contrast-text-on-surface, var(--color-text, #111827));
}

.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) .section__inner--card a,
.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) .section__inner--panel a,
.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
)[data-section-layout="card"] .section__inner a {
  color: var(--link-color, var(--accent-primary, var(--brand-primary, #1e87f0)));
}

/* ------------------------------------------------------------------ */
/*  Text element contrast on coloured sections                         */
/* ------------------------------------------------------------------ */

/*
 * UIkit classes like .uk-text-meta and .uk-text-lead carry their own
 * colour declarations (e.g. #999) that override the section text colour.
 * On dark section backgrounds these hard-coded grays have poor contrast.
 * Force inherit so text respects the section (or card-reset) colour.
 */

.section[data-section-intent="highlight"] .uk-text-meta,
.section[data-section-intent="hero"] .uk-text-meta,
.section[data-appearance-legacy="contrast"] .uk-text-meta,
.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) .uk-text-meta {
  color: inherit;
  opacity: 0.78;
}

.section[data-section-intent="highlight"] .uk-text-lead,
.section[data-section-intent="hero"] .uk-text-lead,
.section[data-appearance-legacy="contrast"] .uk-text-lead,
.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) .uk-text-lead {
  color: inherit;
  opacity: 0.92;
}

.section[data-section-intent="highlight"] .uk-heading-medium,
.section[data-section-intent="highlight"] .uk-heading-small,
.section[data-section-intent="hero"] .uk-heading-medium,
.section[data-section-intent="hero"] .uk-heading-small,
.section[data-appearance-legacy="contrast"] .uk-heading-medium,
.section[data-appearance-legacy="contrast"] .uk-heading-small,
.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) .uk-heading-medium,
.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) .uk-heading-small {
  color: inherit;
}

/* ------------------------------------------------------------------ */
/*  Button contrast on dark / coloured sections                        */
/* ------------------------------------------------------------------ */

/*
 * When a primary button sits on a section whose background is the primary
 * colour (highlight/hero intent or explicit dark token), the filled button is
 * invisible.  Invert: white background with primary-coloured text.
 */

.section[data-section-intent="highlight"] > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) .uk-button-primary,
.section[data-section-intent="hero"] > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) .uk-button-primary,
.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) .uk-button-primary {
  background: var(--text-on-primary, #ffffff) !important;
  color: var(--accent-primary, var(--brand-primary, #1e87f0)) !important;
  border-color: var(--text-on-primary, #ffffff);
}

.section[data-section-intent="highlight"] > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) .uk-button-primary:hover,
.section[data-section-intent="hero"] > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) .uk-button-primary:hover,
.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) .uk-button-primary:hover {
  background: rgba(255, 255, 255, 0.88) !important;
}

/*
 * Secondary / default buttons on dark surfaces: translucent white fill
 * with a visible white border so they stand out.
 */

.section[data-section-intent="highlight"] > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) .uk-button-default,
.section[data-section-intent="hero"] > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) .uk-button-default,
.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) .uk-button-default {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-on-primary, #ffffff);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.section[data-section-intent="highlight"] > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) .uk-button-default:hover,
.section[data-section-intent="hero"] > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) .uk-button-default:hover,
.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) .uk-button-default:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
}

/*
 * Links (non-button) in hero / dark sections: inherit the section text
 * colour so they remain readable against the dark background.
 */

.section[data-section-intent="hero"] > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) a:not(.uk-button),
.section[data-section-intent="highlight"] > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) a:not(.uk-button),
.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) a:not(.uk-button) {
  color: inherit;
}

/* ------------------------------------------------------------------ */
/*  Hero eyebrow tag/badge variant                                     */
/* ------------------------------------------------------------------ */

.hero-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, currentColor 12%, transparent);
  border: 1px solid color-mix(in srgb, currentColor 22%, transparent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ------------------------------------------------------------------ */
/*  Link colours on dark surfaces                                      */
/* ------------------------------------------------------------------ */

.section[data-section-intent="highlight"] a,
.section[data-section-intent="hero"] a,
.section:is(
  [data-section-background-color-token="primary"],
  [data-section-background-color-token="secondary"],
  [data-section-background-color-token="accent"]
) > .uk-container > .section__inner:not(.section__inner--card):not(.section__inner--panel) a {
  color: inherit;
}

/* ------------------------------------------------------------------ */
/*  Legacy appearance                                                  */
/* ------------------------------------------------------------------ */

.section[data-appearance-legacy="contrast"] {
  background: var(--brand-primary, #1e87f0);
  color: var(--contrast-text-on-primary, var(--text-on-primary, #ffffff));
}

.section[data-appearance-legacy="contrast"] a,
.section[data-appearance-legacy="contrast"] a:hover {
  color: inherit;
}

.section[data-appearance-legacy="image"],
.section[data-appearance-legacy="image-fixed"] {
  background-image: var(--section-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section[data-appearance-legacy="image-fixed"] {
  background-attachment: var(--section-bg-attachment, fixed);
}

/* ------------------------------------------------------------------ */
/*  Responsive / reduced-motion                                        */
/* ------------------------------------------------------------------ */

@media (max-width: 959px), (prefers-reduced-motion: reduce) {
  .section[data-appearance-legacy="image-fixed"] {
    background-attachment: scroll;
  }

  .section[data-section-background] {
    --section-bg-attachment: scroll;
  }
}

/* ------------------------------------------------------------------ */
/*  FAQ accordion contrast                                             */
/* ------------------------------------------------------------------ */

/*
 * UIkit .uk-accordion-title has hardcoded color:#333 and the +/- toggle
 * SVGs use hardcoded fill:#666.  Neither responds to CSS variables or
 * dark mode.  Override so accordion text inherits the section colour
 * and the toggle icon follows via a mask-based approach.
 */

.section[data-block-type="faq"] .uk-accordion-title {
  color: inherit;
}

.section[data-block-type="faq"] .uk-accordion-title:hover,
.section[data-block-type="faq"] .uk-accordion-title:focus {
  color: inherit;
  opacity: 0.72;
}

.section[data-block-type="faq"] .uk-accordion-content {
  color: inherit;
}

/* Replace hardcoded SVG with mask so icon colour follows currentColor */
.section[data-block-type="faq"] .uk-accordion-title::before {
  background-image: none;
  background-color: currentColor;
  opacity: 0.6;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13'%3E%3Crect width='13' height='1' x='0' y='6'/%3E%3Crect width='1' height='13' x='6' y='0'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13'%3E%3Crect width='13' height='1' x='0' y='6'/%3E%3Crect width='1' height='13' x='6' y='0'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
}

.section[data-block-type="faq"] .uk-open > .uk-accordion-title::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13'%3E%3Crect width='13' height='1' x='0' y='6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13'%3E%3Crect width='13' height='1' x='0' y='6'/%3E%3C/svg%3E");
}

/* Follow-up text uses uk-text-muted which has its own colour */
.section[data-block-type="faq"] .uk-text-muted {
  color: inherit;
  opacity: 0.62;
}

/* ------------------------------------------------------------------ */
/*  Stat strip block                                                   */
/* ------------------------------------------------------------------ */

.section[data-block-type="stat_strip"] {
  --stat-card-surface: var(--section-surface, var(--surface));
  --stat-card-surface-muted: var(--section-surface-muted, var(--surface-muted));
  --stat-card-text: var(--section-text-color, var(--color-text));
  --stat-card-accent: var(--accent-primary, var(--brand-primary, #1e87f0));
}

/* When stat_strip sits inside a card layout on a coloured section,
   inline/centered variants have no own card background and sit directly
   on the light card surface → text must be dark. */
.section[data-block-type="stat_strip"][data-section-intent="highlight"][data-section-layout="card"],
.section[data-block-type="stat_strip"][data-section-intent="hero"][data-section-layout="card"],
.section[data-block-type="stat_strip"][data-appearance-legacy="contrast"][data-section-layout="card"] {
  --stat-card-text: var(--contrast-text-on-surface, var(--color-text, #111827));
  --stat-card-surface: var(--surface);
  --stat-card-surface-muted: var(--surface-muted);
}

/* Trust band – seamless strip variant (no borders, compact) */
.section.trust-band {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: none !important;
}

.trust-band__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  gap: 1.5rem;
  margin: 0;
  list-style: none;
}

.trust-band__list > li {
  padding: 0;
}

.trust-band__item {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--section-text-color, var(--color-text, #111827));
  white-space: nowrap;
}

/* Override UIKit subnav-divider for trust-band context */
.trust-band__list.uk-subnav-divider > :nth-child(n+2):not(.uk-first-column)::before {
  border-color: rgba(0, 0, 0, 0.12);
}

.stat-strip__grid {
  row-gap: 28px;
}

.stat-strip__grid > * {
  min-width: 0;
}

.stat-strip__card {
  gap: 14px;
  padding: 28px;
}

.stat-strip__kpi {
  gap: 6px;
}

.stat-strip__value {
  font-size: clamp(2.2rem, 2.8vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.stat-strip__label-text {
  font-size: 1.05rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.stat-strip__as-of {
  font-size: 0.9rem;
  opacity: 0.8;
}

.stat-strip__benefit {
  margin-top: auto;
  font-size: 0.95rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.stat-strip__benefit-placeholder {
  margin-top: auto;
  display: block;
  min-height: 3rem;
  visibility: hidden;
}

.stat-strip__marquee {
  padding-top: 20px;
  border-top: 1px solid var(--surface-muted);
}

.stat-strip__marquee-tags {
  gap: 8px 12px;
}

.stat-strip__marquee-tag {
  white-space: nowrap;
}

/* Stat strip: inline / centered / highlight variants */
.section[data-block-type="stat_strip"]:is([data-block-variant="inline"], [data-block-variant="centered"], [data-block-variant="highlight"]) .stat-strip__grid {
  row-gap: clamp(18px, 3vw, 26px);
}

.section[data-block-type="stat_strip"][data-block-variant="inline"] .stat-strip__inline-bar {
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid color-mix(in srgb, var(--stat-card-surface-muted) 85%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--stat-card-surface-muted) 85%, transparent);
}

.section[data-block-type="stat_strip"][data-block-variant="inline"] .stat-strip__inline-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section[data-block-type="stat_strip"][data-block-variant="inline"] .stat-strip__inline-value {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section[data-block-type="stat_strip"][data-block-variant="inline"] .stat-strip__inline-label {
  font-size: 1rem;
  line-height: 1.4;
  color: color-mix(in srgb, var(--stat-card-text) 85%, transparent);
}

.section[data-block-type="stat_strip"][data-block-variant="inline"] .stat-strip__inline-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section[data-block-type="stat_strip"][data-block-variant="inline"] .stat-strip__inline-meta-item {
  font-size: 0.95rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--stat-card-text) 78%, transparent);
}

.section[data-block-type="stat_strip"][data-block-variant="inline"] .stat-strip__inline-meta-item--muted {
  color: color-mix(in srgb, var(--stat-card-text) 62%, transparent);
}

/* Stat strip: centered variant */
.section[data-block-type="stat_strip"][data-block-variant="centered"] .stat-strip__centered-stack {
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 8px;
  border-top: 2px solid color-mix(in srgb, var(--stat-card-accent) 60%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--stat-card-surface-muted) 75%, transparent);
}

.section[data-block-type="stat_strip"][data-block-variant="centered"] .stat-strip__centered-accent {
  width: 44px;
  height: 4px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--stat-card-accent) 80%, transparent);
}

.section[data-block-type="stat_strip"][data-block-variant="centered"] .stat-strip__centered-value {
  font-size: clamp(2.4rem, 3.6vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section[data-block-type="stat_strip"][data-block-variant="centered"] .stat-strip__centered-label {
  font-size: 1.05rem;
  line-height: 1.4;
  color: color-mix(in srgb, var(--stat-card-text) 85%, transparent);
}

.section[data-block-type="stat_strip"][data-block-variant="centered"] .stat-strip__centered-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section[data-block-type="stat_strip"][data-block-variant="centered"] .stat-strip__centered-meta-item {
  font-size: 0.95rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--stat-card-text) 78%, transparent);
}

.section[data-block-type="stat_strip"][data-block-variant="centered"] .stat-strip__centered-meta-item--muted {
  color: color-mix(in srgb, var(--stat-card-text) 62%, transparent);
}

/* Stat strip: highlight variant */
.section[data-block-type="stat_strip"][data-block-variant="highlight"] .stat-strip__highlight-shell {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(18px, 3vw, 26px);
  border-radius: calc(var(--marketing-card-radius, var(--card-radius, 10px)) + 6px);
  background: color-mix(in srgb, var(--stat-card-surface) 92%, var(--stat-card-accent) 8%);
  border: 1px solid color-mix(in srgb, var(--stat-card-accent) 30%, var(--stat-card-surface-muted) 70%);
  box-shadow: var(--marketing-shadow-panel, 0 18px 30px rgba(15, 23, 42, 0.08));
}

.section[data-block-type="stat_strip"][data-block-variant="highlight"] .stat-strip__highlight-icon,
.section[data-block-type="stat_strip"][data-block-variant="highlight"] .stat-strip__highlight-dot {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--stat-card-accent) 14%, var(--stat-card-surface) 86%);
  color: var(--stat-card-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.section[data-block-type="stat_strip"][data-block-variant="highlight"] .stat-strip__highlight-dot::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--stat-card-accent);
}

.section[data-block-type="stat_strip"][data-block-variant="highlight"] .stat-strip__highlight-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section[data-block-type="stat_strip"][data-block-variant="highlight"] .stat-strip__highlight-value {
  font-size: clamp(2.3rem, 3.3vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section[data-block-type="stat_strip"][data-block-variant="highlight"] .stat-strip__highlight-label {
  font-size: 1.05rem;
  line-height: 1.4;
  color: color-mix(in srgb, var(--stat-card-text) 85%, transparent);
}

.section[data-block-type="stat_strip"][data-block-variant="highlight"] .stat-strip__highlight-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.section[data-block-type="stat_strip"][data-block-variant="highlight"] .stat-strip__highlight-meta-item {
  font-size: 0.95rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--stat-card-text) 78%, transparent);
}

.section[data-block-type="stat_strip"][data-block-variant="highlight"] .stat-strip__highlight-meta-item--muted {
  color: color-mix(in srgb, var(--stat-card-text) 62%, transparent);
}

/* Stat strip: cards / three-up variants */
.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__grid {
  row-gap: clamp(24px, 4vw, 36px);
}

.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__card {
  position: relative;
  padding: clamp(24px, 3vw, 34px);
  gap: clamp(16px, 2vw, 20px);
  background: color-mix(in srgb, var(--stat-card-surface) 90%, var(--stat-card-surface-muted) 10%);
  color: var(--stat-card-text);
  border: 1px solid color-mix(in srgb, var(--stat-card-surface-muted) 72%, var(--stat-card-surface) 28%);
  border-radius: calc(var(--marketing-card-radius, var(--card-radius, 10px)) + 2px);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--stat-card-surface-muted) 70%, transparent),
    0 18px 38px rgba(15, 23, 42, 0.08);
  isolation: isolate;
  transition: none;
}

.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__card:focus-within,
.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__card:hover {
  border-color: color-mix(in srgb, var(--stat-card-accent) 55%, var(--stat-card-surface-muted) 45%);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--stat-card-surface-muted) 70%, transparent),
    0 22px 48px color-mix(in srgb, var(--stat-card-accent) 18%, rgba(15, 23, 42, 0.18));
}

.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__card::before {
  content: '';
  position: absolute;
  inset: clamp(18px, 2vw, 22px) auto clamp(18px, 2vw, 22px) clamp(18px, 2vw, 22px);
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--stat-card-accent) 85%, transparent) 0%,
    color-mix(in srgb, var(--stat-card-accent) 65%, transparent) 100%
  );
  opacity: 0.85;
}

.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__card.uk-card,
.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__card.uk-card-default {
  background: transparent;
  box-shadow: none;
}

.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__kpi {
  gap: clamp(8px, 1.4vw, 12px);
}

.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__value {
  font-size: clamp(2.9rem, 4vw, 3.9rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: color-mix(in srgb, var(--stat-card-accent) 75%, var(--stat-card-text) 25%);
}

.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__label-text {
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  line-height: 1.4;
  color: color-mix(in srgb, var(--stat-card-text) 82%, transparent);
}

.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__as-of {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--stat-card-text) 65%, transparent);
}

.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__benefit,
.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__benefit-placeholder {
  margin-top: clamp(16px, 2vw, 20px);
  padding-top: clamp(12px, 1.6vw, 16px);
  border-top: 1px solid color-mix(in srgb, var(--stat-card-surface-muted) 76%, var(--stat-card-surface) 24%);
}

.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__benefit {
  font-size: 1rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--stat-card-text) 78%, transparent);
}

.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__benefit-placeholder {
  min-height: 3.25rem;
}

.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__marquee {
  margin-top: clamp(14px, 2vw, 18px);
  padding-top: clamp(14px, 2vw, 18px);
  border-top: 1px solid color-mix(in srgb, var(--stat-card-surface-muted) 78%, var(--stat-card-surface) 22%);
  color: color-mix(in srgb, var(--stat-card-text) 62%, transparent);
}

/* ------------------------------------------------------------------ */
/*  CMS page content container                                         */
/* ------------------------------------------------------------------ */

body.page-render {
  --cms-content-padding: clamp(16px, 4vw, 28px);
}

body.page-render .qr-page-renderer {
  box-sizing: border-box;
  max-width: min(1200px, calc(100vw - var(--cms-content-padding) * 2));
  margin: 0 auto;
  padding-inline: var(--cms-content-padding);
  overflow-wrap: anywhere;
  width: 100%;
}

body.page-render .uk-container .qr-page-renderer {
  padding-inline: var(--cms-content-padding);
}

body.page-render .qr-page-renderer img,
body.page-render .qr-page-renderer video,
body.page-render .qr-page-renderer iframe {
  max-width: 100%;
  height: auto;
}

body.page-render .qr-page-renderer table {
  width: 100%;
}

/* ================================================================== */
/*  Mobile-first responsive rules for all page-module block types      */
/*                                                                      */
/*  Base styles = mobile.  Progressive enhancement via min-width.       */
/*  Breakpoints: 640px (sm), 768px (md), 960px (m/tablet), 1200px (l) */
/* ================================================================== */

/* ------------------------------------------------------------------ */
/*  Page modules grid container                                        */
/* ------------------------------------------------------------------ */

.page-modules__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 32px);
}

/* ------------------------------------------------------------------ */
/*  Section: mobile base overrides                                     */
/* ------------------------------------------------------------------ */

.section .uk-container-small {
  box-sizing: border-box;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
  position: relative;
}

.section .uk-container-large {
  box-sizing: border-box;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
  position: relative;
}

.section .uk-container-expand {
  box-sizing: border-box;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
  position: relative;
}

/* ------------------------------------------------------------------ */
/*  Hero block: mobile-first                                           */
/* ------------------------------------------------------------------ */

/* Hero CTA buttons: stack vertically on mobile, row on desktop */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.hero-cta-group > .uk-button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Hero centered CTA: full width text on mobile */
.section[data-block-type="hero"][data-block-variant="centered_cta"] .uk-width-2-3\@m {
  width: 100%;
}

/* Hero minimal: full width on mobile */
.section[data-block-type="hero"][data-block-variant="minimal"] .uk-width-3-4\@m {
  width: 100%;
}

/* Hero media variants: stack columns on mobile */
.section[data-block-type="hero"] .uk-width-1-2\@m {
  width: 100%;
}

@media (min-width: 960px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .hero-cta-group > .uk-button {
    width: auto;
  }

  .section[data-block-type="hero"][data-block-variant="centered_cta"] .uk-width-2-3\@m {
    width: 66.666%;
  }

  .section[data-block-type="hero"][data-block-variant="minimal"] .uk-width-3-4\@m {
    width: 75%;
  }

  .section[data-block-type="hero"] .uk-width-1-2\@m {
    width: 50%;
  }
}

/* Hero media video card: compact padding on mobile */
.hero-media-card {
  padding: clamp(16px, 4vw, 24px);
  border-radius: clamp(16px, 3vw, 24px);
}

.hero-media-card__frame {
  border-radius: clamp(12px, 2.5vw, 18px);
}

.hero-media-card__meta-actions {
  flex-direction: column;
}

@media (min-width: 640px) {
  .hero-media-card__meta-actions {
    flex-direction: row;
  }
}

/* Compact stat tiles when video replaces tile column */
.cs-stat-tiles-compact .cs-stat-tile {
  padding: 12px;
}

.cs-stat-tiles-compact .cs-stat-num {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.cs-stat-tiles-compact .uk-text-small {
  font-size: 0.75rem;
}

/* ------------------------------------------------------------------ */
/*  Feature list: mobile-first                                         */
/* ------------------------------------------------------------------ */

/* Feature list grids: single column on mobile, responsive from @s */
.section[data-block-type="feature_list"] .uk-width-1-2\@s,
.section[data-block-type="feature_list"] .uk-width-1-2\@m {
  width: 100%;
}

.section[data-block-type="feature_list"] .uk-width-1-3\@s,
.section[data-block-type="feature_list"] .uk-width-1-3\@l {
  width: 100%;
}

@media (min-width: 640px) {
  .section[data-block-type="feature_list"] .uk-width-1-2\@s {
    width: 50%;
  }

  .section[data-block-type="feature_list"] .uk-width-1-3\@s {
    width: 33.333%;
  }
}

@media (min-width: 960px) {
  .section[data-block-type="feature_list"] .uk-width-1-2\@m {
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .section[data-block-type="feature_list"] .uk-width-1-3\@l {
    width: 33.333%;
  }
}

/* Feature grid: vertical spacing only — UIKit handles column gutters */
.section[data-block-type="feature_list"] [data-uk-grid] {
  row-gap: clamp(16px, 3vw, 30px);
}

/* Feature slider: full-width cards on mobile */
.feature-slider__list {
  gap: 16px;
}

.feature-card {
  padding: clamp(16px, 4vw, 24px);
}

/* Feature navigation pills: scrollable on mobile */
.feature-nav {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.feature-nav::-webkit-scrollbar {
  display: none;
}

.feature-nav__list {
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-bottom: 4px;
}

@media (min-width: 960px) {
  .feature-nav__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ------------------------------------------------------------------ */
/*  Stat strip: mobile-first enhancements                              */
/* ------------------------------------------------------------------ */

/* Cards variant: smaller values on mobile */
.section[data-block-type="stat_strip"]:is([data-block-variant="cards"], [data-block-variant="three-up"], [data-block-variant="three_up"]) .stat-strip__card {
  padding: clamp(18px, 4vw, 34px);
}

/* Hide benefit placeholder on mobile to save space */
@media (max-width: 639px) {
  .stat-strip__benefit-placeholder {
    display: none;
  }
}

/* Highlight variant: stack icon+content on very small screens */
@media (max-width: 479px) {
  .section[data-block-type="stat_strip"][data-block-variant="highlight"] .stat-strip__highlight-shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* Marquee tags: scrollable on mobile */
.stat-strip__marquee-tags {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding-bottom: 4px;
}

.stat-strip__marquee-tags::-webkit-scrollbar {
  display: none;
}

@media (min-width: 640px) {
  .stat-strip__marquee-tags {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
  }
}

/* ------------------------------------------------------------------ */
/*  Process steps: mobile-first                                        */
/* ------------------------------------------------------------------ */

/* Horizontal steps: single column on mobile, grid on desktop */
.section[data-block-type="process_steps"] .uk-grid[data-uk-grid] {
  gap: 0;
  row-gap: clamp(16px, 3vw, 24px);
}

/* Timeline (trust-story): mobile-optimised spacing */
.trust-story {
  list-style: none;
  margin: clamp(24px, 5vw, 44px) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 5vw, 36px);
}

.trust-story__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(12px, 3vw, 20px);
  align-items: start;
}

.trust-story__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.trust-story__badge {
  width: clamp(36px, 8vw, 48px);
  height: clamp(36px, 8vw, 48px);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--accent-primary, var(--brand-primary, #1e87f0)) 14%, var(--surface, #fff) 86%);
  color: var(--accent-primary, var(--brand-primary, #1e87f0));
  font-weight: 700;
  font-size: clamp(0.85rem, 2vw, 1rem);
  flex-shrink: 0;
  position: relative;
}

.trust-story__connector {
  display: block;
  width: 2px;
  flex: 1;
  min-height: 8px;
  background: color-mix(in srgb, var(--surface-muted, #eee) 80%, transparent);
}

.trust-story__connector--before {
  min-height: 0;
}

.trust-story__step:first-child .trust-story__connector--before {
  visibility: hidden;
}

.trust-story__step:last-child .trust-story__connector--after {
  visibility: hidden;
}

.trust-story__content {
  padding-bottom: clamp(8px, 2vw, 16px);
}

.trust-story__title {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  margin: 0 0 clamp(4px, 1vw, 8px);
}

.trust-story__text {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--color-text, #111) 78%, transparent);
}

.trust-story__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.trust-story__closing {
  margin-top: clamp(20px, 4vw, 36px);
}

.trust-story__closing-title {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin: 0 0 8px;
}

.trust-story__closing-text {
  margin: 0 0 16px;
  color: color-mix(in srgb, var(--color-text, #111) 78%, transparent);
}

/* Timeline header: stack on mobile */
.section[data-block-type="process_steps"][data-block-variant="timeline"] .uk-width-2-3\@m {
  width: 100%;
}

.section[data-block-type="process_steps"][data-block-variant="timeline"] .uk-width-1-3\@m {
  width: 100%;
}

@media (min-width: 960px) {
  .section[data-block-type="process_steps"][data-block-variant="timeline"] .uk-width-2-3\@m {
    width: 66.666%;
  }

  .section[data-block-type="process_steps"][data-block-variant="timeline"] .uk-width-1-3\@m {
    width: 33.333%;
  }
}

/* ------------------------------------------------------------------ */
/*  Contact form: mobile-first                                         */
/* ------------------------------------------------------------------ */

.section[data-block-type="contact_form"] .uk-width-1-2\@m {
  width: 100%;
}

.section[data-block-type="contact_form"] .uk-width-2-3\@m {
  width: 100%;
}

@media (min-width: 960px) {
  .section[data-block-type="contact_form"] .uk-width-1-2\@m {
    width: 50%;
  }

  .section[data-block-type="contact_form"] .uk-width-2-3\@m {
    width: 66.666%;
  }
}

/* Form elements: larger touch targets on mobile */
.section[data-block-type="contact_form"] .uk-input,
.section[data-block-type="contact_form"] .uk-textarea {
  font-size: 16px; /* prevents iOS zoom on focus */
  min-height: 44px;
}

.section[data-block-type="contact_form"] .uk-button {
  min-height: 48px;
  font-size: 1rem;
}

/* ------------------------------------------------------------------ */
/*  Testimonial: mobile-first                                          */
/* ------------------------------------------------------------------ */

/* Single quote card: full width on mobile */
.section[data-block-type="testimonial"] .uk-width-2-3\@m {
  width: 100%;
}

/* Quote wall: single column on mobile */
.section[data-block-type="testimonial"] .uk-width-1-2\@m {
  width: 100%;
}

@media (min-width: 960px) {
  .section[data-block-type="testimonial"] .uk-width-2-3\@m {
    width: 66.666%;
  }

  .section[data-block-type="testimonial"] .uk-width-1-2\@m {
    width: 50%;
  }
}

/* Testimonial: comfortable reading on mobile */
.section[data-block-type="testimonial"] blockquote .uk-text-lead {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.6;
}

/* ------------------------------------------------------------------ */
/*  CTA block: mobile-first                                            */
/* ------------------------------------------------------------------ */

/* CTA full-width: text container full-width on mobile */
.section[data-block-type="cta"] .uk-width-2-3\@m {
  width: 100%;
}

@media (min-width: 960px) {
  .section[data-block-type="cta"] .uk-width-2-3\@m {
    width: 66.666%;
  }
}

/* CTA buttons: stack on mobile */
.section[data-block-type="cta"] .uk-flex-column,
.trust-story__cta-group .uk-flex-column {
  gap: 12px;
}

.section[data-block-type="cta"] .uk-flex-column > .uk-button {
  width: 100%;
  justify-content: center;
}

@media (min-width: 960px) {
  .section[data-block-type="cta"] .uk-flex-column > .uk-button {
    width: auto;
  }
}

/* CTA split: stack on mobile */
.section[data-block-type="cta"][data-block-variant="split"] .uk-width-2-3\@m {
  width: 100%;
}

.section[data-block-type="cta"][data-block-variant="split"] .uk-width-1-3\@m {
  width: 100%;
  text-align: center;
}

@media (min-width: 960px) {
  .section[data-block-type="cta"][data-block-variant="split"] .uk-width-2-3\@m {
    width: 66.666%;
  }

  .section[data-block-type="cta"][data-block-variant="split"] .uk-width-1-3\@m {
    width: 33.333%;
    text-align: right;
  }
}

/* CTA newsletter: inline form */
.section[data-block-type="cta"][data-block-variant="newsletter"] .newsletter-inline-form {
  max-width: 520px;
  margin-inline: auto;
}

.section[data-block-type="cta"][data-block-variant="newsletter"] .newsletter-inline-form .uk-input {
  flex: 1 1 auto;
  min-width: 0;
}

.section[data-block-type="cta"][data-block-variant="newsletter"] .newsletter-inline-form .uk-button {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 959px) {
  .section[data-block-type="cta"][data-block-variant="newsletter"] .newsletter-inline-form .uk-button {
    width: 100%;
    justify-content: center;
  }
}

/* ------------------------------------------------------------------ */
/*  Info media: mobile-first                                           */
/* ------------------------------------------------------------------ */

.section[data-block-type="info_media"] .uk-width-1-2\@m {
  width: 100%;
}

@media (min-width: 960px) {
  .section[data-block-type="info_media"] .uk-width-1-2\@m {
    width: 50%;
  }
}

/* Info media images: full-width and rounded on mobile */
.section[data-block-type="info_media"] img {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 12px);
}

/* Info media switcher: stack on mobile, side-by-side on desktop */
.info-media-switcher {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4vw, 24px);
}

@media (min-width: 960px) {
  .info-media-switcher {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 2fr;
    gap: 32px;
  }
}

/* Switcher navigation */
.info-media-switcher__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-media-switcher__nav-link {
  display: block;
  padding: clamp(10px, 2vw, 14px) clamp(12px, 3vw, 18px);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
}

.info-media-switcher__nav-title {
  display: block;
  font-weight: 600;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

/* Switcher figure: image and caption stack */
.info-media-switcher__figure {
  margin: 0;
}

.info-media-switcher__visual-wrap {
  margin-bottom: clamp(12px, 3vw, 20px);
}

.info-media-switcher__visual img {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 12px);
  display: block;
}

/* ------------------------------------------------------------------ */
/*  FAQ: mobile-first                                                  */
/* ------------------------------------------------------------------ */

/* FAQ cards: reduce padding on mobile */
.section[data-block-type="faq"] .uk-card-body {
  padding: clamp(14px, 3vw, 30px);
}

.section[data-block-type="faq"] .uk-accordion-title {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.section[data-block-type="faq"] .uk-accordion-content {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.65;
}

/* ------------------------------------------------------------------ */
/*  Audience spotlight: mobile-first                                   */
/* ------------------------------------------------------------------ */

/* Tabs and tiles: single column on mobile, 2 columns from @s */
.section[data-block-type="audience_spotlight"] .uk-child-width-1-2\@s > *,
.section[data-block-type="audience_spotlight"] .uk-child-width-1-2\@m > * {
  width: 100%;
}

@media (min-width: 640px) {
  .section[data-block-type="audience_spotlight"] .uk-child-width-1-2\@s > * {
    width: 50%;
  }
}

@media (min-width: 960px) {
  .section[data-block-type="audience_spotlight"] .uk-child-width-1-2\@m > * {
    width: 50%;
  }
}

/* Audience subnav pills: horizontal scroll on mobile */
.section[data-block-type="audience_spotlight"] .uk-subnav {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 8px;
  padding-bottom: 4px;
}

.section[data-block-type="audience_spotlight"] .uk-subnav::-webkit-scrollbar {
  display: none;
}

@media (min-width: 640px) {
  .section[data-block-type="audience_spotlight"] .uk-subnav {
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

/* Usecase story + highlight: stack on mobile, side-by-side from @s */
.section[data-block-type="audience_spotlight"] .uk-child-width-1-2\@s[data-uk-grid] > *,
.section[data-block-type="audience_spotlight"] .uk-child-width-1-2\@m[data-uk-grid] > * {
  width: 100%;
}

@media (min-width: 640px) {
  .section[data-block-type="audience_spotlight"] .uk-child-width-1-2\@s[data-uk-grid] > * {
    width: 50%;
  }
}

@media (min-width: 960px) {
  .section[data-block-type="audience_spotlight"] .uk-child-width-1-2\@m[data-uk-grid] > * {
    width: 50%;
  }
}

/* ------------------------------------------------------------------ */
/*  Package summary: mobile-first                                      */
/* ------------------------------------------------------------------ */

/* Package cards: single column on mobile, responsive from @s */
.section[data-block-type="package_summary"] .uk-child-width-1-2\@s > *,
.section[data-block-type="package_summary"] .uk-child-width-1-2\@m > * {
  width: 100%;
}

.section[data-block-type="package_summary"] .uk-child-width-1-3\@s > *,
.section[data-block-type="package_summary"] .uk-child-width-1-3\@m > * {
  width: 100%;
}

@media (min-width: 640px) {
  .section[data-block-type="package_summary"] .uk-child-width-1-2\@s > * {
    width: 50%;
  }

  .section[data-block-type="package_summary"] .uk-child-width-1-3\@s > * {
    width: 33.333%;
  }
}

@media (min-width: 960px) {
  .section[data-block-type="package_summary"] .uk-child-width-1-2\@m > * {
    width: 50%;
  }

  .section[data-block-type="package_summary"] .uk-child-width-1-3\@m > * {
    width: 33.333%;
  }
}

/* ------------------------------------------------------------------ */
/*  Content slider: mobile-first                                       */
/* ------------------------------------------------------------------ */

.content-slider {
  overflow: hidden;
}

.content-slider__media img {
  width: 100%;
  height: auto;
  display: block;
}

.content-slider__body {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

/* Slider navigation: dots above arrows on mobile */
.content-slider .uk-slider-nav {
  gap: 6px;
}

/* ------------------------------------------------------------------ */
/*  Rich text (prose): mobile-first                                    */
/* ------------------------------------------------------------------ */

.section[data-block-type="rich_text"] {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section[data-block-type="rich_text"] img {
  max-width: 100%;
  height: auto;
}

.section[data-block-type="rich_text"] table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.section[data-block-type="rich_text"] pre {
  overflow-x: auto;
  max-width: 100%;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

/* ------------------------------------------------------------------ */
/*  Proof (metric callout): mobile-first                               */
/* ------------------------------------------------------------------ */

.section[data-block-type="proof"] .uk-card-body {
  padding: clamp(16px, 3vw, 30px);
}

/* ------------------------------------------------------------------ */
/*  System module (legacy): mobile-first                               */
/* ------------------------------------------------------------------ */

.section[data-block-type="system_module"] .uk-child-width-1-2\@s > *,
.section[data-block-type="system_module"] .uk-child-width-1-2\@m > * {
  width: 100%;
}

@media (min-width: 640px) {
  .section[data-block-type="system_module"] .uk-child-width-1-2\@s > * {
    width: 50%;
  }
}

@media (min-width: 960px) {
  .section[data-block-type="system_module"] .uk-child-width-1-2\@m > * {
    width: 50%;
  }
}

/* ------------------------------------------------------------------ */
/*  Shared: UIkit grid row-gap overrides                               */
/* ------------------------------------------------------------------ */

/*
 * UIKit grids use margin-left/padding-left for column gutters — NOT CSS
 * column-gap.  Adding column-gap on top of UIKit's padding causes flex
 * items with percentage widths (e.g. 33.333%) to overflow and wrap
 * prematurely.  Only row-gap is set here; horizontal spacing comes from
 * UIKit's own gutter system.
 */
.section .uk-grid-large[data-uk-grid] {
  row-gap: clamp(16px, 4vw, 30px);
}

.section .uk-grid-medium[data-uk-grid] {
  row-gap: clamp(14px, 3vw, 25px);
}

.section .uk-grid-small[data-uk-grid] {
  row-gap: clamp(12px, 2.5vw, 20px);
}

/* ------------------------------------------------------------------ */
/*  Shared: responsive grid width utilities                            */
/*  (UIKit equivalents for CMS pages where UIKit is not loaded)        */
/* ------------------------------------------------------------------ */

/* @s breakpoint (640px) */
.section .uk-width-1-2\@s {
  width: 100%;
}

.section .uk-child-width-1-2\@s > * {
  width: 100%;
}

.section .uk-width-1-3\@s {
  width: 100%;
}

.section .uk-child-width-1-3\@s > * {
  width: 100%;
}

@media (min-width: 640px) {
  .section .uk-width-1-2\@s {
    width: 50%;
  }
  .section .uk-child-width-1-2\@s > * {
    width: 50%;
  }
  .section .uk-width-1-3\@s {
    width: 33.333%;
  }
  .section .uk-child-width-1-3\@s > * {
    width: 33.333%;
  }
}

/* Tablet @s override: ensure 3-column grids inside block-type
   sections are not blocked by block-specific @m defaults. */
@media (min-width: 640px) {
  .section[data-block-type] .uk-child-width-1-3\@s > * {
    width: 33.333%;
  }
  .section[data-block-type] .uk-width-1-3\@s {
    width: 33.333%;
  }
}

/* @m breakpoint (960px) – generic fallback */
.section .uk-width-1-3\@m {
  width: 100%;
}

.section .uk-child-width-1-3\@m > * {
  width: 100%;
}

.section .uk-width-1-4\@m {
  width: 100%;
}

.section .uk-child-width-1-4\@m > * {
  width: 100%;
}

@media (min-width: 960px) {
  .section .uk-width-1-3\@m {
    width: 33.333%;
  }
  .section .uk-child-width-1-3\@m > * {
    width: 33.333%;
  }
  .section .uk-width-1-4\@m {
    width: 25%;
  }
  .section .uk-child-width-1-4\@m > * {
    width: 25%;
  }
}

/* @l breakpoint (1200px) */
.section .uk-width-1-3\@l {
  width: 100%;
}

.section .uk-child-width-1-3\@l > * {
  width: 100%;
}

.section .uk-width-1-4\@l {
  width: 100%;
}

.section .uk-child-width-1-4\@l > * {
  width: 100%;
}

.section .uk-child-width-1-5\@l > * {
  width: 100%;
}

.section .uk-child-width-1-6\@l > * {
  width: 100%;
}

@media (min-width: 1200px) {
  .section .uk-width-1-3\@l {
    width: 33.333%;
  }
  .section .uk-child-width-1-3\@l > * {
    width: 33.333%;
  }
  .section .uk-width-1-4\@l {
    width: 25%;
  }
  .section .uk-child-width-1-4\@l > * {
    width: 25%;
  }
  .section .uk-child-width-1-5\@l > * {
    width: 20%;
  }
  .section .uk-child-width-1-6\@l > * {
    width: 16.666%;
  }
}

/* ------------------------------------------------------------------ */
/*  Shared: UIkit heading responsive scaling                           */
/* ------------------------------------------------------------------ */

.section .uk-heading-medium {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.section .uk-heading-small {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  line-height: 1.2;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.section .uk-heading-large {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.section .uk-text-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
}

/* Decorative heading classes: word-break + overflow handling */
.section .uk-heading-line,
.section .uk-heading-bullet {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* uk-h2 – UIkit default ~1.7rem */
.section .uk-h2,
.section h2:not([class*="uk-heading"]) {
  font-size: clamp(1.35rem, 3.5vw, 1.7rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* uk-h3 – UIkit default ~1.5rem */
.section .uk-h3,
.section h3:not([class*="uk-heading"]):not(.uk-card-title) {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* uk-h4 – UIkit default ~1.25rem */
.section .uk-h4,
.section h4 {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* uk-h5 – UIkit default ~1rem */
.section .uk-h5,
.section h5 {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* uk-h6 – UIkit default ~0.875rem */
.section .uk-h6,
.section h6 {
  font-size: clamp(0.8rem, 1.8vw, 0.875rem);
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* uk-card-title – UIkit default ~1.5rem */
.section .uk-card-title {
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* uk-text-meta – UIkit default ~0.875rem */
.section .uk-text-meta {
  font-size: clamp(0.75rem, 1.6vw, 0.875rem);
  line-height: 1.4;
}

/* ------------------------------------------------------------------ */
/*  Shared: UIkit button responsive sizing                             */
/* ------------------------------------------------------------------ */

.section .uk-button {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  padding: clamp(8px, 1.5vw, 12px) clamp(18px, 3vw, 32px);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section .uk-button-large {
  padding: clamp(10px, 2vw, 16px) clamp(22px, 4vw, 40px);
  min-height: 48px;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
}

/* ------------------------------------------------------------------ */
/*  Shared: card responsive padding                                    */
/* ------------------------------------------------------------------ */

.section .uk-card-body {
  padding: clamp(16px, 4vw, 40px);
}

/* ------------------------------------------------------------------ */
/*  Shared: unified card appearance                                    */
/* ------------------------------------------------------------------ */

.section .uk-card {
  border-radius: var(--marketing-card-radius, var(--card-radius, 10px));
  border: 1px solid var(--border-muted, #dfe3eb);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.section .uk-card-hover:hover {
  border-color: var(--accent-primary, var(--brand-primary, #1e87f0));
  box-shadow: 0 4px 24px color-mix(in srgb, var(--accent-primary, #1e87f0) 10%, transparent);
}

/* ------------------------------------------------------------------ */
/*  Shared: eyebrow spacing consistency                                */
/* ------------------------------------------------------------------ */

.section .uk-text-meta + .uk-heading-medium,
.section .uk-text-meta + .uk-heading-small,
.section .uk-text-meta + .uk-heading-large {
  margin-top: 0.35em;
}

/* ------------------------------------------------------------------ */
/*  Shared: refined badges / labels                                    */
/* ------------------------------------------------------------------ */

.section .uk-label {
  border-radius: 6px;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  padding: 4px 10px;
}

/* ------------------------------------------------------------------ */
/*  Safe area padding for notched devices                              */
/* ------------------------------------------------------------------ */

@supports (padding: env(safe-area-inset-left)) {
  .section .uk-container,
  .section .uk-container-small,
  .section .uk-container-large,
  .section .uk-container-expand {
    padding-left: max(clamp(16px, 4vw, 40px), env(safe-area-inset-left));
    padding-right: max(clamp(16px, 4vw, 40px), env(safe-area-inset-right));
  }
}

/* ------------------------------------------------------------------ */
/*  Feature list: clustered-tabs variant                               */
/* ------------------------------------------------------------------ */

.section[data-block-variant="clustered-tabs"] .uk-tab {
  margin-bottom: clamp(20px, 4vw, 32px);
}

.section[data-block-variant="clustered-tabs"] .uk-tab > li > a {
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  text-transform: none;
}

.section[data-block-variant="clustered-tabs"] .uk-switcher > :not(.uk-active) {
  display: none;
}

.section[data-block-variant="clustered-tabs"] .uk-switcher > .uk-active {
  animation: clustered-tabs-fade .4s ease both;
}

@keyframes clustered-tabs-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------------ */
/*  Hydration gate – hide page root until JS hydration completes       */
/* ------------------------------------------------------------------ */

.cms-page[data-page-root]:not([data-hydrated]) {
  opacity: 0;
}
