:root {
  /* Theme Colors - Light minimalist with cool blue accents */
  --bg-body: #ffffff;
  --bg-card: #f8fafc;
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --link: #2b6cb0;
  --link-hover: #1a4f7a;
  --color-accent: #2b6cb0; /* Cool blue */
  --color-accent-fg: #ffffff;
  --footer-bg: #1a202c;
  --footer-text: #cbd5e0;
  --footer-link: #90cdf4;
  --footer-link-hover: #63b3ed;

  /* Spacing Scale (4px base) */
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  --border-radius: 8px;
  --site-max-width:1200px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-primary);
  background-color: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-4) 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--space-6);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-4);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-3);
}

p {
  margin: 0 0 var(--space-4) 0;
  color: var(--text-secondary);
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.site-container {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

main {
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.section {
  padding: var(--space-12) 0;
}

@media (max-width: 720px) {
  .section {
    padding: var(--space-8) 0;
  }
}

/* Grid Layout System */
.grid-layout {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}

@media (min-width: 721px) {
  .grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 961px) {
  .grid-layout.bp-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Header & Navigation */
.site-header {
  background: var(--bg-body);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  gap: var(--space-4);
}

.site-logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.site-nav-list {
  display: flex;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav-list a {
  display: inline-flex;
  align-items: center;
  padding: var(--space-2) var(--space-3);
  line-height: 1.1;
  font-weight: 500;
  border-radius: var(--border-radius);
  color: var(--text-secondary);
}

.site-nav-list a:hover,
.site-nav-list a:focus {
  background: var(--bg-card);
  color: var(--color-accent);
  text-decoration: none;
}

/* Mobile Menu */
.site-header-inner {
  position: relative;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
  position: relative;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: 0.3s ease;
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--bg-card, var(--bg-body, #fff));
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
    z-index: 1001;
    padding: 12px;
  }
  .site-nav.is-open {
    display: flex !important;
  }
  .site-nav-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .site-nav-list a {
    display: block;
    padding: 12px;
  }
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Components: Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  white-space: nowrap;
  border-radius: var(--border-radius);
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 8px;
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-accent-fg);
}

.btn-primary:hover {
  background-color: var(--link-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(43, 108, 176, 0.25);
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-accent-fg);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--bg-card);
  text-decoration: none;
}

/* Components: Cards & Panels */
.card {
  background: var(--bg-card);
  border-radius: var(--border-radius);
  padding: var(--space-6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Blueprint: Panelled & KPI */
.bp-panel-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 721px) {
  .bp-panel-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bp-kpi-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 721px) {
  .bp-kpi-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.kpi-card {
  text-align: center;
  padding: var(--space-6);
}

/* Hero Specifics */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

/* Forms */
.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  background: var(--bg-body);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

/* Footer */
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: var(--space-8) 0 var(--space-4);
  margin-top: var(--space-12);
}

.site-footer a {
  color: var(--footer-link);
}

.site-footer a:hover {
  color: var(--footer-link-hover);
}

.site-footer-inner {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

@media (min-width: 721px) {
  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-meta {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-4);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: var(--space-4);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: var(--site-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* Reveal Animation (Scroll) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* AUTO-PATCHED: Show burger button on mobile */
@media (max-width: 720px){
  .nav-toggle{display:inline-flex !important}
}


/* AUTO-PATCHED: Vertical rhythm safety */
:where(main section, main .section){padding:56px 0}
@media (max-width:720px){:where(main section, main .section){padding:40px 0}}
:where(main h2, main h3){margin:0 0 14px}
:where(main p, main ul, main ol){margin:0 0 14px}
:where(main ul, main ol){padding-left:1.2em}
:where(main .grid-layout){gap:20px}
:where(main .card){padding:24px}
:where(main .hero-actions, main .form-actions){margin-top:18px;margin-bottom:28px;gap:14px;flex-wrap:wrap}


/* AUTO-PATCHED: Hero CTA spacing (v1) */
:where(main .hero-cta){margin-top:18px;margin-bottom:28px;display:flex;gap:14px;flex-wrap:wrap}


/* AUTO-PATCHED: Card text contrast safety (v1) */
.card{color:var(--text-primary, currentColor) !important}
.card :where(p,li){color:var(--text-secondary, var(--text-primary, currentColor)) !important}
.card :where(h1,h2,h3,h4,h5,h6){color:var(--text-primary, currentColor) !important}



/* AUTO-PATCHED: Blueprint grid layout safety (v1) */
.grid-layout.bp-grid-2,.bp-grid-2.grid-layout{grid-template-columns:repeat(2,minmax(0,1fr)) !important}
.grid-layout.bp-grid-3,.bp-grid-3.grid-layout{grid-template-columns:repeat(3,minmax(0,1fr)) !important}
@media (max-width:960px){.grid-layout.bp-grid-3,.bp-grid-3.grid-layout{grid-template-columns:repeat(2,minmax(0,1fr)) !important}}
@media (max-width:720px){.grid-layout.bp-grid-2,.bp-grid-2.grid-layout,.grid-layout.bp-grid-3,.bp-grid-3.grid-layout{grid-template-columns:1fr !important}}
.bp-zigzag-row.grid-layout{grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important;gap:24px;align-items:start}
@media (max-width:960px){.bp-zigzag-row.grid-layout{grid-template-columns:1fr !important}}
.bp-panel-grid.grid-layout{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:20px}
@media (max-width:720px){.bp-panel-grid.grid-layout{grid-template-columns:1fr !important}}
.bp-kpi-grid.grid-layout{grid-template-columns:repeat(3,minmax(0,1fr)) !important;gap:20px}
@media (max-width:960px){.bp-kpi-grid.grid-layout{grid-template-columns:repeat(2,minmax(0,1fr)) !important}}
@media (max-width:720px){.bp-kpi-grid.grid-layout{grid-template-columns:1fr !important}}


/* AUTO-PATCHED: Blueprint grid layout safety (v2) */
.grid-layout.bp-grid-4,.bp-grid-4.grid-layout{grid-template-columns:repeat(4,minmax(0,1fr)) !important}
@media (max-width:960px){.grid-layout.bp-grid-4,.bp-grid-4.grid-layout{grid-template-columns:repeat(2,minmax(0,1fr)) !important}}
@media (max-width:720px){.grid-layout.bp-grid-4,.bp-grid-4.grid-layout{grid-template-columns:1fr !important}}
.bp-panel-grid.grid-layout > .bp-panel{grid-column:auto !important}
.bp-kpi-grid.grid-layout > .kpi-card{grid-column:auto !important}


/* AUTO-PATCHED: Mobile stack safety (v1) */
@media (max-width:720px){
  main .grid-layout{grid-template-columns:1fr !important}
  main .grid-layout.bp-grid-2,
  main .grid-layout.bp-grid-3,
  main .bp-grid-2,
  main .bp-grid-3{grid-template-columns:1fr !important}
  main .bp-hero-grid{grid-template-columns:1fr !important}
  main .bp-kpi-grid{grid-template-columns:1fr !important}
  main .bp-panelled{display:grid !important;grid-template-columns:1fr !important}
  main .bp-hero-split{display:grid !important;grid-template-columns:1fr !important}
  main .bp-editorial{display:grid !important;grid-template-columns:1fr !important}
  main .bp-zigzag-row{display:grid !important;grid-template-columns:1fr !important}
  main .bp-hero-grid > *,
  main .grid-layout > *,
  main .bp-grid-2 > *,
  main .bp-grid-3 > *,
  main .bp-kpi-grid > *,
  main .bp-panelled > *,
  main .bp-hero-split > *,
  main .bp-editorial > *{min-width:0}
}


/* AUTO-PATCHED: Footer copyright centered (v1) */
.site-footer-meta{display:block !important;text-align:center !important;justify-content:initial !important;align-items:initial !important;gap:0 !important;flex-wrap:initial !important}
.site-footer-meta{letter-spacing:normal !important;word-spacing:normal !important}

/* AUTO-PATCHED: Footer grid columns (v5) */
@media (min-width:721px){
  .site-footer .site-footer-inner{display:grid !important;grid-template-columns:minmax(0,1.25fr) minmax(0,1fr) !important;gap:clamp(18px,3vw,64px) !important;align-items:start}
  .site-footer .site-footer-left{display:flex !important;flex-direction:column !important;gap:18px !important}
  .site-footer .site-footer-right{display:grid !important;grid-template-columns:minmax(0,1fr) minmax(0,1fr) !important;gap:clamp(18px,3vw,56px) !important;justify-content:end !important}
  .site-footer .site-footer-brand,.site-footer .site-footer-contact{justify-self:start !important}
  .site-footer .site-footer-links,.site-footer .site-footer-legal,.site-footer .site-footer-nav{justify-self:start !important}
  .site-footer .site-footer-meta{grid-column:1 / -1 !important}
}


/* AUTO-PATCHED: Footer brand title polish (v3) */
.site-footer-brand{display:flex;flex-direction:column;gap:10px}
@media (min-width:721px){.site-footer-brand{text-align:left;align-items:flex-start}}
.site-footer-title{font-weight:800;font-size:clamp(1.1rem,2.2vw,1.6rem);line-height:1.1;letter-spacing:-0.02em;color:var(--text-body, var(--text-footer, #fff))}
.site-footer-note{max-width:36ch;opacity:0.82}




/* AUTO-PATCHED: Footer mobile blocks centered (v5) */
@media (max-width:720px){
  .site-footer .site-footer-inner{display:grid !important;grid-template-columns:1fr !important;justify-items:center !important;align-items:center !important;gap:24px !important}
  .site-footer .site-footer-left,
  .site-footer .site-footer-right,
  .site-footer .site-footer-brand,
  .site-footer .site-footer-contact,
  .site-footer .site-footer-links,
  .site-footer .site-footer-legal,
  .site-footer .site-footer-nav,
  .site-footer .site-footer-meta{text-align:center !important}
  .site-footer .site-footer-brand{align-items:center !important}
  .site-footer .site-footer-left{display:flex !important;flex-direction:column !important;gap:18px !important;align-items:center !important;justify-self:center !important}
  .site-footer .site-footer-right{display:grid !important;grid-template-columns:1fr !important;justify-items:center !important;gap:24px !important;justify-self:center !important}
  .site-footer .site-footer-contact{margin-top:4px !important;align-items:center !important}
  .site-footer .site-footer-contact-item{justify-content:center !important}
  .site-footer .site-footer-nav,.site-footer .site-footer-links,.site-footer .site-footer-legal{align-items:center !important}
}


/* AUTO-PATCHED: Brand logo emphasis (v1) */
.site-logo{font-weight:900 !important;font-size:clamp(1.15rem,2.1vw,1.5rem) !important;letter-spacing:-0.02em !important;text-decoration:none}
.site-logo:hover,.site-logo:focus-visible{text-decoration:none}
.site-footer-title{font-weight:900 !important;font-size:clamp(1.2rem,2.6vw,1.85rem) !important;letter-spacing:-0.03em !important}
.site-logo span{font-weight:900 !important}


/* AUTO-PATCHED: Burger layering */
@media (max-width:720px){
  .site-header-inner{position:relative}
  .site-header .site-nav{position:relative;z-index:1001}
  .site-header .nav-toggle{position:relative;z-index:1002;pointer-events:auto}
}


/* AUTO-PATCHED: Burger toggle anchored (v2) */
@media (max-width:720px){
  .site-header .site-container{position:relative !important}
  .site-header .site-header-inner{position:relative !important}
  .site-header .nav-toggle,
  .site-header [data-nav-toggle]{position:absolute !important;top:50% !important;right:0 !important;left:auto !important;bottom:auto !important;margin:0 !important;transform:translateY(-50%) !important;z-index:1002 !important}
  .site-header .nav-toggle.is-open,
  .site-header [data-nav-toggle].is-open{position:absolute !important;top:50% !important;right:0 !important;left:auto !important;bottom:auto !important;margin:0 !important;transform:translateY(-50%) !important}
  .site-header .nav-toggle span{position:relative !important;top:auto !important;left:auto !important;right:auto !important;bottom:auto !important}
}


/* AUTO-PATCHED: Mobile nav dropdown positioning (v3) */
@media (max-width:720px){
  .site-header .site-header-inner{position:relative}
  .site-header .site-nav{position:static !important}
  .site-header .site-nav.is-open .site-nav-list{position:absolute !important;top:100% !important;left:0 !important;right:0 !important;z-index:1003 !important;flex-direction:column !important;background:var(--contract-surface, var(--bg-card, #fff)) !important;border:1px solid var(--contract-border, var(--border-light, rgba(0,0,0,0.12))) !important;border-top:0 !important;box-shadow:0 8px 24px rgba(0,0,0,0.12) !important;padding:12px 16px !important}
  .site-header .site-nav.is-open .site-nav-list a{padding:10px 12px !important}
}


/* AUTO-PATCHED: Mobile nav closed by default (v2) */
@media (max-width: 720px){
  .site-header .site-nav .site-nav-list{display:none !important}
  .site-header .site-nav.is-open .site-nav-list{display:flex !important}
}
/* Auto-injected: generated images */
.generated-site-image {
  max-width: 100%;
  height: auto;
  display: block;
}


/* AUTO-PATCHED: cta-group margin-bottom (v1) */
.cta-group{margin-bottom:15px !important}


/* AUTO-PATCHED: Icon sizing safety (v1) */
.icon{width:20px !important;height:20px !important;display:inline-flex !important;align-items:center !important;justify-content:center !important;flex:0 0 auto !important;vertical-align:middle !important;line-height:0 !important}
svg.icon{width:20px !important;height:20px !important}
.icon svg{width:100% !important;height:100% !important;display:block !important}
.site-footer-icon svg{width:18px !important;height:18px !important}


/* AUTO-PATCHED: bp-panel layout (v1) */
.bp-panel-grid{grid-template-columns:1fr !important}
.bp-panel{display:grid !important;grid-template-columns:minmax(0,1fr) auto;gap:16px;align-items:center}
.bp-panel .panel-content{min-width:0}
.bp-panel .panel-visual{display:flex;align-items:center;gap:10px;justify-content:flex-start;white-space:nowrap}
.bp-panel .panel-visual span{font-weight:700}
@media (max-width:720px){.bp-panel{grid-template-columns:1fr !important}.bp-panel .panel-visual{white-space:normal}}


/* AUTO-PATCHED: bp-panel layout (v2) */
.bp-panel.card{display:flex !important;flex-direction:column;align-items:flex-start;gap:12px}
.bp-panel.card > *{min-width:0}
.bp-panel.card .panel-visual{display:flex;align-items:center;gap:10px;justify-content:flex-start;white-space:nowrap}
@media (max-width:720px){.bp-panel.card .panel-visual{white-space:normal}}


/* AUTO-PATCHED: bp-stats layout (v1) */
.bp-stats.grid-layout{grid-template-columns:repeat(3,minmax(0,1fr)) !important}
@media (max-width:960px){.bp-stats.grid-layout{grid-template-columns:repeat(2,minmax(0,1fr)) !important}}
@media (max-width:720px){.bp-stats.grid-layout{grid-template-columns:1fr !important}}
.bp-stats > *{min-width:0}


/* AUTO-PATCHED: bp-stats layout (v2) */
.bp-stats.grid-layout.bp-grid-2{grid-template-columns:repeat(2,minmax(0,1fr)) !important}
.bp-stats.grid-layout.bp-grid-3{grid-template-columns:repeat(3,minmax(0,1fr)) !important}
@media (max-width:720px){.bp-stats.grid-layout.bp-grid-2,.bp-stats.grid-layout.bp-grid-3{grid-template-columns:1fr !important}}


/* AUTO-PATCHED: Overflow safety */
.site-container,.container{overflow-x:clip}
.bp-hero-grid > *, .grid-layout > *, .bp-grid-2 > *, .bp-grid-3 > *, .bp-kpi-grid > *{min-width:0}
img,svg,video,canvas,iframe{max-width:100%;height:auto}


/* AUTO-PATCHED: Overflow safety (v2) */
html,body{overflow-x:clip}
@supports not (overflow:clip){html,body{overflow-x:hidden}}
.site-container,.container{overflow-x:clip}
main > section > img, main > section > picture, main > section > video{display:block;width:100%;max-width:var(--site-max-width,1200px);height:auto;margin-left:auto;margin-right:auto}
main > section > picture > img{display:block;width:100%;max-width:100%;height:auto}
.bp-hero-grid > *, .grid-layout > *, .bp-grid-2 > *, .bp-grid-3 > *, .bp-kpi-grid > *{min-width:0}
.site-footer .site-footer-inner > *{min-width:0}
.site-footer .site-footer-right, .site-footer .site-footer-links, .site-footer .site-footer-legal{min-width:0}
.site-footer .site-footer-contact-item, .site-footer .site-footer-contact-text{min-width:0}
.site-footer .site-footer-contact-text, .site-footer .site-footer-links a, .site-footer .site-footer-legal a{overflow-wrap:anywhere;word-break:break-word}
img,svg,video,canvas,iframe{max-width:100%;height:auto}
table,pre,code{max-width:100%;overflow-x:auto}


/* AUTO-PATCHED: Max width clamp (prevents oversized blocks) */
:root{--site-max-width:1200px;}
html, body{max-width:100%;overflow-x:clip}
.site-container,.container{width:min(100%, var(--site-max-width,1200px)) !important;max-width:var(--site-max-width,1200px) !important}
.site-header,.site-footer,main,section,header,footer,nav,.card,.grid-layout,.bp-hero-grid,.bp-grid-2,.bp-grid-3,.bp-kpi-grid{max-width:100%}
img,svg,video,canvas,iframe,table,pre,code{max-width:100%}




























/* AUTO-PATCHED: timeline-steps spacing (v1) */
:where(.timeline-steps){display:grid;gap:16px;max-width:100%}
:where(.timeline-steps .timeline-step){min-width:0}
:where(.timeline-steps .timeline-step.card){padding:18px !important;border-radius:12px}
:where(.timeline-steps .step-header){display:flex;align-items:center;gap:12px;margin-bottom:10px;min-width:0}
:where(.timeline-steps .step-number){flex:0 0 44px;width:44px;height:44px;min-width:44px;display:inline-flex;align-items:center;justify-content:center;line-height:1;font-weight:800;border-radius:999px;white-space:nowrap;position:static !important;transform:none !important;margin:0 !important}
@media (max-width:720px){:where(.timeline-steps){gap:12px}:where(.timeline-steps .timeline-step.card){padding:16px !important}:where(.timeline-steps .step-number){flex-basis:36px;width:36px;height:36px;min-width:36px}}


/* AUTO-PATCHED: Section container spacing (v1) */
:where(main > section.section > .site-container + .site-container){margin-top:var(--space-xl,24px)}
@media (max-width:720px){:where(main > section.section > .site-container + .site-container){margin-top:var(--space-l,20px)}}


/* AUTO-PATCHED: Hero-under spacing (v1) */
:where(.section-hero .bp-hero-grid){margin-bottom:var(--space-xl,24px)}
@media (max-width:720px){:where(.section-hero .bp-hero-grid){margin-bottom:var(--space-l,20px)}}

























/* AUTO-PATCHED: bp-zigzag spacing (v1) */
:where(.bp-zigzag .bp-zigzag-row){margin:0}
:where(.bp-zigzag .bp-zigzag-row + .bp-zigzag-row){margin-top:20px}
@media (max-width:720px){:where(.bp-zigzag .bp-zigzag-row + .bp-zigzag-row){margin-top:16px}}














/* AUTO-PATCHED: Section child clamp (v1) */
main > section > :where(.grid-layout,.bp-grid-2,.bp-grid-3,.bp-grid-4,.bp-kpi-grid,.bp-panel-grid,.bp-zigzag,.bp-timeline,.bp-hero-grid){max-width:var(--site-max-width,1200px);margin-left:auto;margin-right:auto;padding-left:var(--space-m,16px);padding-right:var(--space-m,16px)}
main > section > :where(img,video,picture,svg){max-width:var(--site-max-width,1200px);margin-left:auto;margin-right:auto}


/* AUTO-PATCHED: Light-theme button text safety (v1) */
:root{--btn-text-secondary:var(--text-primary, #0f172a)}
:where(.btn-secondary,.btn-outline){color:var(--btn-text-secondary) !important;border-color:var(--border-color, rgba(15,23,42,.25)) !important}
:where(.btn-secondary:hover,.btn-outline:hover){background:rgba(15,23,42,.06) !important;color:var(--btn-text-secondary) !important}




/* AUTO-PATCHED: Bootstrap row clamp (v1) */
main :where(.row){margin-left:0 !important;margin-right:0 !important}


/* AUTO-PATCHED: Footer background safety (v2) */
.site-footer{background:var(--footer-bg, #f7f7f7) !important;color:var(--footer-text, #111) !important}
.site-footer a{color:var(--footer-link, #111) !important}
.site-footer a:hover,.site-footer a:focus-visible{color:var(--footer-link-hover, #000) !important}


/* AUTO-PATCHED: bp-editorial layout safety (v4) */
.bp-editorial{display:block !important}
.bp-editorial :where(.bp-editorial-grid){display:grid !important;grid-template-columns:minmax(0,2fr) minmax(0,1fr) !important;gap:24px;align-items:start}
@media (max-width:960px){.bp-editorial :where(.bp-editorial-grid){grid-template-columns:1fr !important}}
.bp-editorial > *, .bp-editorial :where(.bp-editorial-grid > *){min-width:0}
.bp-editorial :where(.bp-aside, aside.bp-aside){display:grid;gap:16px;align-content:start;min-width:0}
.bp-editorial :where(.bp-main, .main-col, .editorial-content){display:grid;gap:16px;min-width:0}
@supports(selector(:has(*))){.bp-editorial:has(> .bp-main, > .main-col, > .bp-aside, > aside.bp-aside){display:grid !important;grid-template-columns:minmax(0,2fr) minmax(0,1fr) !important;gap:24px;align-items:start}}
@supports(selector(:has(*))){@media (max-width:960px){.bp-editorial:has(> .bp-main, > .main-col, > .bp-aside, > aside.bp-aside){grid-template-columns:1fr !important}}}
.bp-editorial.grid-layout{display:grid !important;grid-template-columns:minmax(0,2fr) minmax(0,1fr) !important;gap:24px;align-items:start}
@media (max-width:960px){.bp-editorial.grid-layout{grid-template-columns:1fr !important}}




/* AUTO-PATCHED: hero-stats layout (v1) */
.hero-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:16px}
@media (max-width:720px){.hero-stats{grid-template-columns:1fr}}
.hero-stats .stat-item{padding:14px 16px;border:1px solid var(--border-color, rgba(0,0,0,0.12));border-radius:12px;background:var(--bg-card, #fff)}
.hero-stats .stat-value{font-size:clamp(1.2rem,2.6vw,1.7rem);font-weight:800;line-height:1.1;margin-bottom:6px}
.hero-stats .stat-label{color:var(--text-secondary, var(--text-primary, #111));font-size:0.95rem}


/* AUTO-PATCHED: bp-zigzag layout (v3) */
:where(.bp-zigzag){display:flex;flex-direction:column;gap:20px}
:where(.bp-zigzag .bp-zigzag-row){display:grid;grid-template-columns:minmax(0,1.4fr) minmax(0,0.9fr);gap:20px;align-items:center}
:where(.bp-zigzag .bp-zigzag-row > *){min-width:0}
:where(.bp-zigzag .bp-zigzag-row:nth-child(even)){grid-template-columns:minmax(0,0.9fr) minmax(0,1.4fr)}
@media (max-width:960px){:where(.bp-zigzag .bp-zigzag-row,:where(.bp-zigzag .bp-zigzag-row:nth-child(even))){grid-template-columns:1fr}}
@media (max-width:720px){:where(.bp-zigzag){gap:16px}}
:where(.bp-zigzag .row-visual){display:flex;align-items:center;justify-content:center;min-width:0}
:where(.bp-zigzag .row-visual svg){width:28px;height:28px}
@supports(selector(:has(*))){:where(.bp-zigzag .bp-zigzag-row:has(.row-visual)){display:flex;gap:16px;align-items:flex-start}}
@supports(selector(:has(*))){:where(.bp-zigzag .bp-zigzag-row:has(.row-visual) .row-visual){flex:0 0 44px;width:44px;height:44px}}
@supports(selector(:has(*))){:where(.bp-zigzag .bp-zigzag-row:has(.row-visual) .row-content){flex:1 1 auto;min-width:0}}




/* AUTO-PATCHED: Readability contrast safety (v2) */
:root{--contrast-safe-light-text:#0f172a;--contrast-safe-light-muted:#334155;--contrast-safe-dark-text:rgba(255,255,255,.96);--contrast-safe-dark-muted:rgba(255,255,255,.86)}
html,body{background-color:var(--bg-body,var(--color-bg-body,var(--color-bg,#ffffff))) !important;color:var(--text-primary,var(--color-text-primary,var(--color-text,#0f172a))) !important}
:where(.bg-white,[class*="bg-white"],[style*="background:#fff"],[style*="background: #fff"],[style*="background:#ffffff"],[style*="background: #ffffff"],[style*="background-color:#fff"],[style*="background-color: #fff"],[style*="background-color:#ffffff"],[style*="background-color: #ffffff"],.section--light,.section-light,.bg-light,.card-light,.light-card,.surface-light,[class*="section--light"],[class*="bg-light"]){color:var(--contrast-safe-light-text) !important}
:where(.bg-white,[class*="bg-white"],[style*="background:#fff"],[style*="background: #fff"],[style*="background:#ffffff"],[style*="background: #ffffff"],[style*="background-color:#fff"],[style*="background-color: #fff"],[style*="background-color:#ffffff"],[style*="background-color: #ffffff"],.section--light,.section-light,.bg-light,.card-light,.light-card,.surface-light,[class*="section--light"],[class*="bg-light"]) :where(h1,h2,h3,h4,h5,h6){color:var(--contrast-safe-light-text) !important}
:where(.bg-white,[class*="bg-white"],[style*="background:#fff"],[style*="background: #fff"],[style*="background:#ffffff"],[style*="background: #ffffff"],[style*="background-color:#fff"],[style*="background-color: #fff"],[style*="background-color:#ffffff"],[style*="background-color: #ffffff"],.section--light,.section-light,.bg-light,.card-light,.light-card,.surface-light,[class*="section--light"],[class*="bg-light"]) :where(p,li,span,small,label,em,blockquote){color:var(--contrast-safe-light-muted) !important}
:where(.section--dark,.section-dark,.bg-dark,.card-dark,.surface-dark,[class*="section--dark"],[class*="bg-dark"],[style*="background:#000"],[style*="background: #000"],[style*="background:#111"],[style*="background: #111"],[style*="background-color:#000"],[style*="background-color: #000"],[style*="background-color:#111"],[style*="background-color: #111"]){color:var(--contrast-safe-dark-text) !important}
:where(.section--dark,.section-dark,.bg-dark,.card-dark,.surface-dark,[class*="section--dark"],[class*="bg-dark"],[style*="background:#000"],[style*="background: #000"],[style*="background:#111"],[style*="background: #111"],[style*="background-color:#000"],[style*="background-color: #000"],[style*="background-color:#111"],[style*="background-color: #111"]) :where(h1,h2,h3,h4,h5,h6){color:var(--contrast-safe-dark-text) !important}
:where(.section--dark,.section-dark,.bg-dark,.card-dark,.surface-dark,[class*="section--dark"],[class*="bg-dark"],[style*="background:#000"],[style*="background: #000"],[style*="background:#111"],[style*="background: #111"],[style*="background-color:#000"],[style*="background-color: #000"],[style*="background-color:#111"],[style*="background-color: #111"]) :where(p,li,span,small,label,em,blockquote){color:var(--contrast-safe-dark-muted) !important}


/* AUTO-PATCHED: Blueprint hero split layout (v2) */
.bp-hero-split.grid-layout{grid-template-columns:minmax(0,1.3fr) minmax(0,1fr) !important;gap:24px;align-items:start}
@media (max-width:960px){.bp-hero-split.grid-layout{grid-template-columns:1fr !important}}
.bp-hero-split.grid-layout > *{min-width:0}
.bp-hero-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:20px}
.bp-hero-split .bp-hero-stats{grid-template-columns:1fr}


/* AUTO-PATCHED: bp-stats simple layout (v1) */
.bp-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:18px}
@media (max-width:720px){.bp-stats{grid-template-columns:1fr}}
.bp-stats .stat-item{padding:16px;border:1px solid var(--border-color, rgba(0,0,0,0.12));border-radius:12px;background:var(--bg-card, #fff)}
.bp-stats .stat-value{font-size:clamp(1.2rem,2.6vw,1.7rem);font-weight:800;line-height:1.1;margin-bottom:6px}
.bp-stats .stat-label{color:var(--text-secondary, var(--text-primary, #111));font-size:0.95rem}


/* AUTO-PATCHED: bp-timeline layout (v2) */
:where(.bp-timeline, .bp-timeline .timeline-list, section.bp-timeline .timeline-list){display:flex;flex-direction:column;gap:16px;max-width:100%;overflow-x:clip}
:where(.bp-timeline .timeline-item, .bp-timeline .timeline-step, section.bp-timeline .timeline-item){display:flex;align-items:flex-start;gap:14px;min-width:0;position:relative}
:where(.bp-timeline .timeline-marker, .bp-timeline .timeline-number, .bp-timeline .step-number, .bp-timeline .step-marker){flex:0 0 44px;width:44px;height:44px;min-width:44px;box-sizing:border-box;display:flex;align-items:center;justify-content:center;line-height:1;font-weight:800;white-space:nowrap;position:static !important;left:auto !important;right:auto !important;top:auto !important;bottom:auto !important;transform:none !important;margin:0 !important}
:where(.bp-timeline .timeline-content, .bp-timeline .step-content){flex:1 1 auto;min-width:0}
:where(.bp-timeline .timeline-content.card, .bp-timeline .step-content.card){min-width:0}
@media (max-width:720px){:where(.bp-timeline .timeline-item, .bp-timeline .timeline-step){gap:12px}:where(.bp-timeline .timeline-marker, .bp-timeline .timeline-number, .bp-timeline .step-number, .bp-timeline .step-marker){flex-basis:36px;width:36px;height:36px;min-width:36px}}


/* AUTO-PATCHED: Button text/hover contrast hardening (v2) */
:root{--btn-text:#fff;}
:where(.btn-primary,.btn-secondary,.btn-accent){color:var(--btn-text) !important}
:where(.btn-primary,.btn-secondary,.btn-accent):hover{color:var(--btn-text) !important}
:where(a.btn-primary,a.btn-secondary,a.btn-accent){color:var(--btn-text) !important}
:where(a.btn-primary,a.btn-secondary,a.btn-accent):hover{color:var(--btn-text) !important}


/* AUTO-PATCHED: Footer text contrast hardening (v9) */
:root{--footer-text:#fff;--footer-link:#fff;--footer-muted:rgba(255,255,255,.82);--footer-link-hover:var(--accent, var(--contract-accent, currentColor));}
.site-footer{color:var(--footer-text) !important}
.site-footer :where(h1,h2,h3,h4,h5,h6,.site-footer-title,.site-footer-col-title,.site-footer-contact-title){color:var(--footer-text) !important}
.site-footer a{color:var(--footer-link) !important}
.site-footer a:hover,.site-footer a:focus-visible{color:var(--footer-link-hover) !important}
.site-footer :where(p,li,span,small,label,em,blockquote){color:inherit !important}
.site-footer .site-footer-contact-item,.site-footer .site-footer-meta{color:var(--footer-muted) !important}


/* AUTO-PATCHED: Footer nav & hover safety (v4) */
.site-footer-nav,.site-footer-links,.site-footer-legal{display:flex !important;flex-direction:column !important;gap:10px !important}
.site-footer .site-footer-right .site-footer-links,.site-footer .site-footer-right .site-footer-legal{display:flex !important;flex-direction:column !important}
.site-footer-nav a,.site-footer-links a,.site-footer-legal a{display:block !important;align-items:center}
.site-footer a:hover,.site-footer a:focus-visible,.site-footer-nav a:hover,.site-footer-nav a:focus-visible,.site-footer-links a:hover,.site-footer-links a:focus-visible,.site-footer-legal a:hover,.site-footer-legal a:focus-visible{color:var(--contract-accent) !important}


/* AUTO-PATCHED: Footer flexora-style (v6) */
.site-footer{background:var(--footer-bg, var(--bg-footer, var(--bg-surface, var(--bg-body, #fff)))) !important;color:var(--footer-text, var(--text-footer, var(--text-body, var(--text-main, var(--text-primary, #111))))) !important}
.site-footer a{color:var(--footer-link, var(--link-footer, var(--link, currentColor))) !important;text-decoration:none}
.site-footer a:hover,.site-footer a:focus-visible{text-decoration:underline;color:var(--footer-link-hover, var(--link-footer-hover, var(--link-hover, var(--color-accent, currentColor)))) !important}
.site-footer .site-footer-col-title{margin:0 0 10px;font-size:1rem;font-weight:800;color:var(--footer-text, var(--text-footer, var(--footer-link-hover, var(--link-footer-hover, var(--footer-link, var(--link-footer, var(--text-body, var(--text-main, var(--text-primary, #111))))))))) }
.site-footer .site-footer-contact-title{margin:0 0 10px;font-size:1rem;font-weight:800;color:var(--footer-text, var(--text-footer, var(--footer-link-hover, var(--link-footer-hover, var(--footer-link, var(--link-footer, var(--text-body, var(--text-main, var(--text-primary, #111))))))))) }
.site-footer .site-footer-contact-item{color:var(--footer-muted, var(--footer-link, var(--link-footer, var(--text-muted, var(--text-secondary, var(--text-footer, var(--text-body, var(--text-main, var(--text-primary, #111)))))) )));margin:0 0 8px;display:flex;gap:10px;align-items:flex-start}
.site-footer .site-footer-icon{display:inline-flex;align-items:center;justify-content:center;opacity:0.9;flex:0 0 auto;margin-top:1px}
.site-footer .site-footer-icon svg{display:block}
.site-footer .site-footer-contact-text{display:inline-block;min-width:0}
.site-footer .site-footer-meta{border-top:1px solid var(--border-color, var(--border, rgba(0,0,0,0.12))) !important;margin-top:28px !important;padding-top:18px !important;color:var(--footer-muted, var(--footer-link, var(--link-footer, var(--text-muted, var(--text-secondary, var(--text-footer, var(--text-body, var(--text-main, var(--text-primary, #111))))))))) ) !important}


/* AUTO-PATCHED: Footer contrast safety (v5) */
.site-footer{background:var(--footer-bg, var(--bg-footer, var(--bg-card, var(--bg-surface, var(--bg-body, #fff))))) !important;color:var(--footer-text, var(--text-footer, var(--text-primary, #111))) !important}
.site-footer a{color:var(--footer-link, var(--link-footer, var(--link, var(--text-primary, #111)))) !important}
.site-footer a:hover,.site-footer a:focus-visible{color:var(--footer-link-hover, var(--link-footer-hover, var(--link-hover, var(--color-accent, var(--text-primary, #111))))) !important}
.site-footer .site-footer-contact-item{color:var(--footer-muted, var(--footer-link, var(--link-footer, var(--text-secondary, var(--text-footer, var(--text-primary, #111))))) ) !important}
.site-footer .site-footer-meta{color:var(--footer-muted, var(--footer-link, var(--link-footer, var(--text-secondary, var(--text-footer, var(--text-primary, #111))))) ) !important;border-top-color:var(--border-color, rgba(0,0,0,0.12)) !important}
.site-footer .site-footer-title,.site-footer .site-footer-col-title,.site-footer .site-footer-contact-title{color:var(--footer-text, var(--text-footer, var(--footer-link-hover, var(--link-footer-hover, var(--footer-link, var(--link-footer, var(--text-primary, #111))))))) !important}
