:root {
  --bg-body: #f0f4f8;
  --bg-card: #ffffff;
  --text-primary: #1a2a3a;
  --text-secondary: #4a5a6a;
  --text-muted: #6a7a8a;
  --link: #0066cc;
  --link-hover: #004a99;
  --color-accent: #00a8ff;
  --color-accent-fg: #ffffff;
  --color-accent-hover: #007acc;
  --footer-bg: #0a192f;
  --footer-text: #c0d0e0;
  --footer-link: #80a0c0;
  --footer-link-hover: #ffffff;
  --border-color: #d0e0f0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --radius: 8px;
  --radius-lg: 12px;
  --site-max-width:1200px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  --font-size-base: 16px;
  --font-size-h1: clamp(2rem, 4vw, 3rem);
  --font-size-h2: clamp(1.5rem, 3vw, 2rem);
  --font-size-h3: 1.25rem;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
  background-color: var(--bg-body);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: var(--font-size-base);
}

body {
  margin: 0;
  padding: 0;
}

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

.site-container {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  color: #0d2b4a;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: var(--font-size-h1);
  margin-bottom: var(--space-2xl);
}

h2 {
  font-size: var(--font-size-h2);
  margin-bottom: var(--space-xl);
}

h3 {
  font-size: var(--font-size-h3);
  margin-bottom: var(--space-lg);
}

p {
  margin-bottom: var(--space-lg);
  color: var(--text-secondary);
}

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

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

/* Layout */
.section {
  padding: var(--space-4xl) 0;
}

.section--light {
  background-color: var(--bg-card);
}

.section--dark {
  background-color: var(--footer-bg);
  color: var(--footer-text);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--footer-text);
}

.section--dark p {
  color: var(--footer-text);
}

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

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

/* Grid System */
.grid-layout {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: repeat(12, 1fr);
}

.bp-panel-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: repeat(12, 1fr);
}

.bp-panel {
  grid-column: span 6;
}

.bp-kpi-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: repeat(12, 1fr);
}

.kpi-card {
  grid-column: span 4;
}

.bp-hero-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}

.bp-hero-grid > *:first-child {
  grid-column: span 7;
}

.bp-hero-grid > *:last-child {
  grid-column: span 5;
}

/* Cards */
.card {
  background-color: var(--bg-card);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.card h3, .card h4 {
  color: var(--text-primary);
}

.card p {
  color: var(--text-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  white-space: nowrap;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  gap: var(--space-sm);
}

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

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 168, 255, 0.3);
}

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

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

.btn-outline {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

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

.hero-actions, .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background-color: var(--bg-card);
  color: var(--text-primary);
  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(0, 168, 255, 0.2);
}

.form-control::placeholder {
  color: var(--text-muted);
}

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

/* Header & Nav */
.site-header {
  background-color: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  min-height: 70px;
}

.site-logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: #0d2b4a;
  text-decoration: none;
}

.site-logo span {
  color: var(--color-accent);
}

.site-nav {
  display: flex;
}

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

.site-nav-list a {
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  line-height: 1.1;
}

.site-nav-list a:hover,
.site-nav-list a[aria-current="page"] {
  color: var(--color-accent);
  background-color: rgba(0, 168, 255, 0.05);
  border-radius: var(--radius);
}

/* Mobile Burger 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);
    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;
  }
}

.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);
}

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

.site-footer-inner {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: repeat(12, 1fr);
}

.site-footer-nav {
  grid-column: span 4;
}

.site-footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-nav li {
  margin-bottom: var(--space-sm);
}

.site-footer-nav a {
  color: var(--footer-link);
  font-weight: 500;
}

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

.site-footer-meta {
  grid-column: span 4;
  font-size: 0.9rem;
  color: var(--footer-text);
}

.site-footer-meta p {
  margin-bottom: var(--space-sm);
  color: inherit;
}

.site-footer-brand {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.site-footer-brand h4 {
  color: var(--footer-link-hover);
  margin: 0;
}

/* Icons */
.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  color: currentColor;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  z-index: 2000;
  width: 90%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

#cookie-banner p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

#cookie-banner .form-actions {
  gap: var(--space-md);
  justify-content: center;
}


/* 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: 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 flexora-style (v4) */
.site-footer{background:var(--bg-surface, var(--bg-body, #fff)) !important;color:var(--text-body, var(--text-main, var(--text-primary, #111))) !important}
.site-footer a{color:var(--text-muted, var(--text-secondary, var(--text-body, var(--text-main, var(--text-primary, #111))))) !important;text-decoration:none}
.site-footer a:hover,.site-footer a:focus-visible{text-decoration:underline}
.site-footer .site-footer-col-title{margin:0 0 10px;font-size:1rem;font-weight:800;color: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(--text-body, var(--text-main, var(--text-primary, #111)))}
.site-footer .site-footer-contact-item{color:var(--text-muted, var(--text-secondary, 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, rgba(0,0,0,0.12)) !important;margin-top:28px !important;padding-top:18px !important;color:var(--text-muted, var(--text-secondary, var(--text-body, var(--text-main, var(--text-primary, #111))))) !important}


/* AUTO-PATCHED: Footer contrast safety (v2) */
.site-footer{background:var(--footer-bg, var(--bg-surface, var(--bg-body, #fff))) !important;color:var(--footer-link, #cbd5e1) !important}
.site-footer a{color:var(--footer-link, #cbd5e1) !important}
.site-footer a:hover,.site-footer a:focus-visible{color:var(--footer-link-hover, #ffffff) !important}
.site-footer .site-footer-contact-item{color:var(--footer-link, #cbd5e1) !important}
.site-footer .site-footer-meta{color:var(--footer-link, #cbd5e1) !important;border-top-color:rgba(255,255,255,0.12) !important}
.site-footer .site-footer-title,.site-footer .site-footer-col-title,.site-footer .site-footer-contact-title{color:var(--footer-link-hover, #ffffff) !important}


/* 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-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: 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: bp-hero-grid container fix (v2) */
section.bp-hero-grid > .site-container{grid-column:1/-1;display:grid;gap:var(--space-20, var(--space-xl, 24px));grid-template-columns:1.2fr 1fr;align-items:center}
section.bp-hero-grid > .site-container > *{min-width:0}
@media (max-width:960px){section.bp-hero-grid > .site-container{grid-template-columns:1fr}}
@media (max-width:720px){section.bp-hero-grid > .site-container{grid-template-columns:1fr}}


/* 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: 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: bp-editorial layout safety (v1) */
.bp-editorial.grid-layout{display:grid !important;grid-template-columns:minmax(0,1fr) minmax(0,2fr) !important;gap:24px;align-items:start}
@media (max-width:960px){.bp-editorial.grid-layout{grid-template-columns:1fr !important}}
.bp-editorial .bp-aside,.bp-editorial .bp-main{min-width:0}
.bp-editorial .bp-main{display:grid;gap:16px}




/* 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: 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: 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: 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}
