/* ============================================================
   NovaSpin Casino — Design System
   Deep Navy · Cyan #00e5c0 · Blue #4d8dff
   Display: Space Grotesk · Body: DM Sans
   ============================================================ */

:root {
  --bg-base:       #070915;
  --bg-surface:    #0b0f28;
  --bg-card:       #0f1438;
  --bg-dark:       #040610;
  --border-subtle: rgba(255,255,255,0.065);
  --border-accent: rgba(var(--accent-rgb),0.18);
  --accent:        #00e5c0;
  --accent-2:      #4d8dff;
  --accent-rgb:    0,229,192;
  --accent-2-rgb:  77,141,255;
  --text:          #edf0ff;
  --text-soft:     #bcc5e8;
  --muted:         #7b85b0;
  --dim:           #3a4268;
  --heading-font:  'Space Grotesk', system-ui, sans-serif;
  --body-font:     'DM Sans', system-ui, sans-serif;
  --r:             12px;
  --r-lg:          18px;
  --r-xl:          24px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }

/* ── Global base — applies on every page ────────────────────── */
body {
  font-family: var(--body-font);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a    { color: inherit; }
img  { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); line-height: 1.2; }

/* ── Homepage-only overrides ────────────────────────────────── */
body.novaspin-landing {
  background: var(--bg-base);
}

/* ── Header: always visible on inner pages ──────────────────── */
body:not(.novaspin-landing) .ns-header {
  background: rgba(7, 9, 21, 0.96);
  backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
}

/* ── Inner pages: clear the fixed 68px header ──────────────── */
.lad-page { padding-top: 68px; }

/* ── Layout ─────────────────────────────────────────────────── */
.ns-container    { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ns-container-sm { max-width: 820px;  margin: 0 auto; padding: 0 24px; }
.ns-section              { padding: 84px 0; }
.ns-section--surface     { background: var(--bg-surface); }
.ns-grid-half  { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.ns-grid-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ── Header ─────────────────────────────────────────────────── */
.ns-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.ns-header.is-scrolled {
  background: rgba(7,9,21,0.96);
  backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border-subtle);
}
.ns-header__inner {
  display: flex; align-items: center; gap: 0; height: 68px;
}
.ns-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.ns-logo__text {
  font-family: var(--heading-font); font-size: 19px; font-weight: 700;
  color: var(--text); letter-spacing: -0.3px;
}
.ns-logo__spin { color: var(--accent); }
.ns-nav        { display: flex; gap: 2px; margin: 0 auto; }
.ns-nav a {
  color: var(--muted); text-decoration: none;
  padding: 7px 13px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.ns-nav a:hover { color: var(--text); background: rgba(255,255,255,0.07); }
.ns-header__cta { margin-left: auto; flex-shrink: 0; }
.ns-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin-left: 12px;
}
.ns-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.ns-burger.is-open span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.ns-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ns-burger.is-open span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }
.ns-mobile-nav {
  position: absolute; top: 68px; left: 0; right: 0;
  background: rgba(7,9,21,0.98); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  flex-direction: column;
  display: none;
}
.ns-mobile-nav.is-open { display: flex; }
.ns-mobile-nav a {
  color: var(--muted); text-decoration: none;
  padding: 15px 24px; font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s;
}
.ns-mobile-nav a:hover { color: var(--text); }
.ns-mobile-nav__cta-wrap { padding: 12px 20px 20px; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 22px; border-radius: var(--r);
  font-family: var(--body-font); font-weight: 600; font-size: 14px;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.2s ease; white-space: nowrap;
}
.btn-accent  { background: var(--accent); color: #04060f; }
.btn-accent:hover {
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),0.25), 0 0 24px rgba(var(--accent-rgb),0.3);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid rgba(var(--accent-rgb),0.45);
}
.btn-outline:hover { background: rgba(var(--accent-rgb),0.08); border-color: var(--accent); }
.btn-ghost   { background: rgba(255,255,255,0.07); color: var(--text); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-lg      { padding: 15px 32px; font-size: 16px; border-radius: 14px; }
.btn-sm      { padding: 8px 16px; font-size: 13px; }
.btn-full    { width: 100%; justify-content: center; }

/* ── Tags & Badges ───────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.tag-accent  { background: rgba(var(--accent-rgb),0.13); color: var(--accent);   border: 1px solid rgba(var(--accent-rgb),0.28); }
.tag-blue    { background: rgba(var(--accent-2-rgb),0.13); color: var(--accent-2); border: 1px solid rgba(var(--accent-2-rgb),0.28); }
.tag-muted   { background: rgba(255,255,255,0.06); color: var(--muted); border: 1px solid var(--border-subtle); }
.tag-warning { background: rgba(245,179,1,0.12); color: #f5b301; border: 1px solid rgba(245,179,1,0.28); }
.trust-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 6px;
  font-size: 11px; font-weight: 600;
  background: rgba(255,255,255,0.05); color: var(--muted);
  border: 1px solid var(--border-subtle);
}

/* ── Cards ───────────────────────────────────────────────────── */
.ns-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg); padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
}
.ns-card:hover {
  border-color: rgba(var(--accent-rgb),0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(var(--accent-rgb),0.08);
}
.ns-card-glow { box-shadow: 0 0 32px rgba(var(--accent-rgb),0.12), 0 4px 24px rgba(0,0,0,0.3); }

/* ── Section Typography ──────────────────────────────────────── */
.section-eyebrow {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2.5px; color: var(--accent); margin-bottom: 10px; display: block;
}
.section-title {
  font-family: var(--heading-font);
  font-size: clamp(26px,4vw,42px); font-weight: 800;
  color: var(--text); line-height: 1.12; margin-bottom: 14px;
}
.section-sub { color: var(--muted); font-size: 17px; line-height: 1.7; }

/* ── Table ───────────────────────────────────────────────────── */
.ns-table          { width: 100%; border-collapse: collapse; font-size: 14px; }
.ns-table thead th {
  color: var(--accent); font-family: var(--heading-font);
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 12px 16px; text-align: left; font-weight: 700;
  background: rgba(var(--accent-rgb),0.06); border-bottom: 1px solid var(--border-accent);
}
.ns-table tbody td {
  padding: 13px 16px; border-bottom: 1px solid var(--border-subtle);
  color: var(--text-soft); vertical-align: middle;
}
.ns-table tbody tr:last-child td { border-bottom: none; }
.ns-table tbody tr:hover td      { background: rgba(255,255,255,0.025); }
.ns-table td:first-child         { color: var(--muted); font-size: 13px; }
.ns-table td:last-child          { font-weight: 500; }

/* ── Hero ────────────────────────────────────────────────────── */
.ns-hero-wrap {
  min-height: 100vh; display: flex; align-items: center;
  padding: 100px 0 80px; position: relative; overflow: hidden;
}
.ns-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 75% 45%, rgba(var(--accent-rgb),0.08) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 15% 75%, rgba(var(--accent-2-rgb),0.07) 0%, transparent 60%),
    var(--bg-base);
}
.ns-hero-bg-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.ns-hero-split   { display: flex; gap: 56px; align-items: center; }
.ns-hero-text    { flex: 1 1 480px; max-width: 620px; }
.ns-h1 {
  font-family: var(--heading-font); font-size: clamp(34px,5.5vw,60px);
  font-weight: 800; line-height: 1.08; color: var(--text);
  margin-bottom: 20px; letter-spacing: -0.5px;
}
.ns-h1-accent    { color: var(--accent); }
.ns-hero-sub {
  font-size: 17px; color: var(--text-soft); line-height: 1.75;
  margin-bottom: 28px; max-width: 500px;
}
.ns-hero-badges  { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.ns-hero-ctas    { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.ns-hero-rating  {
  display: flex; align-items: center; gap: 20px;
  padding-top: 24px; border-top: 1px solid var(--border-subtle);
}
.ns-rating       { display: flex; align-items: baseline; gap: 4px; }
.ns-rating-num   { font-family: var(--heading-font); font-size: 52px; font-weight: 800; color: var(--accent); line-height: 1; }
.ns-rating-denom { font-size: 24px; color: var(--muted); }

.ns-breadcrumb {
  display: flex; align-items: center; flex-wrap: wrap; gap: 5px;
  font-size: 13px; color: var(--muted); margin-bottom: 24px;
}
.ns-breadcrumb a { color: var(--muted); text-decoration: none; }
.ns-breadcrumb a:hover { color: var(--accent); }
.ns-bc-sep { color: var(--dim); }
.ns-meta { display: flex; gap: 18px; font-size: 12px; color: var(--muted); flex-wrap: wrap; }

/* Hero graphic */
.ns-hero-graphic-wrap { flex: 0 0 340px; display: flex; align-items: center; justify-content: center; }
.ns-hero-graphic      { position: relative; width: 340px; height: 340px; display: flex; align-items: center; justify-content: center; }
.ns-ring              { position: absolute; border-radius: 50%; border: 1px solid; }
.ns-ring-1 { width: 300px; height: 300px; border-color: rgba(var(--accent-rgb),0.14);   border-style: dashed; animation: ns-ring-spin 22s linear infinite; }
.ns-ring-2 { width: 220px; height: 220px; border-color: rgba(var(--accent-2-rgb),0.13); animation: ns-ring-spin 15s linear infinite reverse; }
.ns-ring-3 { width: 140px; height: 140px; border-color: rgba(var(--accent-rgb),0.2);    background: rgba(var(--accent-rgb),0.03); }
@keyframes ns-ring-spin { to { transform: rotate(360deg); } }
.ns-hero-badge-graphic {
  position: relative; z-index: 2;
  width: 96px; height: 96px; border-radius: 24px;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),0.15), rgba(var(--accent-2-rgb),0.15));
  border: 1px solid rgba(var(--accent-rgb),0.35);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 48px rgba(var(--accent-rgb),0.22);
}
.ns-orbit-dot {
  position: absolute; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); z-index: 3;
}
.ns-orbit-dot-1 { top: 30px; left: 50%; transform: translateX(-50%); animation: ns-orbit1 22s linear infinite; opacity: 0.8; }
.ns-orbit-dot-2 { top: 50%; right: 20px; transform: translateY(-50%); animation: ns-orbit2 15s linear infinite; opacity: 0.6; background: var(--accent-2); }
.ns-orbit-dot-3 { bottom: 30px; left: 50%; transform: translateX(-50%); animation: ns-orbit3 22s linear infinite; opacity: 0.5; }
@keyframes ns-orbit1 { to { transform: translateX(-50%) rotate(360deg) translateX(150px) rotate(-360deg); } }
@keyframes ns-orbit2 { to { transform: translateY(-50%) rotate(-360deg) translateX(110px) rotate(360deg); } }
@keyframes ns-orbit3 { to { transform: translateX(-50%) rotate(-360deg) translateX(150px) rotate(360deg); } }

/* ── Bonus grid ──────────────────────────────────────────────── */
.ns-bonus-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(272px,1fr)); gap: 20px; margin-bottom: 22px; }
.ns-bonus-card--featured { border-color: rgba(var(--accent-rgb),0.28); }
.ns-card-top-line { position: absolute; top: -1px; left: 20px; right: 20px; height: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 0 0 2px 2px; }

/* ── App section ─────────────────────────────────────────────── */
.ns-feature-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px; background: rgba(255,255,255,0.03);
  border-radius: var(--r); border: 1px solid var(--border-subtle);
}
.ns-feature-icon  { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.ns-feature-title { font-family: var(--heading-font); font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.ns-feature-desc  { font-size: 13px; color: var(--muted); line-height: 1.5; }
.ns-features-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }

.ns-phone-mockup {
  width: 220px; height: 440px; border-radius: 40px;
  border: 7px solid rgba(255,255,255,0.1);
  background: var(--bg-card); position: relative; overflow: hidden;
  box-shadow: 0 0 60px rgba(var(--accent-rgb),0.1), 0 0 100px rgba(0,0,0,0.5);
  margin: 0 auto;
}
.ns-phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 18px; background: rgba(255,255,255,0.08); border-radius: 9px; z-index: 2;
}
.ns-phone-inner  { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; padding: 40px 20px 30px; text-align: center; }
.ns-phone-home-bar { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: rgba(255,255,255,0.15); border-radius: 2px; }
.ns-phone-game-row {
  background: rgba(255,255,255,0.05); border-radius: 8px;
  padding: 8px 12px; font-size: 11px; color: var(--text-soft);
  border: 1px solid rgba(255,255,255,0.06);
  width: 100%; margin-bottom: 7px;
}

/* ── Games grid ──────────────────────────────────────────────── */
.ns-games-grid  { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 16px; }
.ns-game-card   {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg); padding: 24px 22px;
  position: relative; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ns-game-card:hover { border-color: rgba(var(--accent-rgb),0.25); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.3); }
.ns-game-card__top-bar { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,var(--accent),var(--accent-2)); opacity: 0; transition: opacity 0.2s; }
.ns-game-card:hover .ns-game-card__top-bar { opacity: 1; }
.ns-game-card__icon { font-size: 38px; margin-bottom: 14px; line-height: 1; }
.ns-game-card__name { font-family: var(--heading-font); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ns-game-card__desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 12px; }
.ns-game-card__meta { font-size: 12px; color: var(--dim); }

/* ── Payments ────────────────────────────────────────────────── */
.ns-payment-methods { display: flex; flex-wrap: wrap; gap: 7px; }
.payment-badge {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: border-color 0.2s, transform 0.2s;
  background: transparent; padding: 0;
}
.payment-badge:hover {
  border-color: rgba(var(--accent-rgb),0.35);
  transform: translateY(-2px);
}
.payment-badge svg { display: block; }

/* ── Trust ───────────────────────────────────────────────────── */
.ns-trust-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 18px; }
.ns-trust-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg); padding: 28px 24px;
}
.ns-trust-icon-wrap {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(var(--accent-rgb),0.1); border: 1px solid rgba(var(--accent-rgb),0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}
.ns-rg-strip {
  background: rgba(var(--accent-rgb),0.05); border: 1px solid rgba(var(--accent-rgb),0.15);
  border-radius: var(--r-lg); padding: 20px 28px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}

/* ── Internal Links ──────────────────────────────────────────── */
.ns-links-grid  { display: grid; grid-template-columns: repeat(auto-fill,minmax(218px,1fr)); gap: 14px; }
.ns-page-card {
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg); padding: 20px 22px;
  display: flex; flex-direction: column; gap: 6px;
  text-decoration: none; transition: all 0.2s;
}
.ns-page-card:hover { border-color: rgba(var(--accent-rgb),0.25); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.ns-page-card__icon  { font-size: 24px; margin-bottom: 4px; }
.ns-page-card__title { font-family: var(--heading-font); font-size: 15px; font-weight: 700; color: var(--text); }
.ns-page-card__desc  { font-size: 13px; color: var(--muted); line-height: 1.5; }
.ns-page-card__arrow { font-size: 13px; color: var(--accent); margin-top: auto; padding-top: 8px; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.ns-faq-list { border-top: 1px solid var(--border-subtle); }
.ns-faq-item { border-bottom: 1px solid var(--border-subtle); }
.ns-faq-btn  {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer; padding: 20px 0;
  color: var(--text); font-family: var(--heading-font);
  font-size: 16px; font-weight: 600; text-align: left; gap: 16px;
  transition: color 0.2s;
}
.ns-faq-btn:hover { color: var(--accent); }
.ns-faq-chevron { flex-shrink: 0; width: 20px; height: 20px; color: var(--muted); transition: transform 0.25s ease; }
.ns-faq-item.is-open .ns-faq-chevron { transform: rotate(180deg); color: var(--accent); }
.ns-faq-answer { display: none; padding-bottom: 22px; color: var(--muted); line-height: 1.75; font-size: 15px; }
.ns-faq-item.is-open .ns-faq-answer { display: block; }

/* ── Final CTA ───────────────────────────────────────────────── */
.ns-final-cta      { padding: 100px 0; position: relative; overflow: hidden; background: var(--bg-dark); }
.ns-final-cta-bg   { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(var(--accent-rgb),0.07) 0%, transparent 70%); }
.ns-final-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }

/* ── Disclaimer ──────────────────────────────────────────────── */
.ns-disclaimer {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 12px; color: var(--muted); line-height: 1.65;
  padding: 14px 18px; border-radius: var(--r);
  background: rgba(255,255,255,0.03); border: 1px solid var(--border-subtle);
}
.ns-trust-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }

/* ── Pros / Cons ─────────────────────────────────────────────── */
.ns-pro-item, .ns-con-item {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 6px 0;
}
.ns-pro-item + .ns-pro-item,
.ns-con-item + .ns-con-item { border-top: 1px solid var(--border-subtle); }
.ns-pro-icon { color: #22e06b; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.ns-con-icon { color: #f5b301; font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.ns-pro-text, .ns-con-text { color: var(--text-soft); font-size: 13px; line-height: 1.5; }

/* ── Footer ──────────────────────────────────────────────────── */
.ns-footer { background: #030510; border-top: 1px solid var(--border-subtle); padding: 64px 0 32px; }
.ns-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.ns-footer__tagline  { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 16px; max-width: 270px; }
.ns-footer__col-title {
  font-family: var(--heading-font); font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--muted); margin-bottom: 18px;
}
.ns-footer__links    { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ns-footer__links a  { color: var(--muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.ns-footer__links a:hover { color: var(--text); }
.ns-footer__legal {
  font-size: 12px; color: var(--dim); line-height: 1.8;
  padding: 20px 22px; background: rgba(255,255,255,0.025);
  border: 1px solid var(--border-subtle); border-radius: var(--r);
  margin-bottom: 24px;
}
.ns-footer__legal strong { color: var(--muted); }
.ns-footer__legal a { color: var(--accent); }
.ns-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}
.ns-footer__copy { font-size: 12px; color: var(--dim); }

/* ── Utility ─────────────────────────────────────────────────── */
.ns-text-center { text-align: center; }
.ns-mb-40 { margin-bottom: 40px; }
.ns-mb-48 { margin-bottom: 48px; }
.ns-mt-44 { margin-top: 44px; }
.ns-mt-24 { margin-top: 24px; }
.ns-overflow-x { overflow-x: auto; }
.ns-cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.ns-cta-group--center { justify-content: center; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .ns-nav        { display: none; }
  .ns-header__cta { display: none; }
  .ns-burger     { display: flex; }
  .ns-hero-split { flex-direction: column; gap: 40px; }
  .ns-hero-graphic-wrap { display: none; }
  .ns-hero-text  { max-width: 100%; }
  .ns-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ns-grid-half  { grid-template-columns: 1fr; gap: 20px; }
  .ns-grid-equal { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .ns-section    { padding: 60px 0; }
  .ns-container  { padding: 0 16px; }
  .ns-footer__grid { grid-template-columns: 1fr; }
  .ns-rg-strip   { flex-direction: column; align-items: flex-start; }
  .ns-final-cta  { padding: 72px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ns-ring-1, .ns-ring-2,
  .ns-orbit-dot-1, .ns-orbit-dot-2, .ns-orbit-dot-3 { animation: none; }
}
