/* ==========================================================================
   Xroad theme — brand tokens + base + canonical header/footer
   Source of truth: crossroad-rebuild-CLAUDE.md §4, §5, Appendix A/B
   ========================================================================== */

/* Self-hosted DM Sans (variable, weights 100–1000) — no Google Fonts hotlink */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url('../fonts/dm-sans.woff2') format('woff2');
}

:root {
  /* Color tokens (exact hex) */
  --xr-brand-purple:  #342669; /* primary: headings, primary buttons, header bg */
  --xr-deep-purple:   #2A1F4F; /* darkest: footer bg, gradient start */
  --xr-brand-blue:    #6873B7; /* secondary accents, focus, links */
  --xr-light-purple:  #E8E3F3; /* card/callout fill, input borders, icon badges */
  --xr-brand-orange:  #F7941D; /* CTA gradient start, accent (ONE per section max) */
  --xr-accent-orange: #F15A29; /* CTA gradient end, urgency accent */
  --xr-charcoal:      #414042; /* body text */
  --xr-warm-gray:     #F7F7F7; /* section backgrounds */
  --xr-success-green: #00B878; /* validation/check accents only */
  --xr-white:         #FFFFFF;
  --xr-scroll-purple: #1A1333; /* header bg after scroll */

  /* Gradients */
  --xr-hero-grad:   linear-gradient(145deg, #2A1F4F 0%, #342669 100%);
  --xr-bar-grad:    linear-gradient(90deg, #2A1F4F, #342669);
  --xr-orange-grad: linear-gradient(90deg, #F7941D, #F15A29);

  /* Type */
  --xr-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --xr-font-head: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --xr-maxw: 1200px;
  --xr-gutter: 24px;

  /* Card shadow */
  --xr-card-shadow: 0 6px 24px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  padding-top: 72px; /* offset fixed header */
  font-family: var(--xr-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--xr-charcoal);
  background: var(--xr-white);
}
h1, h2, h3, h4, h5 { font-family: var(--xr-font-head); color: var(--xr-brand-purple); line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: 40px; font-weight: 500; }
h2 { font-size: 32px; font-weight: 500; }
h3 { font-size: 26px; font-weight: 700; }
h4 { font-size: 22px; font-weight: 500; }
h5 { font-size: 18px; font-weight: 500; }
a { color: var(--xr-brand-blue); }
img { max-width: 100%; height: auto; }

.xr-container { max-width: var(--xr-maxw); margin: 0 auto; padding: 0 var(--xr-gutter); }

/* Accessibility: visible focus (2px white ring + 2px offset in brand purple) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--xr-white);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--xr-brand-purple);
}
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px); white-space: nowrap;
}

/* ==========================================================================
   Header (Appendix A)
   ========================================================================== */
#xroad-header {
  background: var(--xr-brand-purple);
  padding: 14px 0;
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 99999;
  transition: background .4s ease, box-shadow .4s ease;
  box-shadow: none;
}
#xroad-header.scrolled { background: var(--xr-scroll-purple); box-shadow: 0 4px 20px rgba(0,0,0,.45); }
#xroad-header .xr-header-inner {
  max-width: var(--xr-maxw); margin: 0 auto; padding: 0 var(--xr-gutter);
  display: flex; align-items: center; justify-content: space-between;
}
#xroad-header .xr-logo { display: flex; align-items: center; text-decoration: none; }
#xroad-header .xr-nav { display: flex; align-items: center; gap: 28px; }
#xroad-header .xr-nav-link {
  font-family: var(--xr-font-body); font-size: 15px; font-weight: 500;
  color: var(--xr-white); text-decoration: none; padding: 6px 10px; border-radius: 6px;
  transition: text-shadow .3s ease, color .3s ease;
}
#xroad-header .xr-nav-link:hover {
  text-shadow: 0 0 12px rgba(247,148,29,.7), 0 0 24px rgba(241,90,41,.4);
  color: var(--xr-brand-orange);
}
#xroad-header .xr-nav-btn-outline {
  font-family: var(--xr-font-body); font-size: 15px; font-weight: 600;
  color: var(--xr-white); text-decoration: none; padding: 10px 22px;
  border: 2px solid var(--xr-white); border-radius: 6px;
  transition: border-color .3s ease, box-shadow .3s ease, color .3s ease;
}
#xroad-header .xr-nav-btn-outline:hover {
  border-color: var(--xr-brand-orange); color: var(--xr-brand-orange);
  box-shadow: 0 0 14px rgba(247,148,29,.5), 0 0 28px rgba(241,90,41,.25);
}
#xroad-header .xr-nav-btn-solid {
  font-family: var(--xr-font-body); font-size: 15px; font-weight: 600;
  color: var(--xr-brand-purple); text-decoration: none; padding: 10px 22px;
  background: var(--xr-white); border: 2px solid var(--xr-white); border-radius: 6px;
  transition: box-shadow .3s ease, background .3s ease, border-color .3s ease;
}
#xroad-header .xr-nav-btn-solid:hover {
  background: var(--xr-brand-orange); border-color: var(--xr-brand-orange); color: var(--xr-white);
  box-shadow: 0 0 14px rgba(247,148,29,.5), 0 0 28px rgba(241,90,41,.25);
}

/* Hamburger (hidden on desktop) */
#xroad-header .xr-burger {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  width: 44px; height: 44px;
}
#xroad-header .xr-burger span {
  display: block; width: 24px; height: 2px; background: var(--xr-white); margin: 5px auto;
  transition: transform .3s ease, opacity .3s ease;
}
#xroad-header.menu-open .xr-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#xroad-header.menu-open .xr-burger span:nth-child(2) { opacity: 0; }
#xroad-header.menu-open .xr-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  #xroad-header .xr-burger { display: block; }
  #xroad-header .xr-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 8px;
    background: var(--xr-scroll-purple); padding: 16px var(--xr-gutter);
    box-shadow: 0 12px 24px rgba(0,0,0,.4);
    /* display state in CSS, never inline (past bug: inline display:flex stuck the menu open) */
    display: none;
  }
  #xroad-header.menu-open .xr-nav { display: flex; }
  #xroad-header .xr-nav-link,
  #xroad-header .xr-nav-btn-outline,
  #xroad-header .xr-nav-btn-solid { text-align: center; }
}

/* ==========================================================================
   Footer (Appendix B)
   ========================================================================== */
#xroad-footer { background: var(--xr-deep-purple); padding: 64px 0 0; }
#xroad-footer .xr-footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
}
#xroad-footer .xr-footer-blurb {
  font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.6;
  margin: 0 0 20px; max-width: 280px;
}
#xroad-footer h4 {
  font-size: 14px; font-weight: 600; color: var(--xr-white); margin: 0 0 16px;
  text-transform: uppercase; letter-spacing: .5px;
}
#xroad-footer .xr-footer-col nav { display: flex; flex-direction: column; gap: 10px; }
#xroad-footer a { color: rgba(255,255,255,.7); text-decoration: none; font-size: 14px; transition: color .3s ease, text-shadow .3s ease; }
#xroad-footer a:hover { color: var(--xr-brand-orange); text-shadow: 0 0 12px rgba(247,148,29,.6); }
#xroad-footer .xr-social { display: flex; gap: 10px; flex-wrap: wrap; }
#xroad-footer .xr-social a {
  display: flex; align-items: center; justify-content: center; width: 36px; height: 36px;
  background: rgba(255,255,255,.1); border-radius: 6px; color: #fff;
  transition: background .3s ease, box-shadow .3s ease, color .3s ease;
}
#xroad-footer .xr-social a:hover {
  color: var(--xr-brand-orange); background: rgba(255,255,255,.15);
  box-shadow: 0 0 14px rgba(247,148,29,.4);
}
#xroad-footer .xr-footer-cta {
  display: inline-block; font-size: 14px; font-weight: 600; color: var(--xr-deep-purple);
  background: var(--xr-white); padding: 10px 20px; border-radius: 6px;
}
#xroad-footer .xr-footer-cta:hover { background: var(--xr-brand-orange); color: var(--xr-white); }
#xroad-footer .xr-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; flex-wrap: wrap; gap: 16px;
}
#xroad-footer .xr-footer-bottom p,
#xroad-footer .xr-footer-bottom a { font-size: 13px; color: rgba(255,255,255,.5); margin: 0; }
#xroad-footer .xr-footer-bottom nav { display: flex; gap: 24px; flex-wrap: wrap; }

@media (max-width: 768px) {
  #xroad-footer .xr-footer-top { grid-template-columns: 1fr; text-align: center; }
  #xroad-footer .xr-footer-col nav { align-items: center; }
  #xroad-footer .xr-social { justify-content: center; }
  #xroad-footer .xr-footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   Hero placeholder (design pending — replaced once the Claude Design lands)
   ========================================================================== */
.xr-hero-placeholder {
  background: var(--xr-hero-grad); color: var(--xr-white);
  padding: 120px var(--xr-gutter); text-align: center;
}
.xr-hero-placeholder h1 { color: var(--xr-white); font-size: 60px; font-weight: 500; }
.xr-hero-placeholder p { color: rgba(255,255,255,.9); font-size: 20px; max-width: 640px; margin: 0 auto 32px; }
.xr-hero-placeholder .xr-cta {
  display: inline-block; background: var(--xr-white); color: var(--xr-brand-purple);
  font-weight: 600; padding: 14px 28px; border-radius: 8px; text-decoration: none;
  transition: background .3s ease, color .3s ease, box-shadow .3s ease;
}
.xr-hero-placeholder .xr-cta:hover {
  background: var(--xr-orange-grad); color: var(--xr-white);
  box-shadow: 0 0 18px rgba(247,148,29,.5);
}

/* ==========================================================================
   Reusable components — buttons, sections, cards, stats, CTA, prose
   ========================================================================== */

/* Buttons */
.xr-btn {
  display: inline-block; font-family: var(--xr-font-body); font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: 8px; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: background .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.xr-btn-primary { background: var(--xr-brand-purple); color: #fff; border-color: var(--xr-brand-purple); }
.xr-btn-primary:hover { background: var(--xr-orange-grad); border-color: transparent; color: #fff; box-shadow: 0 0 18px rgba(247,148,29,.5); }
.xr-btn-light { background: #fff; color: var(--xr-brand-purple); border-color: #fff; }
.xr-btn-light:hover { background: var(--xr-orange-grad); color: #fff; border-color: transparent; box-shadow: 0 0 18px rgba(247,148,29,.5); }
.xr-btn-outline { background: #fff; color: var(--xr-brand-purple); border-color: var(--xr-brand-purple); }
.xr-btn-outline:hover { border-color: var(--xr-brand-orange); color: var(--xr-brand-orange); }
.xr-btn-outline-light { background: transparent; color: #fff; border-color: #fff; }
.xr-btn-outline-light:hover { border-color: var(--xr-brand-orange); color: var(--xr-brand-orange); }

/* Sections */
.xr-section { padding: 80px 0; }
.xr-section--warm { background: var(--xr-warm-gray); }
.xr-section--dark { background: var(--xr-hero-grad); color: #fff; }
.xr-section--dark h2, .xr-section--dark h3 { color: #fff; }
.xr-eyebrow { text-transform: uppercase; letter-spacing: 2px; font-size: 15px; font-weight: 500; color: var(--xr-brand-blue); margin: 0 0 16px; }
.xr-section--dark .xr-eyebrow { color: rgba(255,255,255,.85); }
.xr-section-head { max-width: 760px; margin: 0 0 48px; }
.xr-section--center .xr-section-head { margin-left: auto; margin-right: auto; text-align: center; }
.xr-lead { font-size: 18px; }
.xr-section--dark .xr-lead { color: rgba(255,255,255,.9); }

/* Home hero */
.xr-hero { background: var(--xr-hero-grad); color: #fff; padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.xr-hero h1 { color: #fff; font-size: 60px; font-weight: 500; margin: 0 auto 20px; max-width: 16ch; }
.xr-hero .xr-lead { color: rgba(255,255,255,.9); font-size: 20px; max-width: 680px; margin: 0 auto 32px; }
.xr-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.xr-hero .xr-note { margin-top: 24px; font-size: 14px; color: rgba(255,255,255,.6); }
@media (max-width: 768px) { .xr-hero { padding: 88px 0; } .xr-hero h1 { font-size: 38px; } }

/* Generic page hero (title band) */
.xr-page-hero { background: var(--xr-hero-grad); color: #fff; padding: 96px 0 64px; }
.xr-page-hero h1 { color: #fff; margin: 0; }
.xr-page-hero .xr-eyebrow { color: rgba(255,255,255,.85); }
.xr-page-hero .xr-lead { color: rgba(255,255,255,.9); margin-top: 16px; max-width: 680px; }

/* Card grid */
.xr-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.xr-card { background: #fff; border-radius: 12px; padding: 32px; box-shadow: var(--xr-card-shadow); }
.xr-card h3 { font-size: 22px; margin-bottom: 12px; }
.xr-card p { margin: 0 0 16px; }
.xr-cards-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .xr-cards, .xr-cards-2 { grid-template-columns: 1fr; } }

/* List with brand check bullets */
.xr-checklist { list-style: none; padding: 0; margin: 0; }
.xr-checklist li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.xr-checklist li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px;
  background: var(--xr-success-green); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/14px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* Stats */
.xr-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.xr-stat { background: #fff; border-radius: 12px; padding: 28px 20px; text-align: center; box-shadow: var(--xr-card-shadow); }
.xr-stat .num { font-family: var(--xr-font-head); font-size: 40px; font-weight: 700; color: var(--xr-brand-purple); line-height: 1.1; }
.xr-stat .lbl { font-size: 14px; color: var(--xr-charcoal); margin-top: 8px; }
@media (max-width: 900px) { .xr-stats { grid-template-columns: repeat(2, 1fr); } }

/* CTA band */
.xr-cta-band { background: var(--xr-bar-grad); color: #fff; text-align: center; padding: 72px 0; }
.xr-cta-band h2 { color: #fff; margin-bottom: 12px; }
.xr-cta-band p { color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto 28px; }

/* Team grid */
.xr-team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.xr-team-card { background: #fff; border-radius: 12px; padding: 32px; box-shadow: var(--xr-card-shadow); text-align: center; text-decoration: none; display: block; transition: transform .3s ease, box-shadow .3s ease; }
.xr-team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.16); }
.xr-team-card h3 { font-size: 22px; margin-bottom: 4px; }
.xr-team-card .role { color: var(--xr-brand-blue); font-weight: 600; margin: 0 0 12px; font-size: 15px; }
.xr-team-card p { color: var(--xr-charcoal); margin: 0; font-size: 15px; }
@media (max-width: 900px) { .xr-team { grid-template-columns: 1fr; } }

/* Contact */
.xr-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.xr-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.xr-badge { width: 48px; height: 48px; border-radius: 10px; background: var(--xr-light-purple); color: var(--xr-deep-purple); display: flex; align-items: center; justify-content: center; flex: none; }
.xr-info-item .t { font-weight: 600; color: var(--xr-brand-purple); }
.xr-info-item a { color: var(--xr-charcoal); text-decoration: none; }
.xr-form-card { background: #fff; border-radius: 12px; padding: 32px; box-shadow: var(--xr-card-shadow); }
@media (max-width: 900px) { .xr-contact-grid { grid-template-columns: 1fr; } }

/* Prose (legal / bio body) */
.xr-prose { max-width: 760px; margin: 0 auto; }
.xr-prose h2, .xr-prose h3 { margin-top: 32px; }
.xr-prose p, .xr-prose li { color: var(--xr-charcoal); }
.xr-prose ul { padding-left: 20px; }
.xr-prose a { color: var(--xr-brand-blue); }

/* Gravity Forms — brand styling */
.gform_wrapper input[type="text"], .gform_wrapper input[type="email"], .gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"], .gform_wrapper input[type="number"], .gform_wrapper textarea, .gform_wrapper select {
  width: 100%; border: 1px solid var(--xr-light-purple); border-radius: 8px; padding: 12px 14px;
  font-family: var(--xr-font-body); font-size: 15px; color: var(--xr-charcoal); background: #fff;
}
.gform_wrapper input:focus, .gform_wrapper textarea:focus, .gform_wrapper select:focus {
  border-color: var(--xr-brand-blue); outline: none; box-shadow: 0 0 0 3px rgba(104,115,183,.25);
}
.gform_wrapper label, .gform_wrapper legend { font-family: var(--xr-font-body); font-size: 14px; font-weight: 600; color: var(--xr-charcoal); }
.gform_wrapper .gform_footer input[type="submit"], .gform_wrapper .gform_button {
  background: var(--xr-brand-purple); color: #fff; border: 0; border-radius: 8px;
  padding: 14px 28px; font-family: var(--xr-font-body); font-weight: 600; font-size: 15px;
  width: 100%; cursor: pointer; transition: background .3s ease, box-shadow .3s ease;
}
.gform_wrapper .gform_footer input[type="submit"]:hover, .gform_wrapper .gform_button:hover {
  background: var(--xr-accent-orange); box-shadow: 0 0 14px rgba(247,148,29,.5);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* WPConsent cookie banner — inherit the brand font stack (colors set in plugin settings) */
[class*="wpconsent"], [id*="wpconsent"] { font-family: var(--xr-font-body); }

/* ==========================================================================
   Homepage — production-style dark node-network treatment (floating bg)
   ========================================================================== */
.xr-home { position: relative; overflow: hidden; color: rgba(255,255,255,.8);
  background: linear-gradient(145deg, #2A1F4F 0%, #312260 50%, #342669 100%);
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.xr-home-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.xr-home-bg canvas { display: block; width: 100%; height: 100%; }
.xr-home > section { position: relative; z-index: 1; }
.xr-home h1, .xr-home h2, .xr-home h3 { color: #fff; }

.xr-home-hero { padding: clamp(72px,9vw,112px) 0 clamp(56px,7vw,80px); text-align: center; }
.xr-home-hero .xr-eyebrow { color: rgba(255,255,255,.55); }
.xr-home-hero h1 { font-size: clamp(2.2rem,5.2vw,3.25rem); font-weight: 500; margin: 0 auto 18px; max-width: 16ch; text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.xr-home-sub { font-size: 1.25rem; color: rgba(255,255,255,.88); max-width: 560px; margin: 0 auto 32px; }
.xr-home-sub em { font-style: italic; color: #fff; }
.xr-home-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.xr-home-note { margin-top: 20px; font-size: .85rem; color: rgba(255,255,255,.42); }

.xr-btn-cta { background: var(--xr-orange-grad); color: #fff; border-color: transparent; box-shadow: 0 4px 20px rgba(247,148,29,.35); }
.xr-btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(247,148,29,.55); color: #fff; }

.xr-home-services { padding: clamp(48px,6vw,72px) 0; }
.xr-home-head { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.xr-home-head .xr-eyebrow { color: var(--xr-brand-orange); }
.xr-home-lead { color: rgba(255,255,255,.7); font-size: 1.05rem; }
.xr-glass-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .xr-glass-grid { grid-template-columns: 1fr; } }
.xr-glass-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 32px 28px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background .3s ease; }
.xr-glass-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); border-color: rgba(104,115,183,.3); box-shadow: 0 8px 32px rgba(0,0,0,.2); }
.xr-glass-card h3 { font-size: 1.3rem; font-weight: 600; margin: 0 0 10px; }
.xr-glass-card p { color: rgba(255,255,255,.65); margin: 0; }
.xr-ico { width: 48px; height: 48px; border-radius: 12px; background: rgba(104,115,183,.15); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--xr-brand-blue); }

.xr-home-cta { padding: clamp(56px,8vw,96px) 0; }
.xr-glass-box { max-width: 640px; margin: 0 auto; text-align: center; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 24px; padding: clamp(36px,5vw,56px) clamp(24px,4vw,40px); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.xr-glass-box h2 { font-size: clamp(1.6rem,3vw,2.25rem); font-weight: 500; margin: 0 0 14px; }
.xr-glass-box p { color: rgba(255,255,255,.8); max-width: 460px; margin: 0 auto 32px; }

/* Hide the free-tier "Powered by WPConsent" badge (banner + preferences panel) */
.wpconsent-powered-by,
.wpconsent-preferences-powered-by { display: none !important; }
