:root {
  /* Theme Colors - Icy Blue / Dark Blue Theme */
  --bg-body: #f8fafc; /* Very light icy background */
  --bg-card: #ffffff;
  --bg-card-alt: #f1f5f9; /* Slightly darker for distinction */
  --text-primary: #0f172a; /* Dark slate for headings */
  --text-secondary: #334155; /* Muted slate for body text */
  --text-muted: #64748b;
  --link: #2563eb; /* Primary blue */
  --link-hover: #1d4ed8; /* Darker blue on hover */
  --color-accent: #2563eb; /* Electric Blue */
  --color-accent-fg: #ffffff;
  --color-accent-hover: #1d4ed8;
  --color-accent-light: #dbeafe; /* Light blue highlight */
  
  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --space-xxxl: 64px;
  
  /* Typography */
  --font-family-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  /* Radius & Shadows */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  
  /* Layout */
  --site-max-width:1200px;
}

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

html, body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

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

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

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: var(--space-lg); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: var(--space-md); }
h3 { font-size: 1.25rem; margin-bottom: var(--space-sm); }

p {
  margin-bottom: var(--space-md);
  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;
}

ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-xs);
}

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

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

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

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

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

/* Header */
.site-header {
  background-color: var(--bg-card);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

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

.site-logo:hover {
  text-decoration: none;
  color: var(--color-accent);
}

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

.site-nav-list a {
  color: var(--text-secondary);
  font-weight: 500;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

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

/* Mobile Navigation & Burger */
.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;
}

.site-nav {
  display: flex;
  align-items: center;
}

/* Mobile Menu Styles */
@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }
  
  .site-header-inner {
    flex-wrap: wrap;
  }
  
  .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.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    padding: var(--space-md);
    width: 100%;
  }
  
  .site-nav.is-open {
    display: flex !important;
  }
  
  .site-nav-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
    width: 100%;
  }
  
  .site-nav-list a {
    display: block;
    width: 100%;
    padding: var(--space-md);
  }
}

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

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

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.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);
  color: var(--color-accent-fg);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

/* Grid Layouts */
.grid-layout {
  display: grid;
  gap: var(--space-lg);
}

/* 2 Column Grid (Desktop) */
.grid-layout.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* 3 Column Grid (Desktop) */
.grid-layout.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Cards */
.card {
  background-color: var(--bg-card);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin-top: 0;
}

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

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

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-secondary);
  background-color: var(--bg-card);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-md);
  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(37, 99, 235, 0.2);
}

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

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

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

/* Hero / CTA */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

/* Icons (Generic) */
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

/* Feature Lists */
.feature-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

.feature-list .icon {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 4px;
}

/* Footer */
.site-footer {
  background-color: #0f172a; /* Dark Blue Footer */
  color: #cbd5e1;
  padding: var(--space-xxxl) 0 var(--space-xl);
  margin-top: var(--space-xxxl);
}

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

.site-footer-nav h4 {
  color: #ffffff;
  margin-bottom: var(--space-md);
}

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

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

.site-footer a {
  color: #94a3b8;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer-meta {
  grid-column: 1 / -1;
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: var(--space-md);
  left: var(--space-md);
  right: var(--space-md);
  background: var(--bg-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  z-index: 2000;
  border: 1px solid var(--color-accent-light);
}


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


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