/* ============================================================
   noltopup.org — arabic-modern x bold-color-block
   prefix: nx-   seed: OV4JQ2A1ET   theme: light + dark toggle
   Plain static, no framework, no CDN.
   ============================================================ */

:root {
  /* light theme tokens */
  --nx-primary: #d81f3a;
  --nx-primary-ink: #b3162e;
  --nx-primary-soft: #fdeaed;
  --nx-ink: #16181d;
  --nx-ink-2: #565c68;
  --nx-paper: #ffffff;
  --nx-paper-2: #eef1f6;
  --nx-surface: #ffffff;
  --nx-border: #16181d;
  --nx-line: #dfe3ec;
  --nx-shadow: 8px 8px 0 rgba(22, 24, 29, .14);
  --nx-shadow-sm: 5px 5px 0 rgba(22, 24, 29, .12);
  --nx-shadow-color: 8px 8px 0 var(--nx-primary);
  --nx-geo: rgba(22, 24, 29, .035);

  --nx-sans: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --nx-serif: "IBM Plex Serif", Georgia, "Times New Roman", serif;
  --nx-ar: "Almarai", "Noto Naskh Arabic", "Segoe UI", Tahoma, sans-serif;

  --nx-maxw: 1160px;
  --nx-radius: 12px;
  --nx-radius-lg: 18px;
  --nx-fs-root: 18px;
}

:root[data-theme="dark"] {
  --nx-primary: #ff5468;
  --nx-primary-ink: #ff7484;
  --nx-primary-soft: #2a1a1e;
  --nx-ink: #e8eaf0;
  --nx-ink-2: #a3aab8;
  --nx-paper: #111318;
  --nx-paper-2: #171a20;
  --nx-surface: #191c22;
  --nx-border: #e8eaf0;
  --nx-line: #2c313b;
  --nx-shadow: 8px 8px 0 rgba(0, 0, 0, .5);
  --nx-shadow-sm: 5px 5px 0 rgba(0, 0, 0, .45);
  --nx-shadow-color: 8px 8px 0 var(--nx-primary);
  --nx-geo: rgba(232, 234, 240, .04);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--nx-sans);
  font-size: var(--nx-fs-root);
  line-height: 1.66;
  color: var(--nx-ink);
  background-color: var(--nx-paper);
  /* arabic_geometry background motif */
  background-image:
    linear-gradient(135deg, var(--nx-geo) 25%, transparent 25%, transparent 75%, var(--nx-geo) 75%),
    linear-gradient(45deg, var(--nx-geo) 25%, transparent 25%, transparent 75%, var(--nx-geo) 75%);
  background-size: 34px 34px;
  transition: background-color .25s ease, color .25s ease;
  overflow-x: hidden;
}
body.nx-noscroll { overflow: hidden; }
body[dir="rtl"] { font-family: var(--nx-ar); }
body[dir="rtl"] h1, body[dir="rtl"] h2, body[dir="rtl"] h3 { font-family: var(--nx-ar); }

h1, h2, h3, h4 { font-family: var(--nx-serif); font-weight: 600; line-height: 1.16; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.15rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1rem; }
a { color: var(--nx-primary-ink); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.nx-wrap { max-width: var(--nx-maxw); margin: 0 auto; padding: 0 clamp(16px, 4vw, 38px); }
.nx-sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 3px solid var(--nx-primary); outline-offset: 2px; border-radius: 4px; }

/* LTR islands inside RTL */
.nx-ltr, a[href^="tel:"], a[href^="mailto:"], a[href*="wa.me"] { direction: ltr; unicode-bidi: isolate; }
.nx-foot address { unicode-bidi: plaintext; }

/* ---------- utility bar above header (always dark: keep text light in both themes) ---------- */
.nx-utility { background: var(--nx-ink); color: #eef1f6; font-size: .8rem; }
:root[data-theme="dark"] .nx-utility { background: #05070b; color: #eef1f6; }
.nx-utility .nx-wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 38px; flex-wrap: wrap; }
.nx-utility a { color: inherit; }
.nx-utility .nx-lang button { color: #d3d8e2; border-color: #3a424f; }
.nx-utility .nx-lang button.nx-on { background: var(--nx-primary); border-color: var(--nx-primary); color: #fff; }
.nx-utility .nx-u-right { display: flex; align-items: center; gap: 16px; }
.nx-utility .nx-u-item { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- header ---------- */
.nx-head { position: sticky; top: 0; z-index: 60; background: color-mix(in srgb, var(--nx-paper) 85%, transparent); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-bottom: 2px solid var(--nx-border); transition: transform .3s ease; }
.nx-head.nx-hidden { transform: translateY(-130%); }
.nx-head .nx-wrap { display: flex; align-items: center; gap: 18px; min-height: 68px; }
.nx-logo { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--nx-ink); }
.nx-logo:hover { text-decoration: none; }
.nx-logo-mark { width: 42px; height: 42px; border: 2px solid var(--nx-border); border-radius: 11px; display: grid; place-items: center; background: var(--nx-primary); color: #fff; flex: none; }
.nx-logo-txt b { font-family: var(--nx-serif); font-size: 1.3rem; font-weight: 600; display: block; line-height: 1; }
.nx-logo-txt .nx-logo-ar { font-family: var(--nx-ar); font-size: .74rem; color: var(--nx-ink-2); letter-spacing: .02em; }
.nx-nav { display: flex; align-items: center; gap: 22px; margin-inline-start: auto; }
.nx-nav > a { font-size: .93rem; color: var(--nx-ink-2); font-weight: 500; }
.nx-nav > a:hover { color: var(--nx-primary-ink); }
.nx-lang { display: inline-flex; gap: 2px; }
.nx-lang button { background: none; border: 1.5px solid var(--nx-line); border-radius: 8px; cursor: pointer; color: var(--nx-ink-2); font: inherit; font-size: .78rem; font-weight: 700; padding: 5px 9px; }
.nx-lang button.nx-on { background: var(--nx-primary); border-color: var(--nx-primary); color: #fff; }
.nx-theme { width: 40px; height: 40px; border: 1.5px solid var(--nx-line); border-radius: 10px; background: var(--nx-surface); cursor: pointer; display: grid; place-items: center; color: var(--nx-ink); }
.nx-theme .nx-moon { display: none; }
:root[data-theme="dark"] .nx-theme .nx-moon { display: block; }
:root[data-theme="dark"] .nx-theme .nx-sun { display: none; }
.nx-burger { display: none; width: 46px; height: 46px; border: 2px solid var(--nx-border); border-radius: 10px; background: var(--nx-surface); cursor: pointer; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.nx-burger span { display: block; width: 20px; height: 2px; background: var(--nx-ink); border-radius: 2px; }

/* ---------- buttons (pill, thick border, long color shadow) ---------- */
.nx-btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--nx-sans); font-weight: 700; font-size: .98rem; padding: 14px 26px; min-height: 52px; border-radius: 999px; border: 2px solid var(--nx-border); background: var(--nx-primary); color: #fff; cursor: pointer; text-decoration: none; box-shadow: var(--nx-shadow-sm); transition: transform .12s ease, box-shadow .12s ease, background .15s ease; line-height: 1.1; }
.nx-btn:hover { text-decoration: none; color: #fff; transform: translate(-2px, -2px); box-shadow: var(--nx-shadow-color); }
.nx-btn:active { transform: translate(0, 0); box-shadow: 2px 2px 0 var(--nx-primary); }
.nx-btn--ghost { background: var(--nx-surface); color: var(--nx-ink); }
.nx-btn--ghost:hover { background: var(--nx-paper-2); color: var(--nx-ink); }
.nx-btn--sm { min-height: 44px; padding: 9px 18px; font-size: .85rem; }
.nx-btn--lg { font-size: 1.05rem; padding: 16px 30px; }
.nx-btn .nx-ic { display: inline-flex; }
body[dir="rtl"] .nx-btn .nx-ic svg { transform: scaleX(-1); }

/* ---------- mobile drawer (CSS-driven) ---------- */
.nx-drawer-back { position: fixed; inset: 0; z-index: 90; background: rgba(10, 12, 16, .55); visibility: hidden; opacity: 0; transition: opacity .3s ease, visibility .3s ease; }
.nx-drawer-back.nx-open { visibility: visible; opacity: 1; }
.nx-drawer { position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); z-index: 95; background: var(--nx-paper); border-inline-start: 2px solid var(--nx-border); padding: 20px; transform: translateX(100%); visibility: hidden; opacity: 0; transition: transform .34s cubic-bezier(.22,.61,.36,1), visibility .34s ease, opacity .34s ease; overflow-y: auto; }
body[dir="rtl"] .nx-drawer { inset: 0 auto 0 0; border-inline-start: 0; border-inline-end: 2px solid var(--nx-border); transform: translateX(-100%); }
.nx-drawer.nx-open { transform: translateX(0); visibility: visible; opacity: 1; }
.nx-drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.nx-drawer-close { width: 42px; height: 42px; border: 2px solid var(--nx-border); border-radius: 10px; background: var(--nx-surface); font-size: 1.3rem; cursor: pointer; color: var(--nx-ink); }
.nx-drawer nav { display: flex; flex-direction: column; }
.nx-drawer nav a { padding: 14px 6px; border-bottom: 1px solid var(--nx-line); text-decoration: none; color: var(--nx-ink); font-size: 1.1rem; }
.nx-drawer-foot { margin-top: 18px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ---------- hero (asymmetric collage, broken grid) ---------- */
.nx-hero { position: relative; padding: clamp(34px, 6vw, 70px) 0 clamp(28px, 5vw, 52px); }
.nx-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(26px, 4vw, 54px); align-items: center; }
.nx-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--nx-primary-ink); background: var(--nx-primary-soft); border: 2px solid var(--nx-primary); padding: 6px 14px; border-radius: 999px; margin-bottom: 20px; }
.nx-hero h1 .nx-hl { color: var(--nx-primary); }
.nx-lede { font-size: 1.12rem; color: var(--nx-ink-2); max-width: 52ch; }
.nx-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.nx-trust { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 26px; font-size: .84rem; color: var(--nx-ink-2); }
.nx-trust span { display: inline-flex; align-items: center; gap: 7px; }
.nx-trust svg { color: var(--nx-primary); }

/* hero visual card (neutral, no fabricated numbers) */
.nx-hero-visual { border: 2px solid var(--nx-border); border-radius: var(--nx-radius-lg); background: var(--nx-surface); box-shadow: var(--nx-shadow); overflow: hidden; }
.nx-hv-band { background: var(--nx-primary); color: #fff; padding: 12px 20px; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; display: flex; justify-content: space-between; }
.nx-hv-body { padding: 22px; }
.nx-card3d { background: linear-gradient(135deg, var(--nx-ink), #2a2e39); color: #fff; border-radius: 14px; padding: 20px; position: relative; overflow: hidden; }
:root[data-theme="dark"] .nx-card3d { background: linear-gradient(135deg, #23272f, #0d0f14); border: 1px solid #333a45; }
.nx-card3d .nx-chip { width: 38px; height: 28px; border-radius: 6px; background: linear-gradient(135deg, #f4d06f, #d9a441); margin-bottom: 26px; }
.nx-card3d .nx-c-label { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; opacity: .8; }
.nx-card3d .nx-c-num { font-family: var(--nx-serif); font-size: 1.15rem; letter-spacing: .16em; }
.nx-hv-steps { list-style: none; margin: 16px 0 0; padding: 0; counter-reset: s; }
.nx-hv-steps li { counter-increment: s; display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; border-bottom: 1px dashed var(--nx-line); font-size: .93rem; }
.nx-hv-steps li:last-child { border-bottom: 0; }
.nx-hv-steps li::before { content: counter(s); flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--nx-primary-soft); color: var(--nx-primary-ink); border: 1.5px solid var(--nx-primary); display: grid; place-items: center; font-weight: 800; font-size: .82rem; font-family: var(--nx-sans); }

/* ---------- sections ---------- */
.nx-sec { padding: clamp(38px, 6vw, 74px) 0; position: relative; }
.nx-sec--tint { background: var(--nx-paper-2); border-top: 2px solid var(--nx-border); border-bottom: 2px solid var(--nx-border); }
.nx-sec-head { max-width: 62ch; margin-bottom: 30px; }
.nx-kick { font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--nx-primary-ink); margin: 0 0 8px; }

/* steps grid */
.nx-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; counter-reset: st; }
.nx-step { background: var(--nx-surface); border: 2px solid var(--nx-border); border-radius: var(--nx-radius); padding: 24px; box-shadow: var(--nx-shadow-sm); }
.nx-step .nx-stnum { counter-increment: st; font-family: var(--nx-serif); font-size: 2rem; color: var(--nx-primary); }
.nx-step .nx-stnum::before { content: "0" counter(st); }
.nx-step h3 { margin: 6px 0; }
.nx-step p { margin: 0; color: var(--nx-ink-2); font-size: .95rem; }

/* amount chips (display) */
.nx-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.nx-chip { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; min-height: 62px; min-width: 104px; padding: 10px 18px; border: 2px solid var(--nx-border); border-radius: var(--nx-radius); background: var(--nx-surface); text-decoration: none; color: var(--nx-ink); box-shadow: var(--nx-shadow-sm); transition: transform .12s ease, background .12s ease; }
.nx-chip:hover { transform: translate(-2px,-2px); background: var(--nx-primary); color: #fff; text-decoration: none; box-shadow: var(--nx-shadow-color); }
.nx-chip:hover span { color: rgba(255,255,255,.85); }
.nx-chip b { font-family: var(--nx-serif); font-size: 1.5rem; }
.nx-chip span { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--nx-ink-2); }

/* postage-stamp feature cards */
.nx-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.nx-stamp { position: relative; background: var(--nx-surface); border: 2px solid var(--nx-border); border-radius: 6px; padding: 24px; box-shadow: var(--nx-shadow-sm); }
.nx-stamp::before { content: ""; position: absolute; inset: 6px; border: 2px dashed var(--nx-line); border-radius: 3px; pointer-events: none; }
.nx-stamp > * { position: relative; }
.nx-stamp .nx-ficon { width: 46px; height: 46px; border-radius: 11px; background: var(--nx-primary-soft); border: 2px solid var(--nx-primary); display: grid; place-items: center; color: var(--nx-primary-ink); margin-bottom: 14px; }
.nx-stamp h3 { margin: 0 0 6px; }
.nx-stamp p { margin: 0; color: var(--nx-ink-2); font-size: .95rem; }

/* prose */
.nx-prose { max-width: 70ch; }
.nx-prose h2 { margin-top: 1.6em; }
.nx-prose ul, .nx-prose ol { padding-inline-start: 22px; }
.nx-prose li { margin-bottom: .5em; }
.nx-callout { border-inline-start: 5px solid var(--nx-primary); background: var(--nx-primary-soft); border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 22px 0; }
body[dir="rtl"] .nx-callout { border-radius: 12px 0 0 12px; }

/* band */
.nx-band { background: var(--nx-primary); color: #fff; border-top: 2px solid var(--nx-border); border-bottom: 2px solid var(--nx-border); }
.nx-band h2 { color: #fff; }
.nx-band .nx-wrap { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; padding: 46px 0; }
.nx-band p { color: rgba(255,255,255,.92); margin: 0; max-width: 46ch; }
.nx-band .nx-btn { background: #fff; color: var(--nx-primary-ink); border-color: #fff; }
.nx-band .nx-btn:hover { background: rgba(255,255,255,.9); box-shadow: 8px 8px 0 rgba(0,0,0,.25); }

/* ---------- forms ---------- */
.nx-form { display: grid; gap: 20px; }
.nx-field { display: grid; gap: 7px; }
.nx-field label { font-weight: 700; font-size: .92rem; }
.nx-field .nx-hint { font-size: .78rem; color: var(--nx-ink-2); }
.nx-input, .nx-select { font: inherit; font-size: 1rem; padding: 13px 15px; min-height: 52px; border: 2px solid var(--nx-line); border-radius: var(--nx-radius); background: var(--nx-surface); color: var(--nx-ink); width: 100%; }
.nx-input:focus, .nx-select:focus { outline: 3px solid var(--nx-primary); outline-offset: 1px; border-color: var(--nx-primary); }
.nx-input.nx-invalid, .nx-select.nx-invalid { border-color: var(--nx-primary); background: var(--nx-primary-soft); }
.nx-err { color: var(--nx-primary-ink); font-size: .8rem; font-weight: 700; min-height: 1em; }
.nx-input-wrap { position: relative; }
.nx-input-suffix { position: absolute; inset-inline-end: 15px; top: 50%; transform: translateY(-50%); color: var(--nx-ink-2); font-weight: 700; pointer-events: none; }
/* LTR numeric inputs */
.nx-input[inputmode="numeric"], .nx-input[inputmode="decimal"], .nx-input[type="email"], .nx-input[type="tel"] { direction: ltr; text-align: start; }
body[dir="rtl"] .nx-input[inputmode="numeric"], body[dir="rtl"] .nx-input[inputmode="decimal"], body[dir="rtl"] .nx-input[type="email"] { text-align: right; }

.nx-amounts { display: flex; flex-wrap: wrap; gap: 12px; }
.nx-amount { position: relative; display: inline-flex; flex-direction: column; align-items: center; justify-content: center; min-height: 56px; min-width: 100px; padding: 8px 16px; border: 2px solid var(--nx-line); border-radius: var(--nx-radius); background: var(--nx-surface); cursor: pointer; transition: background .12s ease, color .12s ease, border-color .12s ease; }
.nx-amount input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.nx-amount b { font-family: var(--nx-serif); font-size: 1.35rem; }
.nx-amount span { font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--nx-ink-2); }
.nx-amount.is-on, .nx-amount:has(input:checked) { background: var(--nx-primary); border-color: var(--nx-primary); color: #fff; }
.nx-amount.is-on span, .nx-amount:has(input:checked) span { color: rgba(255,255,255,.85); }

.nx-summary { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; border: 2px dashed var(--nx-border); border-radius: var(--nx-radius); background: var(--nx-paper-2); }
.nx-summary .nx-total { font-family: var(--nx-serif); font-size: 1.7rem; color: var(--nx-primary-ink); font-weight: 700; }

.nx-form-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px, 4vw, 44px); align-items: start; }
.nx-form-card { background: var(--nx-surface); border: 2px solid var(--nx-border); border-radius: var(--nx-radius-lg); box-shadow: var(--nx-shadow); padding: clamp(20px, 3vw, 34px); }
.nx-aside-card { background: var(--nx-paper-2); border: 2px solid var(--nx-border); border-radius: var(--nx-radius); padding: 22px; }
.nx-aside-card h3 { margin-top: 0; }
.nx-aside-card ul { padding-inline-start: 18px; margin: 0; }
.nx-aside-card li { margin-bottom: 9px; font-size: .92rem; }

/* faq */
.nx-faq details { background: var(--nx-surface); border: 2px solid var(--nx-border); border-radius: var(--nx-radius); margin-bottom: 12px; box-shadow: var(--nx-shadow-sm); }
.nx-faq summary { cursor: pointer; list-style: none; padding: 17px 46px 17px 20px; font-weight: 700; position: relative; }
body[dir="rtl"] .nx-faq summary { padding: 17px 20px 17px 46px; }
.nx-faq summary::-webkit-details-marker { display: none; }
.nx-faq summary::after { content: "+"; position: absolute; inset-inline-end: 18px; top: 13px; font-size: 1.4rem; color: var(--nx-primary); }
.nx-faq details[open] summary::after { content: "\2212"; }
.nx-faq .nx-faq-a { padding: 0 20px 18px; color: var(--nx-ink-2); }
.nx-faq .nx-faq-a p { margin: 0; }

/* page head */
.nx-phead { padding: clamp(26px, 5vw, 52px) 0 clamp(16px, 3vw, 28px); border-bottom: 2px solid var(--nx-border); background: var(--nx-paper-2); }
.nx-phead .nx-kick { color: var(--nx-primary-ink); }
.nx-crumb { font-size: .78rem; color: var(--nx-ink-2); margin: 0 0 12px; }
.nx-crumb a { color: var(--nx-ink-2); }

/* contact grid */
.nx-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }

/* ---------- footer ---------- */
.nx-foot { background: var(--nx-ink); color: #c3c9d4; border-top: 3px solid var(--nx-primary); }
:root[data-theme="dark"] .nx-foot { background: #0b0d12; }
.nx-foot .nx-wrap { padding: 50px 0 26px; }
.nx-foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.nx-foot h4 { color: #fff; font-family: var(--nx-sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.nx-foot ul { list-style: none; margin: 0; padding: 0; }
.nx-foot li { margin-bottom: 9px; }
.nx-foot a { color: #c3c9d4; font-size: .9rem; text-decoration: none; }
.nx-foot a:hover { color: #fff; text-decoration: underline; }
.nx-foot-logo b { font-family: var(--nx-serif); font-size: 1.3rem; color: #fff; }
.nx-foot-blurb { font-size: .9rem; max-width: 38ch; margin: 12px 0; }
.nx-foot address { font-style: normal; font-size: .86rem; line-height: 1.7; }
.nx-pay-logos { display: flex; gap: 8px; margin-top: 14px; }
.nx-pay-logos span { border: 1px solid #3a424f; border-radius: 6px; padding: 4px 9px; font-size: .66rem; font-weight: 800; letter-spacing: .06em; color: #e6ebf2; }
.nx-foot-bar { border-top: 1px solid #2a313c; margin-top: 30px; padding-top: 18px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .8rem; }

/* cookie banner */
.nx-cookie { position: fixed; inset-inline: 16px; bottom: 16px; z-index: 80; max-width: 680px; margin: 0 auto; background: var(--nx-surface); border: 2px solid var(--nx-border); border-radius: var(--nx-radius); box-shadow: var(--nx-shadow); padding: 16px 18px; display: none; gap: 14px; align-items: center; flex-wrap: wrap; }
.nx-cookie.nx-show { display: flex; }
.nx-cookie p { margin: 0; font-size: .86rem; flex: 1 1 260px; }

/* scroll top + progress */
.nx-top { position: fixed; inset-inline-end: 18px; bottom: 18px; z-index: 70; width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--nx-border); background: var(--nx-primary); color: #fff; cursor: pointer; display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease, transform .15s ease; box-shadow: var(--nx-shadow-sm); }
.nx-top.nx-show { opacity: 1; visibility: visible; }
.nx-top:hover { transform: translateY(-3px); }
.nx-progress { position: fixed; top: 0; inset-inline-start: 0; height: 3px; width: 0; background: var(--nx-primary); z-index: 100; transition: width .1s linear; }

/* reveal */
.nx-reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.nx-reveal.nx-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .nx-reveal { opacity: 1; transform: none; transition: none; } .nx-head { transition: none; } }

/* overlay spinner */
.nx-overlay { position: fixed; inset: 0; z-index: 200; background: color-mix(in srgb, var(--nx-paper) 92%, transparent); display: none; align-items: center; justify-content: center; }
.nx-overlay.nx-show { display: flex; }
.nx-spinner { width: 54px; height: 54px; border: 4px solid var(--nx-line); border-top-color: var(--nx-primary); border-radius: 50%; animation: nx-spin .8s linear infinite; }
@keyframes nx-spin { to { transform: rotate(360deg); } }

.nx-noscript { background: var(--nx-primary); color: #fff; text-align: center; padding: 10px; font-size: .85rem; }

/* responsive */
@media (max-width: 900px) {
  .nx-hero-grid { grid-template-columns: 1fr; }
  .nx-form-grid { grid-template-columns: 1fr; }
  .nx-foot-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nx-nav > a, .nx-nav .nx-lang { display: none; }
  .nx-burger { display: inline-flex; }
}
@media (max-width: 560px) {
  :root { --nx-fs-root: 17px; }
  .nx-foot-top { grid-template-columns: 1fr; }
  .nx-band .nx-wrap { flex-direction: column; align-items: flex-start; }
  .nx-utility .nx-u-item.nx-u-hide { display: none; }
}
@media (max-width: 360px) {
  .nx-btn { width: 100%; justify-content: center; }
  .nx-hero-cta .nx-btn { width: 100%; }
}
