/* =====================================================================
   News Source — brand layer (loaded after style.css)
   Brand: News Source | Press Release Distribution  •  newssourcepr.com
   ===================================================================== */

:root {
  --ns-blue: #2e81b5;
  --ns-blue-dark: #1e5f8a;
  --ns-blue-soft: #eaf3fa;
  --ns-blue-soft2: #f5f9fc;
  --ns-ink: #263238;
  --ns-muted: #6c6e75;
  --ns-border: #e4e9ee;
  --ns-green: #34a853;
  --ns-amber: #f0a500;
  --ns-radius: 16px;
  --ns-shadow-sm: 0 8px 24px rgba(38, 50, 56, .07);
  --ns-shadow-md: 0 18px 46px rgba(30, 95, 138, .12);
  --ns-shadow-lg: 0 30px 70px rgba(30, 95, 138, .16);
}

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

/* ---------- Text logo / wordmark -------------------------------------- */
.ns-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  line-height: 1;
}
.ns-brand-mark {
  display: inline-flex;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}
.ns-brand-mark svg { width: 100%; height: 100%; display: block; }
.ns-brand-text {
  font-family: "Metropolis", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-size: 23px;
  letter-spacing: -0.4px;
  color: var(--ns-ink);
  white-space: nowrap;
}
.ns-brand-text span { color: var(--ns-blue); }
.offcanvas-logo.ns-brand .ns-brand-text { font-size: 21px; }

/* ---------- Blue solid button (CTA accent) ---------------------------- */
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #2e81b5;
  --bs-btn-border-color: #2e81b5;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #1e5f8a;
  --bs-btn-hover-border-color: #1e5f8a;
  --bs-btn-focus-shadow-rgb: 46, 129, 181;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #1e5f8a;
  --bs-btn-active-border-color: #1e5f8a;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #2e81b5;
  --bs-btn-disabled-border-color: #2e81b5;
}

/* ---------- Header ---------------------------------------------------- */
.main-menu ul li + li { margin-left: 30px; }
.main-menu ul li a { white-space: nowrap; }
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li + li { margin-left: 20px; }
  .main-menu ul li a { font-size: 15px; }
}

.main-menu ul li a.header-cta,
.header-cta {
  color: var(--ns-blue) !important;
  font-weight: 600;
  transition: color .2s ease;
}
.main-menu ul li a.header-cta:hover,
.header-cta:hover { color: var(--ns-blue-dark) !important; }

/* ---------- Section rhythm -------------------------------------------- */
.bg-soft-blue { background-color: var(--ns-blue-soft); }
.bg-soft-blue-2 { background-color: var(--ns-blue-soft2); }
.section-py-sm { padding-top: 70px; padding-bottom: 70px; }
@media screen and (min-width: 1200px) { .section-py-sm { padding-top: 96px; padding-bottom: 96px; } }

/* The eyebrow labels were removed site-wide; keep title blocks breathing. */
.title-section { margin-bottom: 8px; }
.title-section.text-center { max-width: 780px; margin-left: auto; margin-right: auto; }
.title-section > p:last-child { margin-bottom: 0; }

.ns-lead { font-size: 1.05rem; color: var(--ns-muted); }
/* Check / bullet list reused on service + api pages */
.ns-check-list { margin: 0; padding: 0; list-style: none; }
.ns-check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 16px;
  color: #51565c;
}
.ns-check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ns-blue-soft);
  color: var(--ns-blue);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Feature / value cards ------------------------------------- */
.ns-card {
  background: #fff;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius);
  padding: 34px 30px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ns-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ns-shadow-md);
  border-color: transparent;
}
.ns-card .ns-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--ns-blue-soft);
  color: var(--ns-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}
.ns-card h3 { font-size: 21px; margin-bottom: 12px; }
.ns-card p { margin: 0; color: var(--ns-muted); }
.ns-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-weight: 600;
  color: var(--ns-blue);
  text-decoration: none;
}
.ns-card-link:hover { color: var(--ns-blue-dark); }

/* Numbered step badge */
.ns-step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ns-blue);
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* =====================================================================
   Home hero — feature graphic
   ===================================================================== */
.ns-hero-feature {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 46px 18px 58px;
}
.ns-hero-feature::before {
  content: "";
  position: absolute;
  inset: 8% -4% 4% -4%;
  background: radial-gradient(60% 55% at 50% 45%, #dbeaf6 0%, rgba(234, 243, 250, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}
.ns-hf-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--ns-shadow-lg);
  padding: 30px 28px 28px;
}
.ns-hf-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.ns-hf-doc {
  width: 46px; height: 46px; flex: 0 0 46px;
  border-radius: 12px;
  background: var(--ns-blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.ns-hf-headtext b { display: block; font-size: 17px; color: var(--ns-ink); font-weight: 700; margin-bottom: 3px; }
.ns-hf-headtext > span { display: block; font-size: 13px; color: var(--ns-muted); }

.ns-hf-outlets {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0 18px;
  border-top: 1px solid var(--ns-border);
  border-bottom: 1px solid var(--ns-border);
}
.ns-hf-outlets img { max-height: 22px; max-width: 42%; width: auto; height: auto; }
.ns-hf-more {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ns-blue);
  background: var(--ns-blue-soft);
  border-radius: 20px;
  padding: 5px 12px;
  white-space: nowrap;
}

.ns-hf-price { display: flex; align-items: flex-end; gap: 12px; margin: 22px 0 6px; }
.ns-hf-amount {
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  color: var(--ns-ink);
  letter-spacing: -1.5px;
}
.ns-hf-unit { font-size: 14px; color: var(--ns-muted); padding-bottom: 7px; font-weight: 600; }
.ns-hf-links { font-size: 14.5px; color: var(--ns-muted); margin: 0 0 20px; }
.ns-hf-links strong { color: var(--ns-blue); font-weight: 800; }
.ns-hf-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--ns-blue);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 18px;
  text-decoration: none;
  transition: background .2s ease;
}
.ns-hf-cta:hover { background: var(--ns-blue-dark); color: #fff; }

/* floating labels */
.ns-hf-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--ns-shadow-md);
  padding: 10px 14px;
  white-space: nowrap;
}
.ns-hf-chip i {
  width: 30px; height: 30px; flex: 0 0 30px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
}
.ns-hf-chip .ns-hf-chip-ok { background: #e6f6ec; color: var(--ns-green); }
.ns-hf-chip .ns-hf-chip-bolt { background: #fff6df; color: var(--ns-amber); }
.ns-hf-chip .ns-hf-chip-globe { background: var(--ns-blue-soft); color: var(--ns-blue); }
.ns-hf-chip b { display: block; font-size: 12.5px; color: var(--ns-ink); line-height: 1.3; }
.ns-hf-chip span { display: block; font-size: 11px; color: var(--ns-muted); line-height: 1.3; }
.ns-hf-chip img { max-height: 15px; max-width: 100%; width: auto; height: auto; display: block; margin-bottom: 2px; }

.ns-hf-chip--gn { top: 6px; left: -12px; }
.ns-hf-chip--speed { bottom: 8px; right: -10px; }
.ns-hf-chip--reach { top: 96px; right: -22px; }

@media screen and (max-width: 1199px) {
  .ns-hf-chip--gn { left: 0; }
  .ns-hf-chip--speed { right: 0; }
  .ns-hf-chip--reach { right: -6px; }
}
@media screen and (max-width: 575px) {
  .ns-hero-feature { padding: 40px 4px 52px; }
  .ns-hf-card { padding: 24px 20px 22px; }
  .ns-hf-amount { font-size: 44px; }
  .ns-hf-chip { padding: 8px 11px; gap: 8px; }
  .ns-hf-chip i { width: 26px; height: 26px; flex: 0 0 26px; font-size: 13px; }
  .ns-hf-chip b { font-size: 11.5px; }
  .ns-hf-chip span { font-size: 10px; }
  .ns-hf-chip--gn { left: -4px; top: 0; }
  .ns-hf-chip--speed { right: -4px; bottom: 0; }
  .ns-hf-chip--reach { display: none; }
}

/* =====================================================================
   Outlet logo strip
   ===================================================================== */
.ns-logo-strip .single-brand { text-align: center; padding: 10px 14px; }
.ns-logo-strip .single-brand img {
  max-height: 42px;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
  opacity: .82;
  transition: opacity .25s ease, transform .25s ease;
}
.ns-logo-strip .single-brand:hover img { opacity: 1; transform: translateY(-3px); }
@media screen and (max-width: 575px) { .ns-logo-strip .single-brand img { max-height: 34px; } }

/* Static (non-carousel) logo grid used on service pages */
.ns-logo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
}
@media screen and (min-width: 576px) { .ns-logo-grid { grid-template-columns: repeat(2, 1fr); } }
@media screen and (min-width: 992px) { .ns-logo-grid { grid-template-columns: repeat(3, 1fr); } }
.ns-logo-grid .ns-logo-cell {
  border: 1px solid var(--ns-border);
  border-radius: 14px;
  background: #fff;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.ns-logo-grid .ns-logo-cell:hover { box-shadow: var(--ns-shadow-sm); transform: translateY(-3px); }
.ns-logo-grid img { max-height: 40px; max-width: 100%; width: auto; height: auto; }

/* =====================================================================
   Pricing
   ===================================================================== */
.ns-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}
.ns-outlet-card {
  background: #fff;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ns-outlet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ns-shadow-md);
  border-color: transparent;
}
.ns-outlet-card .ns-outlet-logo {
  height: 34px;
  display: flex;
  align-items: center;
}
.ns-outlet-card .ns-outlet-logo img { max-height: 30px; max-width: 100%; width: auto; height: auto; }
.ns-outlet-card .ns-outlet-meta { font-size: 13.5px; color: var(--ns-muted); margin: 0; flex: 1 1 auto; }
.ns-outlet-card .ns-outlet-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 30px;
  font-weight: 800;
  color: var(--ns-ink);
  letter-spacing: -0.8px;
}
.ns-outlet-card .ns-outlet-price small { font-size: 13px; font-weight: 600; color: var(--ns-muted); letter-spacing: 0; }
.ns-outlet-card .ns-outlet-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--ns-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ns-outlet-card .ns-outlet-link:hover { color: var(--ns-blue-dark); }

/* Bundle */
.ns-bundle {
  background: linear-gradient(135deg, #17527a 0%, #21618f 55%, #2a76a8 100%);
  border-radius: 22px;
  color: #fff;
  padding: 42px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--ns-shadow-lg);
}
.ns-bundle::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  top: -140px; right: -90px;
}
.ns-bundle > * { position: relative; z-index: 1; }
.ns-bundle-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 20px;
  padding: 6px 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.ns-bundle h3 { color: #fff; font-size: 32px; font-weight: 800; margin-bottom: 12px; letter-spacing: -0.6px; }
.ns-bundle > p { color: rgba(255, 255, 255, .85); margin-bottom: 22px; }
.ns-bundle-price { display: flex; align-items: flex-end; gap: 10px; margin-bottom: 6px; }
.ns-bundle-amount { font-size: 62px; font-weight: 800; line-height: 1; letter-spacing: -2px; }
.ns-bundle-unit { font-size: 15px; font-weight: 600; color: rgba(255, 255, 255, .8); padding-bottom: 9px; }
.ns-bundle-list { list-style: none; margin: 0 0 26px; padding: 0; }
.ns-bundle-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .92);
}
.ns-bundle-list li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.ns-bundle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ns-blue-dark);
  font-weight: 700;
  border-radius: 12px;
  padding: 15px 30px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ns-bundle-btn:hover { color: var(--ns-blue-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 0, 0, .18); }
.ns-bundle .ns-bundle-note { font-size: 13px; color: rgba(255, 255, 255, .72); margin: 16px 0 0; }
@media screen and (max-width: 575px) {
  .ns-bundle { padding: 30px 24px; border-radius: 18px; }
  .ns-bundle h3 { font-size: 25px; }
  .ns-bundle-amount { font-size: 48px; }
}

/* Legacy pricing card (service pages) */
.ns-price-card {
  background: #fff;
  border: 1px solid var(--ns-border);
  border-radius: 18px;
  padding: 38px 32px;
  height: 100%;
  position: relative;
}
.ns-price-card.is-featured {
  border-color: var(--ns-blue);
  box-shadow: 0 26px 60px rgba(46, 129, 181, .16);
}
.ns-price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ns-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.ns-price-amount { font-size: 44px; font-weight: 800; color: var(--ns-ink); }
.ns-price-amount small { font-size: 16px; font-weight: 600; color: var(--ns-muted); }

/* =====================================================================
   Code blocks + API page
   ===================================================================== */
.ns-code {
  background: #1b2227;
  color: #e6edf3;
  border-radius: 14px;
  padding: 26px 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  font-family: "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  white-space: pre;
  tab-size: 2;
}
@media screen and (max-width: 767px) { .ns-code { font-size: 12px; padding: 20px 18px; border-radius: 12px; } }
.ns-code .tok-key { color: #7cc0e8; }
.ns-code .tok-str { color: #9ece6a; }
.ns-code .tok-com { color: #6c7986; }

.ns-code-title {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #232c33;
  color: #9fb0bd;
  font-family: "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 12.5px;
  border-radius: 14px 14px 0 0;
  padding: 12px 20px;
  margin: 0;
}
.ns-code-title + .ns-code { border-radius: 0 0 14px 14px; }
.ns-code-title .ns-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.ns-code-title .ns-dot:nth-of-type(1) { background: #ff5f57; }
.ns-code-title .ns-dot:nth-of-type(2) { background: #febc2e; }
.ns-code-title .ns-dot:nth-of-type(3) { background: #28c840; margin-right: 8px; }

/* Endpoint rows */
.ns-endpoint-method {
  display: inline-block;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--ns-blue-soft);
  color: var(--ns-blue);
  margin-right: 10px;
}
.ns-endpoint-list { display: grid; gap: 14px; }
.ns-endpoint {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--ns-border);
  border-radius: 14px;
  padding: 20px 24px;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.ns-endpoint:hover { box-shadow: var(--ns-shadow-sm); border-color: #cfdde8; }
.ns-endpoint code {
  font-size: 14px;
  color: var(--ns-ink);
  background: none;
  padding: 0;
  word-break: break-word;
}
.ns-endpoint p { margin: 6px 0 0; color: var(--ns-muted); font-size: 14.5px; }
.ns-endpoint .ns-endpoint-head { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
@media screen and (max-width: 575px) {
  .ns-endpoint { flex-direction: column; gap: 8px; padding: 18px 18px; }
}

/* Integration launcher buttons (Claude / ChatGPT / PR Software) */
.ns-integrations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.ns-integration {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius);
  padding: 26px 24px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ns-integration:hover { transform: translateY(-5px); box-shadow: var(--ns-shadow-md); border-color: transparent; }
.ns-integration-top { display: flex; align-items: center; gap: 12px; }
.ns-integration-mark {
  width: 42px; height: 42px; flex: 0 0 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 800;
  color: #fff;
}
.ns-integration-mark--claude { background: #d97757; }
.ns-integration-mark--gpt { background: #10a37f; }
.ns-integration-mark--prs { background: var(--ns-blue); }
.ns-integration h4 { font-size: 17px; margin: 0; color: var(--ns-ink); }
.ns-integration p { margin: 0; font-size: 14px; color: var(--ns-muted); flex: 1 1 auto; }
.ns-integration .ns-integration-go {
  font-weight: 700;
  font-size: 14px;
  color: var(--ns-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ns-integration:hover .ns-integration-go { color: var(--ns-blue-dark); }

/* =====================================================================
   FAQ accordion
   ===================================================================== */
.ns-faq { border: 1px solid var(--ns-border); border-radius: 14px; overflow: hidden; background: #fff; }
.ns-faq details { border-bottom: 1px solid var(--ns-border); }
.ns-faq details:last-child { border-bottom: 0; }
.ns-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 600;
  color: var(--ns-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.ns-faq summary::-webkit-details-marker { display: none; }
.ns-faq summary::after { content: "+"; font-size: 24px; color: var(--ns-blue); line-height: 1; flex: 0 0 auto; }
.ns-faq details[open] summary::after { content: "\2212"; }
.ns-faq .ns-faq-body { padding: 0 26px 24px; color: var(--ns-muted); }
.ns-faq .ns-faq-body a { color: var(--ns-blue); font-weight: 600; }
@media screen and (max-width: 575px) {
  .ns-faq summary { padding: 18px 18px; font-size: 15px; }
  .ns-faq .ns-faq-body { padding: 0 18px 20px; font-size: 14.5px; }
}

/* =====================================================================
   Client Area — compact auth card
   ===================================================================== */
.ns-auth-section { padding: 60px 0 80px; }
@media screen and (min-width: 1200px) { .ns-auth-section { padding: 80px 0 100px; } }

.ns-auth-card {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--ns-border);
  border-radius: 20px;
  box-shadow: var(--ns-shadow-lg);
  padding: 30px 30px 28px;
}
@media (max-width: 575px) { .ns-auth-card { padding: 24px 20px; border-radius: 16px; } }

.ns-auth-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  background: var(--ns-blue-soft);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 22px;
}
.ns-auth-toggle button {
  border: 0;
  background: transparent;
  padding: 11px 10px;
  border-radius: 9px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ns-blue-dark);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.ns-auth-toggle button.is-active {
  background: #fff;
  color: var(--ns-blue);
  box-shadow: 0 4px 12px rgba(46, 129, 181, .16);
}

.ns-auth-head { text-align: center; margin-bottom: 20px; }
.ns-auth-head h3 { font-size: 22px; margin-bottom: 4px; }
.ns-auth-head p { color: var(--ns-muted); margin: 0; font-size: 14px; }

.ns-field { margin-bottom: 14px; }
.ns-field label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  color: var(--ns-ink);
  margin-bottom: 6px;
}
.ns-auth-card .form-control,
.ns-form .form-control,
.ns-form select.form-control {
  border-radius: 10px;
  padding: 11px 14px;
  height: auto;
  font-size: 15px;
  border: 1px solid var(--ns-border);
}
.ns-auth-card .form-control:focus,
.ns-form .form-control:focus {
  border-color: var(--ns-blue);
  box-shadow: 0 0 0 3px rgba(46, 129, 181, .14);
}
.ns-input-wrap { position: relative; }
.ns-toggle-pass {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: none;
  color: var(--ns-muted);
  cursor: pointer;
  font-size: 17px;
  line-height: 1;
  padding: 2px;
}

.ns-auth-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.ns-checkbox { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--ns-muted); line-height: 1.5; }
.ns-checkbox input { width: 15px; height: 15px; accent-color: var(--ns-blue); margin-top: 2px; flex: 0 0 15px; }
.ns-link {
  color: var(--ns-blue);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}
.ns-link:hover { color: var(--ns-blue-dark); text-decoration: underline; }

/* Captcha */
.ns-captcha {
  border: 1px solid var(--ns-border);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fafcfe;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.ns-captcha-box {
  width: 22px;
  height: 22px;
  border: 2px solid #c2ccd4;
  border-radius: 5px;
  flex: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 13px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.ns-captcha.is-verified .ns-captcha-box { background: var(--ns-blue); border-color: var(--ns-blue); color: #fff; }
.ns-captcha-q { font-weight: 600; color: var(--ns-ink); font-size: 14px; }
.ns-captcha-q b { color: var(--ns-blue); }
.ns-captcha input {
  width: 66px;
  border: 1px solid var(--ns-border);
  border-radius: 8px;
  padding: 6px 8px;
  margin-left: auto;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}
.ns-captcha .ns-captcha-status { flex-basis: 100%; font-size: 12.5px; font-weight: 700; margin: 0; }
.ns-captcha .ns-captcha-status:empty { display: none; }
.ns-captcha .ns-captcha-status.ok { color: var(--ns-green); }
.ns-captcha .ns-captcha-status.err { color: #dc3545; }

.ns-auth-submit { width: 100%; padding: 13px; font-size: 15px; font-weight: 700; border-radius: 10px; }
.ns-auth-submit:disabled { opacity: .55; cursor: not-allowed; }
.ns-auth-foot { text-align: center; margin: 18px 0 0; color: var(--ns-muted); font-size: 13.5px; }
.ns-auth-note {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: #9aa0a6;
}
.ns-auth-note i { color: var(--ns-blue); }

/* Trust column beside the auth card */
.ns-auth-aside .title { font-size: 32px; margin-bottom: 14px; }
@media screen and (max-width: 991px) { .ns-auth-aside .title { font-size: 26px; } }
.ns-auth-aside .ns-trust { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 20px; }
.ns-auth-aside .ns-trust i {
  font-size: 19px; color: var(--ns-blue);
  width: 42px; height: 42px; flex: 0 0 42px;
  background: var(--ns-blue-soft); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
}
.ns-auth-aside .ns-trust h3 { font-size: 16px; margin-bottom: 3px; }
.ns-auth-aside .ns-trust p { margin: 0; color: var(--ns-muted); font-size: 13.5px; line-height: 1.6; }

/* Post-verification success / handoff panel (rendered by JS only) */
.ns-handoff { text-align: center; animation: nsFadeUp .45s ease both; }
@keyframes nsFadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.ns-handoff-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #e6f6ec;
  color: var(--ns-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 4px auto 20px;
}
.ns-handoff h3 { font-size: 23px; margin-bottom: 12px; }
.ns-handoff p { color: var(--ns-muted); margin-bottom: 10px; font-size: 15px; }
.ns-handoff .ns-handoff-price {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--ns-blue-soft);
  color: var(--ns-blue-dark);
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 700;
  margin: 6px 0 20px;
}
.ns-handoff .ns-handoff-price b { font-size: 22px; }
.ns-handoff-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--ns-blue);
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  padding: 14px 18px;
  text-decoration: none;
  transition: background .2s ease;
}
.ns-handoff-btn:hover { background: var(--ns-blue-dark); color: #fff; }
.ns-handoff-back {
  display: inline-block;
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--ns-muted);
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: underline;
}
.ns-handoff-back:hover { color: var(--ns-blue); }

/* =====================================================================
   Contact form
   ===================================================================== */
.ns-form-card {
  background: #fff;
  border: 1px solid var(--ns-border);
  border-radius: 20px;
  box-shadow: var(--ns-shadow-lg);
  padding: 34px 34px 30px;
}
@media (max-width: 575px) { .ns-form-card { padding: 24px 20px; border-radius: 16px; } }
.ns-form-card h2 { font-size: 22px; margin-bottom: 6px; }
.ns-form-card > p { color: var(--ns-muted); font-size: 14.5px; margin-bottom: 24px; }
.ns-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 575px) { .ns-form-grid { grid-template-columns: 1fr; } }
.ns-form-grid .ns-field--full { grid-column: 1 / -1; }
.ns-form textarea.form-control { min-height: 130px; resize: vertical; }
.ns-form-error {
  color: #dc3545;
  font-size: 12.5px;
  font-weight: 600;
  margin: -8px 0 12px;
  display: none;
}
.ns-form-error.is-shown { display: block; }
.ns-form .form-control.is-invalid { border-color: #dc3545; }

.ns-contact-aside .ns-trust { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.ns-contact-aside .ns-trust i {
  font-size: 19px; color: var(--ns-blue);
  width: 44px; height: 44px; flex: 0 0 44px;
  background: var(--ns-blue-soft); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.ns-contact-aside .ns-trust h3 { font-size: 16px; margin-bottom: 3px; }
.ns-contact-aside .ns-trust p { margin: 0; color: var(--ns-muted); font-size: 14px; line-height: 1.65; }

/* =====================================================================
   Page banner (sub-pages)
   ===================================================================== */
.ns-page-banner { padding: 150px 0 60px; background: linear-gradient(180deg, #f5f9fc 0%, #fff 100%); }
@media screen and (min-width: 1200px) { .ns-page-banner { padding: 180px 0 70px; } }
@media screen and (max-width: 991px) { .ns-page-banner { padding: 128px 0 46px; } }
.ns-page-banner .title { font-size: clamp(30px, 4.4vw, 50px); font-weight: 700; color: var(--ns-ink); margin-bottom: 16px; line-height: 1.16; }
.ns-page-banner p { color: var(--ns-muted); font-size: 1.06rem; margin-bottom: 0; max-width: 560px; }
.ns-page-banner .ns-banner-art { max-width: 420px; margin-left: auto; }
@media screen and (max-width: 767px) { .ns-page-banner .ns-banner-art { max-width: 340px; margin: 26px auto 0; } }

/* Breadcrumb */
.ns-breadcrumb { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 14px; font-size: 13.5px; }
.ns-breadcrumb li { color: var(--ns-muted); }
.ns-breadcrumb li + li::before { content: "/"; margin-right: 8px; color: #c2ccd4; }
.ns-breadcrumb a { color: var(--ns-blue); text-decoration: none; font-weight: 600; }
.ns-breadcrumb a:hover { text-decoration: underline; }

/* =====================================================================
   Footer CTA (replaces the old CTA band + newsletter on every page)
   ===================================================================== */
.ns-footer-cta { padding: 0 0 10px; }
.ns-footer-cta-inner {
  background: linear-gradient(135deg, #17527a 0%, #21618f 58%, #2a76a8 100%);
  border-radius: 24px;
  padding: 46px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  box-shadow: var(--ns-shadow-lg);
}
.ns-footer-cta-inner::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  top: -150px; right: -80px;
}
.ns-footer-cta-copy { position: relative; z-index: 1; flex: 1 1 380px; }
.ns-footer-cta-copy h3 { color: #fff; font-size: 30px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; line-height: 1.22; }
.ns-footer-cta-copy p { color: rgba(255, 255, 255, .84); margin: 0; font-size: 15.5px; }
.ns-footer-cta-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--ns-blue-dark);
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  padding: 17px 36px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ns-footer-cta-btn:hover { color: var(--ns-blue-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(0, 0, 0, .2); }
@media screen and (max-width: 767px) {
  .ns-footer-cta-inner { padding: 32px 26px; border-radius: 18px; }
  .ns-footer-cta-copy h3 { font-size: 23px; }
  .ns-footer-cta-copy p { font-size: 14.5px; }
  .ns-footer-cta-btn { width: 100%; justify-content: center; padding: 15px 24px; }
}

/* =====================================================================
   Footer
   ===================================================================== */
.footer-section { background: #fff; }
.footer-top { padding: 70px 0 60px; }
@media screen and (min-width: 1200px) { .footer-top { padding: 96px 0 76px; } }

.footer-widget .footer-logo.ns-brand { margin-bottom: 22px; padding: 2px 0; }
.footer-widget .footer-logo .ns-brand-text { color: var(--ns-ink); }
.footer-widget .footer-logo .ns-brand-text span { color: var(--ns-blue); }
.footer-widget > p { color: var(--ns-muted); font-size: 14.5px; line-height: 1.75; margin-bottom: 20px; }
.footer-widget .title { font-size: 19px; margin-bottom: 20px; letter-spacing: -0.2px; }
.footer-menu li { margin-bottom: 11px; }
.footer-menu li .footer-link { font-size: 14.5px; }

.footer-widget .ns-footer-built { font-size: 13.5px; color: var(--ns-muted); margin: 18px 0 0; }
.ns-footer-built a { color: var(--ns-blue); font-weight: 600; text-decoration: none; }
.ns-footer-built a:hover { text-decoration: underline; }


.copy-right-section { border-top: 1px solid var(--ns-border); padding: 22px 0; }
.copyright-info p { margin-bottom: 0; color: var(--ns-muted); }

@media screen and (max-width: 767px) {
  .footer-top { padding: 52px 0 34px; }
  .footer-widget .title { margin-bottom: 14px; font-size: 18px; }
  .footer-widget .footer-logo.ns-brand { margin-bottom: 16px; }
}

/* =====================================================================
   Testimonials
   ===================================================================== */
.ns-quote-card {
  background: #fff;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius);
  padding: 32px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ns-quote-stars { color: #f5b301; font-size: 15px; letter-spacing: 2px; }
.ns-quote-card blockquote { margin: 0; color: #51565c; font-size: 15.5px; line-height: 1.75; flex: 1 1 auto; }
.ns-quote-who { display: flex; align-items: center; gap: 13px; }
.ns-quote-avatar {
  width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: 50%;
  background: var(--ns-blue-soft);
  color: var(--ns-blue-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 15px;
}
.ns-quote-who p { margin: 0; font-weight: 700; color: var(--ns-ink); font-size: 15px; }
.ns-quote-who p span { display: block; font-size: 13px; color: var(--ns-muted); font-weight: 400; }

/* =====================================================================
   Hero / general responsive polish
   ===================================================================== */
.hero-slide-content .title { font-size: clamp(32px, 4.6vw, 56px); line-height: 1.14; }

@media screen and (max-width: 991px) {
  .section-py { padding: 56px 0; }
  .section-pb { padding-bottom: 56px; }
  .hero-shape1, .hero-shape2, .banner-shape, .tetimonial-shape { display: none; }
}
@media screen and (max-width: 575px) {
  .section-py { padding: 48px 0; }
  .section-pb { padding-bottom: 48px; }
  .ns-card { padding: 26px 22px; }
  .ns-card h3 { font-size: 19px; }
  .btn.btn-lg { padding: 13px 24px; font-size: 15px; }
}

/* Never let a wide element push the page sideways on small screens. */
html, body { overflow-x: hidden; }
.table-responsive, .ns-scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Native select needs its own arrow once we drop the browser chrome. */
.ns-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c6e75' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 38px;
}

/* Section headings inside cards inherit the card scale, not the page scale. */
.ns-card h3 { font-size: 21px; margin-bottom: 12px; color: var(--ns-ink); }
.ns-trust h3 { font-weight: 700; }
.ns-integration h3 { font-size: 17px; margin: 0; }
.ns-step-num + h3 { font-size: 20px; }
.ns-price-card h3 { font-size: 22px; margin-bottom: 10px; }
.fanfact .sub-title { font-weight: 500; }

/* ---------------------------------------------------------------------
   Secondary button — the base theme renders it as a bare underlined link,
   which reads as broken next to the solid primary. Give it a real outline.
   --------------------------------------------------------------------- */
.btn-secondary,
.btn-secondary.btn-hover-secondary {
  background: transparent;
  border: 2px solid var(--ns-blue);
  color: var(--ns-blue);
  text-decoration: none;
  font-weight: 600;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn-secondary:hover,
.btn-secondary.btn-hover-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--ns-blue);
  border-color: var(--ns-blue);
  color: #fff;
  text-decoration: none;
}

/* Give the Google News mark inside the hero chip enough size to read. */
.ns-hf-chip img { max-height: 18px; }
@media screen and (max-width: 575px) { .ns-hf-chip img { max-height: 15px; } }

/* Visible keyboard focus everywhere (the base theme suppresses it). */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(46, 129, 181, .55);
  outline-offset: 2px;
}

/* ---------------------------------------------------------------------
   Post-review layout corrections
   --------------------------------------------------------------------- */

/* 9 outlets read best as a balanced 3x3 grid rather than a ragged auto-fit. */
@media screen and (min-width: 992px) {
  .ns-price-grid { grid-template-columns: repeat(3, 1fr); }
}
@media screen and (min-width: 576px) and (max-width: 991px) {
  .ns-price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 575px) {
  .ns-price-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* The logo strip is a divider, not a section — it needs far less air. */
.ns-logo-strip.section-py-sm { padding-top: 42px; padding-bottom: 42px; }
@media screen and (min-width: 1200px) {
  .ns-logo-strip.section-py-sm { padding-top: 56px; padding-bottom: 56px; }
}

/* Quote initials were washing out against the tint. */
.ns-quote-avatar {
  background: var(--ns-blue);
  color: #fff;
  letter-spacing: .4px;
}

/* ---------------------------------------------------------------------
   Motion safety. The base theme's entrance animations start at opacity 0,
   so anything that suppresses the animation would leave content invisible.
   Honour reduced-motion and always end in the visible state.
   --------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .animated { opacity: 1 !important; transform: none !important; }
}

/* ---------------------------------------------------------------------
   Button labels are written in sentence case in the markup. The base theme
   force-capitalises every word ("Submit A Release"), which reads wrong for
   labels containing prices and articles — keep the authored casing.
   --------------------------------------------------------------------- */
.btn { text-transform: none; }

/* =====================================================================
   Accessibility corrections
   ---------------------------------------------------------------------
   The brand blue #2e81b5 measures 4.26:1 against white — fine for large
   display text (needs 3:1) but short of the 4.5:1 AA threshold for body
   copy, links and small text on solid fills. --ns-blue-ink is the same hue
   darkened to 4.94:1 and is used wherever blue carries actual text.
   ===================================================================== */
:root { --ns-blue-ink: #2a76a8; }

.btn-primary {
  --bs-btn-bg: #2a76a8;
  --bs-btn-border-color: #2a76a8;
  background-color: #2a76a8;
  border-color: #2a76a8;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: var(--ns-blue-dark);
  border-color: var(--ns-blue-dark);
}
.main-menu ul li a.header-cta,
.header-cta,
.ns-card-link,
.ns-outlet-card .ns-outlet-link,
.ns-integration .ns-integration-go,
.ns-link,
.ns-breadcrumb a,
.footer-widget .ns-footer-built a,
.ns-hf-links strong,
.ns-faq .ns-faq-body a,
.footer-menu li .footer-link:hover,
.copyright-info p a:hover { color: var(--ns-blue-ink) !important; }

.ns-hf-cta,
.ns-handoff-btn,
.ns-step-num,
.ns-hf-doc,
.ns-price-badge,
.ns-quote-avatar { background: var(--ns-blue-ink); }

.ns-auth-toggle button.is-active { color: var(--ns-blue-ink); }
.ns-captcha .ns-captcha-status.ok { color: #1f7a37; }

/* Blue on the pale blue tint is only 3.80:1 — use the dark tone there. */
.ns-hf-more,
.ns-endpoint-method,
.ns-check-list li::before,
.ns-card .ns-icon,
.ns-auth-aside .ns-trust i,
.ns-contact-aside .ns-trust i { color: var(--ns-blue-dark); }

/* 12px #9aa0a6 on white is 2.64:1. */
.ns-auth-note { color: #5f6368; font-size: 12.5px; }
.ns-auth-note i { color: var(--ns-blue-ink); }

/* Translucent white on the brand gradients dipped to ~3.0:1 at the light end. */
.ns-bundle > p { color: rgba(255, 255, 255, .95); }
.ns-bundle-unit { color: rgba(255, 255, 255, .95); }
.ns-bundle-list li { color: #fff; }
.ns-bundle .ns-bundle-note { color: #fff; }
.ns-footer-cta-copy p { color: rgba(255, 255, 255, .95); }

/* ---- Keyboard access ------------------------------------------------ */
/* The base theme reveals the Services dropdown on :hover only, so its three
   links were unreachable by keyboard. Reveal it on focus as well. */
.main-menu li:focus-within .sub-menu {
  visibility: visible;
  margin-top: 15px;
  opacity: 1;
}

/* Scrollable code samples must be focusable to be scrollable by keyboard. */
.ns-code[tabindex="0"]:focus-visible {
  outline: 3px solid rgba(46, 129, 181, .55);
  outline-offset: 3px;
}

/* ---- Tap targets ---------------------------------------------------- */
/* Scoped to the breakpoint where the hamburger actually exists. Declaring
   `display` on a bare `.toggle` here would beat the base theme's
   `@media (min-width: 992px) { .toggle { display: none } }`, since this file
   loads later at the same specificity, and the button would show on desktop. */
@media screen and (max-width: 991px) {
  .toggle {
    padding: 13px;
    margin-top: 0;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .toggle span + span { margin-top: 6px; }
}

.ns-toggle-pass {
  width: 44px;
  height: 44px;
  right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
/* ...and the input must not run underneath it. */
.ns-input-wrap .form-control { padding-right: 46px; }

/* ---- Anchor targets clear the fixed header -------------------------- */
#pricing, #services, #integrate, #signup, #login { scroll-margin-top: 96px; }
@media screen and (min-width: 1200px) {
  #pricing, #services, #integrate, #signup, #login { scroll-margin-top: 116px; }
}

/* ---- Small-viewport fixes ------------------------------------------- */
/* auto margins only resolve on a block-level image */
.ns-page-banner .ns-banner-art { display: block; }
@media screen and (max-width: 400px) {
  .ns-page-banner .ns-banner-art { max-width: 100%; }
  .ns-captcha { gap: 8px; }
  .ns-captcha input { margin-left: 0; }
  .ns-hf-outlets { gap: 9px; }
}

/* ---------------------------------------------------------------------
   Header spacing — the base theme reserves 70px above the logo, which
   pushes the hero too far down. The sticky state keeps its own padding.
   --------------------------------------------------------------------- */
.header-section { padding-top: 26px; }
@media screen and (max-width: 991px) {
  .header-section { padding-top: 18px; }
}
.header-section.is-sticky { padding: 12px 0; }

/* ---------------------------------------------------------------------
   404 page
   --------------------------------------------------------------------- */
/* Scoped past `.ns-page-banner p`, which otherwise wins on specificity
   and drops this back to body-copy size. */
.ns-page-banner .ns-404-code {
  font-size: clamp(58px, 9vw, 96px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  color: #bcd7e8;
  margin: 0 0 4px;
  max-width: none;
}
.ns-404-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
@media screen and (max-width: 575px) {
  .ns-404-actions { flex-direction: column; }
  .ns-404-actions .btn { width: 100%; }
}
