@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --nx-orange: #ff6600;
  --nx-orange-light: #fcc01e;
  --nx-navy: #153d64;
  --nx-navy-deep: #0a2238;
  --nx-blue: #4376bd;
  --nx-blue-deep: #3567b0;

  --nx-bg: #ffffff;
  --nx-bg-soft: #faf7f2;
  --nx-bg-section: #f4f1eb;
  --nx-ink: #0a2238;
  --nx-ink-soft: #4a5b6e;
  --nx-ink-mute: #8a96a3;
  --nx-line: rgba(10, 34, 56, 0.08);
  --nx-line-strong: rgba(10, 34, 56, 0.16);

  --nx-accent: var(--nx-blue);
  --nx-accent-hover: var(--nx-blue-deep);
  --nx-accent-soft: rgba(67, 118, 189, 0.10);
  --nx-accent-line: rgba(67, 118, 189, 0.24);
  --nx-accent-shadow: rgba(67, 118, 189, 0.35);

  --nx-font-heading: 'Prompt', system-ui, -apple-system, sans-serif;
  --nx-font-body: Arial, Helvetica, sans-serif;
  --nx-font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
  --nx-font-serif: 'Instrument Serif', Georgia, serif;
  --nx-radius: 0;

  --paper: var(--nx-bg);
  --paper-alt: var(--nx-bg-soft);
  --paper-deep: var(--nx-bg-section);
  --ink: var(--nx-ink);
  --ink-2: var(--nx-ink-soft);
  --ink-3: var(--nx-ink-mute);
  --accent: var(--nx-accent);
  --accent-deep: var(--nx-accent-hover);
  --accent-soft: var(--nx-accent-soft);
  --yellow: var(--nx-orange-light);
  --good: #1f5c1b;
  --bad: #a82a1a;
  --hair: var(--nx-ink);
  --hair-soft: var(--nx-line);
  --border: 1.5px solid var(--nx-ink);
  --border-soft: 1px solid var(--nx-line);
  --gradient: linear-gradient(135deg, var(--nx-blue) 0%, var(--nx-navy-deep) 100%);
  --font-sans: var(--nx-font-heading);
  --font-serif-tool: var(--nx-font-serif);
  --font-mono-tool: var(--nx-font-mono);
}

body.nexperio-themed {
  background: var(--nx-bg) !important;
  color: var(--nx-ink) !important;
  font-family: var(--nx-font-body) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  -webkit-font-smoothing: antialiased;
}

body.nexperio-themed *,
body.nexperio-themed *::before,
body.nexperio-themed *::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}

body.nexperio-themed ::selection {
  background: var(--nx-accent);
  color: #fff;
}

body.nexperio-themed img,
body.nexperio-themed svg {
  max-width: 100%;
}

body.nexperio-themed a {
  color: inherit;
  text-decoration: none;
}

body.nexperio-themed h1,
body.nexperio-themed h2,
body.nexperio-themed h3,
body.nexperio-themed h4,
body.nexperio-themed h5,
body.nexperio-themed h6 {
  font-family: var(--nx-font-heading) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.05 !important;
  color: var(--nx-ink) !important;
}

body.nexperio-themed .serif,
body.nexperio-themed em,
body.nexperio-themed .italic-accent {
  font-family: var(--nx-font-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--nx-accent) !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

body.nexperio-themed .container,
body.nexperio-themed .qr-app,
body.nexperio-themed .page {
  max-width: 1280px !important;
  margin-inline: auto !important;
  padding-inline: clamp(20px, 4vw, 64px) !important;
}

body.nexperio-themed .page {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.nexperio-themed .container,
body.nexperio-themed .qr-app,
body.nexperio-themed .qr-shell {
  padding-top: 0 !important;
  padding-bottom: clamp(56px, 8vw, 96px) !important;
}

body.nexperio-themed .chrome,
body.nexperio-themed .topbar,
body.nexperio-themed .top-bar,
body.nexperio-themed .brand-bar,
body.nexperio-themed .nx-topbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin-bottom: 0 !important;
  padding: 22px 0 !important;
  border-bottom: 1px solid var(--nx-line) !important;
  background: transparent !important;
}

body.nexperio-themed [data-nx-legacy-header="true"] {
  display: none !important;
}

body.nexperio-themed [data-nx-legacy-cta="true"] {
  display: none !important;
}

body.nexperio-themed .brand,
body.nexperio-themed .nx-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
}

body.nexperio-themed .brand-name,
body.nexperio-themed .brand-word,
body.nexperio-themed .brand-wordmark,
body.nexperio-themed .nx-brand-name {
  font-family: 'Adequate', var(--nx-font-heading) !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  color: var(--nx-ink) !important;
  letter-spacing: -0.01em !important;
}

body.nexperio-themed .brand-name em,
body.nexperio-themed .brand-word em,
body.nexperio-themed .brand-wordmark .tech,
body.nexperio-themed .nx-brand-name em {
  color: var(--nx-accent) !important;
}

body.nexperio-themed .chrome-meta,
body.nexperio-themed .brand-meta,
body.nexperio-themed .topbar-meta,
body.nexperio-themed .meta-ref,
body.nexperio-themed .top-meta,
body.nexperio-themed .nx-section-tag {
  font-family: var(--nx-font-mono) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--nx-ink-mute) !important;
}

body.nexperio-themed .hero,
body.nexperio-themed .nx-header {
  margin: 0 !important;
  padding: clamp(20px, 2.5vw, 32px) 0 clamp(28px, 4vw, 48px) !important;
  border-bottom: 1px solid var(--nx-line) !important;
  max-width: 980px !important;
}

body.nexperio-themed .nx-tool-hero-shell {
  margin: 0 !important;
  padding: clamp(20px, 2.5vw, 32px) 0 clamp(28px, 4vw, 48px) !important;
  border-bottom: 1px solid var(--nx-line) !important;
  max-width: 980px !important;
}

body.nexperio-themed .nx-tool-shell-title {
  margin: 22px 0 0 !important;
  font-family: var(--nx-font-heading) !important;
  font-size: clamp(42px, 7vw, 88px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.03em !important;
  color: var(--nx-ink) !important;
}

body.nexperio-themed .nx-tool-shell-title .serif {
  font-family: var(--nx-font-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--nx-accent) !important;
}

body.nexperio-themed .nx-tool-shell-lede {
  margin-top: 28px !important;
  max-width: 60ch !important;
  font-family: var(--nx-font-body) !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
  color: var(--nx-ink-soft) !important;
}

body.nexperio-themed .hero .eyebrow,
body.nexperio-themed .hero-left .eyebrow,
body.nexperio-themed .nx-eyebrow,
body.nexperio-themed .nx-header .nx-eyebrow,
body.nexperio-themed .eyebrow,
body.nexperio-themed .verdict-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: var(--nx-font-mono) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--nx-accent) !important;
}

body.nexperio-themed .hero .eyebrow::before,
body.nexperio-themed .hero-left .eyebrow::before,
body.nexperio-themed .nx-eyebrow::before,
body.nexperio-themed .eyebrow::before,
body.nexperio-themed .verdict-eyebrow::before {
  content: "" !important;
  display: inline-block !important;
  width: 24px !important;
  height: 1.5px !important;
  background: var(--nx-accent) !important;
}

body.nexperio-themed .hero h1,
body.nexperio-themed .nx-title {
  margin-top: 22px !important;
  font-size: clamp(42px, 7vw, 88px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.03em !important;
  color: var(--nx-ink) !important;
}

body.nexperio-themed .hero .lede,
body.nexperio-themed .hero-lede,
body.nexperio-themed .nx-header p,
body.nexperio-themed .section-intro {
  margin-top: 28px !important;
  max-width: 60ch !important;
  font-family: var(--nx-font-body) !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
  color: var(--nx-ink-soft) !important;
}

body.nexperio-themed .hero-divider,
body.nexperio-themed .rule-thick {
  margin-top: 0 !important;
  border-top: 1px solid var(--nx-line) !important;
  background: none !important;
  height: 0 !important;
}

body.nexperio-themed section,
body.nexperio-themed .section {
  margin-top: clamp(48px, 7vw, 72px) !important;
}

body.nexperio-themed .container > :not(.nx-tool-hero-shell):first-child,
body.nexperio-themed .qr-app > :not(.nx-tool-hero-shell):first-child {
  margin-top: clamp(48px, 7vw, 72px) !important;
}

body.nexperio-themed .nx-tool-hero-shell + * {
  margin-top: clamp(48px, 7vw, 72px) !important;
}

body.nexperio-themed .section-head {
  margin-bottom: 24px !important;
}

body.nexperio-themed .section-head h2,
body.nexperio-themed .nx-card-title,
body.nexperio-themed .archive-head h3,
body.nexperio-themed .panel h3,
body.nexperio-themed .diag-head h3 {
  font-family: var(--nx-font-heading) !important;
  font-size: clamp(28px, 4vw, 44px) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
  color: var(--nx-ink) !important;
  margin: 0 !important;
}

body.nexperio-themed .card,
body.nexperio-themed .panel,
body.nexperio-themed .diag,
body.nexperio-themed .verdict,
body.nexperio-themed .size-table-wrap,
body.nexperio-themed .posologie,
body.nexperio-themed .nx-card,
body.nexperio-themed .nx-panel,
body.nexperio-themed .nx-ordonnance,
body.nexperio-themed .code-display {
  background: var(--nx-bg) !important;
  border: 1px solid var(--nx-line) !important;
  box-shadow: none !important;
  padding: clamp(22px, 3vw, 32px) !important;
}

body.nexperio-themed .verdict,
body.nexperio-themed .posologie,
body.nexperio-themed .nx-panel,
body.nexperio-themed .field-combo,
body.nexperio-themed .filled,
body.nexperio-themed .card.alt {
  background: var(--nx-bg-soft) !important;
}

body.nexperio-themed label,
body.nexperio-themed .nx-label,
body.nexperio-themed th {
  font-family: var(--nx-font-mono) !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--nx-ink-mute) !important;
}

body.nexperio-themed input:not([type="checkbox"]):not([type="radio"]),
body.nexperio-themed select,
body.nexperio-themed textarea,
body.nexperio-themed .nx-input,
body.nexperio-themed .nx-select,
body.nexperio-themed .nx-textarea {
  width: 100% !important;
  border: 1px solid var(--nx-line-strong) !important;
  background: transparent !important;
  color: var(--nx-ink) !important;
  font-family: var(--nx-font-heading) !important;
  font-size: 15px !important;
  padding: 12px 14px !important;
  outline: none !important;
  box-shadow: none !important;
}

body.nexperio-themed input:focus,
body.nexperio-themed select:focus,
body.nexperio-themed textarea:focus,
body.nexperio-themed .nx-input:focus,
body.nexperio-themed .nx-select:focus,
body.nexperio-themed .nx-textarea:focus {
  border-color: var(--nx-accent) !important;
}

body.nexperio-themed .btn,
body.nexperio-themed button,
body.nexperio-themed .nx-button,
body.nexperio-themed button.cta,
body.nexperio-themed a.cta,
body.nexperio-themed .btn-primary,
body.nexperio-themed .btn-secondary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 16px 24px !important;
  border: 1.5px solid transparent !important;
  font-family: var(--nx-font-heading) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--nx-ink) !important;
  background: transparent !important;
  transition: background 200ms cubic-bezier(.2,.7,.2,1), color 200ms cubic-bezier(.2,.7,.2,1), border-color 200ms cubic-bezier(.2,.7,.2,1), transform 200ms cubic-bezier(.2,.7,.2,1), box-shadow 200ms cubic-bezier(.2,.7,.2,1) !important;
  box-shadow: none !important;
}

body.nexperio-themed .btn:hover,
body.nexperio-themed button:hover,
body.nexperio-themed .nx-button:hover,
body.nexperio-themed button.cta:hover,
body.nexperio-themed a.cta:hover {
  transform: translateY(-2px) !important;
}

body.nexperio-themed .btn-primary,
body.nexperio-themed .nx-button-primary,
body.nexperio-themed button.cta,
body.nexperio-themed a.cta,
body.nexperio-themed button[type="submit"] {
  background: var(--nx-accent) !important;
  border-color: var(--nx-accent) !important;
  color: #fff !important;
  box-shadow: 0 14px 32px -18px var(--nx-accent-shadow) !important;
}

body.nexperio-themed .btn-primary:hover,
body.nexperio-themed .nx-button-primary:hover,
body.nexperio-themed button.cta:hover,
body.nexperio-themed a.cta:hover,
body.nexperio-themed button[type="submit"]:hover {
  background: var(--nx-accent-hover) !important;
  border-color: var(--nx-accent-hover) !important;
  color: #fff !important;
}

body.nexperio-themed .btn-secondary,
body.nexperio-themed .btn-ghost,
body.nexperio-themed .nx-button-secondary {
  background: transparent !important;
  border-color: var(--nx-ink) !important;
  color: var(--nx-ink) !important;
}

body.nexperio-themed .btn-secondary:hover,
body.nexperio-themed .btn-ghost:hover,
body.nexperio-themed .nx-button-secondary:hover {
  background: var(--nx-ink) !important;
  color: #fff !important;
}

body.nexperio-themed .cta-row,
body.nexperio-themed .nx-cta-row,
body.nexperio-themed .actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 14px !important;
  align-items: center !important;
  justify-content: flex-start !important;
  margin-top: 32px !important;
}

body.nexperio-themed .tag,
body.nexperio-themed .status,
body.nexperio-themed [class*="badge"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 5px 10px !important;
  border: 1px solid var(--nx-accent-line) !important;
  background: var(--nx-accent-soft) !important;
  color: var(--nx-accent) !important;
  font-family: var(--nx-font-mono) !important;
  font-size: 10px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

body.nexperio-themed table,
body.nexperio-themed .size-table {
  width: 100% !important;
  border-collapse: collapse !important;
  min-width: 560px;
}

body.nexperio-themed .size-table-wrap,
body.nexperio-themed .overflow-x-auto {
  overflow-x: auto !important;
}

body.nexperio-themed thead tr,
body.nexperio-themed .size-table thead tr {
  border-bottom: 1px solid var(--nx-line-strong) !important;
}

body.nexperio-themed tbody tr,
body.nexperio-themed .size-table tbody tr {
  border-bottom: 1px solid var(--nx-line) !important;
}

body.nexperio-themed td,
body.nexperio-themed th,
body.nexperio-themed .size-table td,
body.nexperio-themed .size-table th {
  padding: 14px 16px !important;
  text-align: left !important;
}

body.nexperio-themed td,
body.nexperio-themed .size-table td {
  font-family: var(--nx-font-body) !important;
  font-size: 14px !important;
  color: var(--nx-ink) !important;
}

body.nexperio-themed .footer,
body.nexperio-themed .foot,
body.nexperio-themed .pagefoot,
body.nexperio-themed .colophon,
body.nexperio-themed .container > footer:last-child:not(.nx-tool-footer) {
  display: none !important;
}

body.nexperio-themed .nx-tool-cta {
  margin-top: clamp(56px, 8vw, 96px) !important;
  padding: clamp(32px, 5vw, 48px) !important;
  border: 1px solid var(--nx-line) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 102, 0, 0.08), transparent 28%),
    linear-gradient(135deg, #29476f 0%, #153d64 54%, #0a2238 100%) !important;
  color: #fff !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  gap: 24px !important;
}

body.nexperio-themed .nx-tool-cta h2 {
  margin-top: 18px !important;
  color: #fff !important;
  font-size: clamp(34px, 4.5vw, 60px) !important;
  max-width: 12ch;
}

body.nexperio-themed .nx-tool-cta .serif {
  color: var(--nx-orange-light) !important;
}

body.nexperio-themed .nx-tool-cta .eyebrow {
  color: var(--nx-orange-light) !important;
}

body.nexperio-themed .nx-tool-cta .eyebrow::before {
  background: var(--nx-orange-light) !important;
}

body.nexperio-themed .nx-tool-cta-copy {
  margin-top: 22px !important;
  max-width: 40ch !important;
  color: rgba(255,255,255,0.78) !important;
}

body.nexperio-themed .nx-tool-cta .btn-primary {
  background: var(--nx-orange) !important;
  border-color: var(--nx-orange) !important;
}

body.nexperio-themed .nx-tool-cta .btn-primary:hover {
  background: #ff7c24 !important;
  border-color: #ff7c24 !important;
}

body.nexperio-themed .nx-tool-footer {
  margin-top: 28px !important;
  padding-top: 22px !important;
  border-top: 1px solid var(--nx-line) !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  font-family: var(--nx-font-mono) !important;
  font-size: 11px !important;
  color: var(--nx-ink-mute) !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

body.nexperio-themed .nx-tool-footer-quote {
  color: var(--nx-accent) !important;
}

body.nexperio-themed .nx-site-footer {
  margin-top: clamp(56px, 8vw, 96px) !important;
  background: var(--nx-navy-deep) !important;
  color: rgba(255,255,255,0.78) !important;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 4vw, 64px) 24px !important;
  border-top: 1px solid var(--nx-line) !important;
}

body.nexperio-themed .nx-site-footer-inner {
  max-width: 1280px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1.6fr 1fr 1fr 1fr !important;
  gap: clamp(32px, 4vw, 56px) !important;
}

body.nexperio-themed .nx-site-footer-manifest {
  max-width: 420px !important;
}

body.nexperio-themed .nx-site-footer-brand-row {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
}

body.nexperio-themed .nx-site-footer-mark {
  width: 36px !important;
  height: 36px !important;
  opacity: 0.9 !important;
}

body.nexperio-themed .nx-site-footer-wordmark {
  font-size: 24px !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  display: inline-flex !important;
  align-items: baseline !important;
}

body.nexperio-themed .nx-site-footer-brandname {
  font-family: 'Adequate', var(--nx-font-heading) !important;
  font-weight: 400 !important;
  color: #fff !important;
}

body.nexperio-themed .nx-site-footer-tld {
  font-family: var(--nx-font-serif) !important;
  font-style: italic !important;
  color: var(--nx-accent) !important;
  font-weight: 500 !important;
}

body.nexperio-themed .nx-site-footer-quote {
  font-family: var(--nx-font-heading) !important;
  font-weight: 600 !important;
  font-size: 26px !important;
  line-height: 1.3 !important;
  color: #fff !important;
  margin-top: 8px !important;
  letter-spacing: -0.01em !important;
}

body.nexperio-themed .nx-site-footer-quote .serif {
  color: var(--nx-accent) !important;
  font-weight: 400 !important;
  font-size: 28px !important;
}

body.nexperio-themed .nx-site-footer-signature {
  font-family: var(--nx-font-mono) !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  color: rgba(255,255,255,0.5) !important;
  margin-top: 12px !important;
  margin-bottom: 28px !important;
}

body.nexperio-themed .nx-site-footer-btn {
  border-color: rgba(255,255,255,0.4) !important;
  color: #fff !important;
}

body.nexperio-themed .nx-site-footer-btn:hover {
  background: var(--nx-accent) !important;
  border-color: var(--nx-accent) !important;
}

body.nexperio-themed .nx-site-footer-eyebrow {
  color: var(--nx-accent) !important;
}

body.nexperio-themed .nx-site-footer-eyebrow::before {
  background: var(--nx-accent) !important;
}

body.nexperio-themed .nx-site-footer-list {
  list-style: none !important;
  margin-top: 18px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  padding: 0 !important;
}

body.nexperio-themed .nx-site-footer-list a,
body.nexperio-themed .nx-site-footer-list span {
  font-family: var(--nx-font-body) !important;
  font-size: 14px !important;
  color: rgba(255,255,255,0.78) !important;
  transition: color 200ms cubic-bezier(.2,.7,.2,1) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

body.nexperio-themed .nx-site-footer-list a .arrow {
  font-family: var(--nx-font-serif) !important;
  font-size: 13px !important;
  color: var(--nx-accent) !important;
  opacity: 0 !important;
  transform: translateX(-4px) !important;
  transition: opacity 200ms, transform 200ms !important;
}

body.nexperio-themed .nx-site-footer-list .num {
  font-family: var(--nx-font-mono) !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  color: rgba(255,255,255,0.4) !important;
  margin-right: 8px !important;
}

body.nexperio-themed .nx-site-footer-list a:hover {
  color: #fff !important;
}

body.nexperio-themed .nx-site-footer-list a:hover .num {
  color: var(--nx-accent) !important;
}

body.nexperio-themed .nx-site-footer-list a:hover .arrow {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

body.nexperio-themed .nx-site-footer-list .muted {
  color: rgba(255,255,255,0.4) !important;
}

body.nexperio-themed .nx-site-footer-base {
  max-width: 1280px !important;
  margin: clamp(40px, 5vw, 72px) auto 0 !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(255,255,255,0.10) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-family: var(--nx-font-mono) !important;
  font-size: 11px !important;
  letter-spacing: 0.05em !important;
  color: rgba(255,255,255,0.45) !important;
}

body.nexperio-themed .nx-site-footer-base .version {
  color: var(--nx-accent) !important;
}

body.nexperio-themed .grid-2,
body.nexperio-themed .grid-3,
body.nexperio-themed .grid-4,
body.nexperio-themed .form-grid,
body.nexperio-themed .grid-main,
body.nexperio-themed .calc-grid,
body.nexperio-themed .morpho-grid {
  gap: 20px !important;
}

@media (max-width: 1100px) {
  body.nexperio-themed .nx-site-footer-inner {
    grid-template-columns: 1fr 1fr !important;
  }

  body.nexperio-themed .nx-site-footer-manifest {
    grid-column: span 2 !important;
  }
}

@media (max-width: 768px) {
  body.nexperio-themed .container,
  body.nexperio-themed .qr-app,
  body.nexperio-themed .page {
    padding-inline: 18px !important;
  }

  body.nexperio-themed .hero,
  body.nexperio-themed .nx-header {
    padding-top: 42px !important;
    padding-bottom: 32px !important;
  }

  body.nexperio-themed .grid-2,
  body.nexperio-themed .grid-3,
  body.nexperio-themed .grid-4,
  body.nexperio-themed .form-grid,
  body.nexperio-themed .grid-main,
  body.nexperio-themed .calc-grid,
  body.nexperio-themed .morpho-grid,
  body.nexperio-themed .nx-tool-cta {
    grid-template-columns: 1fr !important;
  }

  body.nexperio-themed .cta-row,
  body.nexperio-themed .nx-cta-row,
  body.nexperio-themed .actions {
    justify-content: stretch !important;
  }

  body.nexperio-themed .cta-row > *,
  body.nexperio-themed .nx-cta-row > *,
  body.nexperio-themed .actions > *,
  body.nexperio-themed .nx-tool-cta .btn {
    width: 100% !important;
  }

  body.nexperio-themed table,
  body.nexperio-themed .size-table {
    min-width: 520px;
  }
}

@media (max-width: 540px) {
  body.nexperio-themed .nx-site-footer-inner {
    grid-template-columns: 1fr !important;
  }

  body.nexperio-themed .nx-site-footer-manifest {
    grid-column: auto !important;
  }

  body.nexperio-themed .nx-site-footer-base {
    flex-direction: column !important;
    gap: 8px !important;
    align-items: flex-start !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.nexperio-themed *,
  body.nexperio-themed *::before,
  body.nexperio-themed *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
