/* Northstar Lending 36 — consolidated homepage design */
:root {
  --home-forest-1000: #031914;
  --home-forest-950: #05231d;
  --home-forest-900: #072c24;
  --home-forest-800: #0b4537;
  --home-forest-700: #10634d;
  --home-green: #2f8b67;
  --home-sage: #9bc7a9;
  --home-sage-soft: #dce9df;
  --home-cream: #eee6d8;
  --home-cream-soft: #f7f2e9;
  --home-white: #fffdf8;
  --home-ink: #17382f;
  --home-muted: #667a72;
  --home-dark-muted: rgba(247, 242, 233, .7);
  --home-dark-line: rgba(235, 243, 237, .12);
  --home-light-line: rgba(14, 77, 59, .13);
  --home-shadow: 0 24px 70px rgba(3, 28, 22, .17);
  --home-shadow-soft: 0 13px 34px rgba(21, 58, 47, .09);
}

body.home-page {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--home-forest-950) !important;
  color: var(--home-white) !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.home-page *,
.home-page *::before,
.home-page *::after { box-sizing: border-box; }
.home-page a { color: inherit; text-decoration: none; }
.home-page svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }

.home-page .skip-link {
  position: fixed;
  top: -70px;
  left: 18px;
  z-index: 10000;
  padding: 11px 15px;
  border-radius: 12px;
  background: var(--home-white);
  color: var(--home-ink);
  font-weight: 800;
  transition: top .18s ease;
}
.home-page .skip-link:focus { top: 18px; }

.ns-home-app {
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  min-height: 100vh;
  background: var(--home-forest-950);
}

/* Sidebar */
.ns-home-sidebar {
  position: sticky;
  top: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 244px;
  height: 100vh;
  padding: 25px 16px 18px;
  overflow-y: auto;
  border-right: 1px solid rgba(239, 245, 240, .08);
  background:
    radial-gradient(circle at 40% 0, rgba(126, 181, 143, .1), transparent 27%),
    linear-gradient(180deg, #041f1a 0%, #05251f 58%, #041c17 100%);
  box-shadow: 18px 0 46px rgba(1, 19, 15, .12);
}

.ns-home-brand,
.ns-home-mobile-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--home-white);
}
.ns-home-brand { min-height: 52px; padding: 0 8px 13px; }
.ns-home-brand img,
.ns-home-mobile-brand img {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}
.ns-home-brand strong { display: block; font-size: 17px; line-height: 1.1; letter-spacing: -.02em; }
.ns-home-brand small {
  display: block;
  margin-top: 4px;
  color: var(--home-sage);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.ns-home-side-nav {
  display: grid !important;
  gap: 5px !important;
  margin: 0 !important;
  color: inherit !important;
  font-size: inherit !important;
}
.ns-home-side-nav a {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 47px;
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: rgba(249, 245, 237, .76);
  font-size: 13px;
  font-weight: 650;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.ns-home-side-nav a:hover {
  transform: translateX(2px);
  border-color: rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .055);
  color: #fff;
}
.ns-home-side-nav a.active {
  border-color: rgba(190, 220, 199, .1);
  background: linear-gradient(90deg, rgba(106, 163, 123, .27), rgba(255, 255, 255, .035));
  color: #fff;
  box-shadow: inset 3px 0 0 var(--home-sage);
}
.ns-home-nav-icon,
.ns-home-help-icon {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .055);
  color: var(--home-sage-soft);
}
.ns-home-nav-icon svg,
.ns-home-help-icon svg { width: 18px; height: 18px; }
.ns-home-count {
  display: grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  margin-left: auto;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--home-cream);
  color: var(--home-ink);
  font-size: 10px;
  font-weight: 850;
}

.ns-home-help {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 15px;
  background: rgba(255, 255, 255, .045);
}
.ns-home-help div { display: grid; gap: 2px; }
.ns-home-help strong { color: #fff; font-size: 11px; }
.ns-home-help a { color: var(--home-sage); font-size: 10px; font-weight: 750; }

.home-page .ns-home-footer-language.language-switcher,
.home-page .ns-home-footer-language.language-chip {
  position: static !important;
  inset: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  min-width: 154px !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 7px 10px !important;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, .04) !important;
  color: var(--home-white) !important;
  box-shadow: none !important;
}
.home-page .ns-home-footer-language.language-switcher select,
.home-page .ns-home-footer-language.language-chip select {
  min-height: 30px !important;
  padding: 0 22px 0 3px !important;
  background: transparent !important;
  color: var(--home-white) !important;
  font-size: 12px !important;
}

/* Header and shared actions */
.ns-home-stage { min-width: 0; background: var(--home-cream); }
.ns-home-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(24px, 3.4vw, 52px);
  border-bottom: 1px solid rgba(237, 244, 239, .1);
  background: rgba(4, 31, 25, .94);
  color: var(--home-white);
  backdrop-filter: blur(16px);
}
.ns-home-header nav {
  display: flex !important;
  align-items: center;
  gap: clamp(18px, 2.6vw, 38px) !important;
  margin: 0 !important;
  color: inherit !important;
  font-size: 14px !important;
}
.ns-home-header nav a { color: rgba(255, 255, 255, .76); font-weight: 650; transition: color .18s ease; }
.ns-home-header nav a:hover { color: #fff; }
.ns-home-mobile-brand { display: none; font-size: 14px; font-weight: 800; }
.ns-home-mobile-brand img { width: 36px; height: 36px; border-radius: 10px; }
.ns-home-header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }

.ns-home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.ns-home-button:hover { transform: translateY(-2px); }
.ns-home-button:active { transform: translateY(0); }
.ns-home-button-secondary { border-color: rgba(255, 255, 255, .17); background: rgba(255, 255, 255, .04); color: #fff; }
.ns-home-button-secondary:hover { background: rgba(255, 255, 255, .09); }
.ns-home-button-light { border-color: rgba(255, 255, 255, .22); background: var(--home-cream-soft); color: var(--home-ink); box-shadow: 0 10px 24px rgba(0, 0, 0, .12); }
.ns-home-button-light:hover { background: #fff; box-shadow: 0 14px 28px rgba(0, 0, 0, .16); }
.ns-home-button-primary { background: linear-gradient(135deg, var(--home-forest-700), var(--home-forest-900)); color: #fff !important; box-shadow: 0 12px 26px rgba(5, 60, 46, .2); }
.ns-home-button-primary:hover { background: linear-gradient(135deg, #147356, #07382d); box-shadow: 0 16px 32px rgba(5, 60, 46, .24); }
.ns-home-button-block { width: 100%; }

/* Hero */
.ns-home-hero {
  position: relative;
  isolation: isolate;
  min-height: max(760px, calc(100vh - 82px));
  overflow: hidden;
  scroll-margin-top: 90px;
  background:
    radial-gradient(circle at 78% 14%, rgba(128, 187, 147, .16), transparent 24%),
    radial-gradient(circle at 14% 82%, rgba(143, 192, 157, .08), transparent 25%),
    linear-gradient(145deg, var(--home-forest-1000) 0%, var(--home-forest-950) 51%, #073128 100%);
}
.ns-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .44;
  background-image:
    radial-gradient(circle at 17% 24%, rgba(220, 233, 223, .48) 0 1px, transparent 1.8px),
    radial-gradient(circle at 72% 31%, rgba(155, 199, 169, .42) 0 1px, transparent 1.7px);
  background-position: 0 0, 44px 61px;
  background-size: 132px 132px, 167px 167px;
  animation: nsHomeParticles 26s linear infinite;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}
@keyframes nsHomeParticles { to { background-position: -132px -82px, -123px -39px; } }

.ns-home-hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .74fr);
  align-items: center;
  gap: clamp(42px, 5vw, 78px);
  width: min(1180px, calc(100% - 72px));
  min-height: max(760px, calc(100vh - 82px));
  margin: 0 auto;
  padding: 52px 0 60px;
}
.ns-home-copy { max-width: 690px; padding: 6px 0; animation: nsHomeReveal .65s ease both; }
@keyframes nsHomeReveal { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.ns-home-eyebrow,
.ns-home-section-label {
  margin: 0;
  color: var(--home-sage);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.ns-home-eyebrow { display: flex; align-items: center; gap: 9px; }
.ns-home-eyebrow > span { width: 7px; height: 7px; border-radius: 50%; background: var(--home-sage); box-shadow: 0 0 0 6px rgba(155, 199, 169, .08); }
.ns-home-copy h1 {
  max-width: 700px;
  margin: 22px 0 24px;
  color: var(--home-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 80px;
  font-size: clamp(3.8rem, 5.55vw, 5.65rem);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.055em;
}
.ns-home-copy h1 em { display: block; color: var(--home-sage); font-style: normal; }
.ns-home-intro {
  max-width: 610px;
  margin: 0;
  color: var(--home-dark-muted);
  font-size: 17px;
  line-height: 1.72;
}
.ns-home-hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 32px; }
.ns-home-text-link { display: inline-flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, .82); font-size: 13px; font-weight: 750; }
.ns-home-text-link:hover { color: #fff; }
.ns-home-assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid var(--home-dark-line);
}
.ns-home-assurance > div { display: flex; gap: 9px; min-width: 0; }
.ns-home-assurance svg { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; color: var(--home-sage); }
.ns-home-assurance span { display: grid; gap: 3px; min-width: 0; }
.ns-home-assurance strong { color: #fff; font-size: 11px; }
.ns-home-assurance small { color: rgba(255, 255, 255, .52); font-size: 9px; line-height: 1.45; }

/* Live canvas plus moving CSS fallback */
.northstar-live-waves {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .7s ease;
  filter: drop-shadow(0 0 12px rgba(149, 202, 165, .08));
}
.ns-home-hero.live-waves-ready .northstar-live-waves { opacity: .92; }
.ns-home-wave {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform;
}
.ns-home-wave-top {
  top: -12px;
  right: -110px;
  width: 72%;
  height: 37%;
  opacity: .46;
  background-image: url("assets/northstar-wave-top.svg");
  background-size: 118% 100%;
  animation: nsHomeWaveTop 16s ease-in-out infinite alternate;
}
.ns-home-wave-bottom {
  right: -110px;
  bottom: -20px;
  left: -190px;
  height: 48%;
  opacity: .74;
  background-image: url("assets/northstar-wave-bottom.svg");
  background-size: 116% 100%;
  animation: nsHomeWaveBottom 13s ease-in-out infinite alternate;
}
.ns-home-hero.live-waves-ready .ns-home-wave-top { opacity: .1; }
.ns-home-hero.live-waves-ready .ns-home-wave-bottom { opacity: .14; }
@keyframes nsHomeWaveTop { from { transform: translate3d(4%, -4px, 0) scaleX(1.02); } to { transform: translate3d(-4%, 8px, 0) scaleX(1.05); } }
@keyframes nsHomeWaveBottom { from { transform: translate3d(-4%, 7px, 0) scaleX(1.02); } to { transform: translate3d(4%, -7px, 0) scaleX(1.05); } }

/* Calculator */
.ns-home-calculator {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 440px;
  justify-self: end;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 24px;
  background:
    radial-gradient(circle at 95% 0, rgba(88, 151, 113, .1), transparent 28%),
    linear-gradient(145deg, #fbf7ef, #eae1d2);
  color: var(--home-ink);
  box-shadow: var(--home-shadow);
  animation: nsHomeReveal .65s .1s ease both;
}
.ns-home-calculator::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--home-green), var(--home-sage));
}
.ns-home-calculator-topline,
.ns-home-calculator-heading,
.ns-home-range-heading,
.ns-home-range-labels { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.ns-home-calculator-topline {
  padding: 1px 0 15px;
  border-bottom: 1px solid var(--home-light-line);
  color: var(--home-forest-700);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.ns-home-calculator-topline > span:first-child { display: inline-flex; align-items: center; gap: 7px; }
.ns-home-calculator-topline i { width: 7px; height: 7px; border-radius: 50%; background: var(--home-green); box-shadow: 0 0 0 5px rgba(47, 139, 103, .08); }
.ns-home-currency { padding: 6px 8px; border: 1px solid var(--home-light-line); border-radius: 9px; background: rgba(255, 255, 255, .45); color: var(--home-muted); }
.ns-home-calculator-heading { align-items: flex-start; margin: 19px 0 18px; }
.ns-home-calculator-heading > div > span { color: var(--home-muted); font-size: 10px; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.ns-home-calculator-heading h2 { margin: 5px 0 0; color: var(--home-ink); font-size: 23px; line-height: 1.12; letter-spacing: -.035em; }
.ns-home-draft-pill { flex: 0 0 auto; padding: 7px 9px; border: 1px solid rgba(26, 138, 105, .15); border-radius: 999px; background: rgba(26, 138, 105, .08); color: var(--home-forest-700); font-size: 9px; font-weight: 800; }
.ns-home-field { display: grid; gap: 7px; color: #516861; font-size: 11px; font-weight: 750; }
.ns-home-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--home-light-line);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, .62);
  color: var(--home-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
  font: inherit;
}
.ns-home-field select:focus { border-color: rgba(29, 130, 98, .5); box-shadow: 0 0 0 4px rgba(29, 130, 98, .09); }
.ns-home-range-heading { align-items: flex-end; margin: 21px 0 10px; }
.ns-home-range-heading span { color: #526861; font-size: 12px; }
.ns-home-range-heading strong { color: var(--home-forest-700); font-size: 30px; line-height: 1; letter-spacing: -.045em; }
.ns-home-term-heading { margin-top: 19px; }
.ns-home-term-heading strong { color: var(--home-ink); font-size: 16px; letter-spacing: -.02em; }
.ns-home-calculator input[type="range"] {
  width: 100%;
  height: 5px;
  margin: 4px 0;
  border: 0;
  border-radius: 999px;
  appearance: none;
  accent-color: var(--home-green);
  background: rgba(15, 82, 62, .13);
}
.ns-home-calculator input[type="range"]::-webkit-slider-thumb {
  width: 17px;
  height: 17px;
  border: 3px solid var(--home-white);
  border-radius: 50%;
  appearance: none;
  background: var(--home-green);
  box-shadow: 0 3px 9px rgba(5, 67, 50, .25);
}
.ns-home-range-labels { margin-top: 7px; color: #7b8984; font-size: 9px; }
.ns-home-estimate {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 10px;
  margin-top: 22px;
  padding: 13px;
  border: 1px solid var(--home-light-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .42);
}
.ns-home-estimate-main,
.ns-home-estimate-meta { min-width: 0; }
.ns-home-estimate-main { display: flex; flex-direction: column; justify-content: center; padding: 3px 10px 3px 3px; border-right: 1px solid var(--home-light-line); }
.ns-home-estimate-main span,
.ns-home-estimate-meta span { color: #6e7d78; font-size: 8px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.ns-home-estimate-main strong { margin: 6px 0 2px; color: var(--home-forest-700); font-size: 29px; letter-spacing: -.04em; }
.ns-home-estimate-main small { color: #88938f; font-size: 8px; }
.ns-home-estimate-meta { display: grid; align-content: center; gap: 8px; }
.ns-home-estimate-meta p { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 0; padding-bottom: 7px; border-bottom: 1px solid var(--home-light-line); }
.ns-home-estimate-meta p:last-child { padding-bottom: 0; border-bottom: 0; }
.ns-home-estimate-meta strong { color: var(--home-ink); font-size: 11px; }
.ns-home-fineprint { margin: 13px 0 15px; color: #788681; font-size: 9px; line-height: 1.55; }
.ns-home-calculator .ns-home-button { min-height: 51px; }
.ns-home-secure-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin: 13px 0 0; color: #667a72; font-size: 9px; }
.ns-home-secure-note svg { width: 14px; height: 14px; }

/* Lower homepage content */
.ns-home-process,
.ns-home-products { scroll-margin-top: 88px; }
.ns-home-process {
  padding: 92px clamp(32px, 6vw, 94px) 96px;
  background:
    radial-gradient(circle at 94% 10%, rgba(58, 131, 96, .09), transparent 24%),
    linear-gradient(145deg, var(--home-cream) 0%, #e5dac8 100%);
  color: var(--home-ink);
}
.ns-home-section-heading { display: grid; justify-items: center; max-width: 770px; margin: 0 auto; text-align: center; }
.ns-home-section-label { color: var(--home-forest-700); }
.ns-home-section-heading h2,
.ns-home-products h2,
.ns-home-security h2 {
  margin: 13px 0 14px;
  color: var(--home-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.045em;
}
.ns-home-section-heading > p:last-child,
.ns-home-products-copy > p,
.ns-home-security > div > p:last-child { max-width: 650px; margin: 0; color: var(--home-muted); font-size: 14px; line-height: 1.7; }
.ns-home-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1130px, 100%);
  margin: 45px auto 0;
}
.ns-home-process-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--home-light-line);
  border-radius: 21px;
  background: rgba(255, 253, 248, .74);
  box-shadow: var(--home-shadow-soft);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.ns-home-process-grid article::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  border: 1px solid rgba(23, 112, 83, .08);
  border-radius: 50%;
}
.ns-home-process-grid article:hover { transform: translateY(-5px); border-color: rgba(24, 113, 84, .24); box-shadow: var(--home-shadow); }
.ns-home-process-icon,
.ns-home-product-icon,
.ns-home-security-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(20, 121, 89, .09);
  color: var(--home-forest-700);
}
.ns-home-process-icon svg,
.ns-home-product-icon svg { width: 22px; height: 22px; }
.ns-home-process-grid h3 { margin: 26px 0 10px; color: var(--home-ink); font-size: 21px; letter-spacing: -.025em; }
.ns-home-process-grid p { margin: 0; color: var(--home-muted); font-size: 12px; line-height: 1.68; }
.ns-home-process-grid a { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 24px; color: var(--home-forest-700); font-size: 11px; font-weight: 800; }

.ns-home-products {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(460px, 1.18fr);
  gap: clamp(45px, 7vw, 105px);
  align-items: center;
  padding: 94px clamp(32px, 7vw, 108px);
  border-top: 1px solid rgba(15, 82, 62, .08);
  background: var(--home-cream-soft);
  color: var(--home-ink);
}
.ns-home-products-copy { max-width: 540px; }
.ns-home-products h2 { font-size: 60px; font-size: clamp(2.6rem, 4.3vw, 4.2rem); }
.ns-home-products-copy .ns-home-button { margin-top: 28px; }
.ns-home-product-list { display: grid; gap: 11px; }
.ns-home-product-list > a {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  min-height: 86px;
  padding: 15px 18px;
  border: 1px solid var(--home-light-line);
  border-radius: 17px;
  background: var(--home-white);
  box-shadow: 0 8px 22px rgba(22, 61, 49, .06);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ns-home-product-list > a:hover { transform: translateX(4px); border-color: rgba(24, 113, 84, .25); box-shadow: var(--home-shadow-soft); }
.ns-home-product-list > a > span:nth-child(2) { display: grid; gap: 4px; }
.ns-home-product-list strong { color: var(--home-ink); font-size: 14px; }
.ns-home-product-list small { color: var(--home-muted); font-size: 10px; }
.ns-home-product-list b { color: var(--home-forest-700); font-size: 17px; }

.ns-home-security {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 55px clamp(32px, 7vw, 108px);
  scroll-margin-top: 88px;
  background:
    radial-gradient(circle at 88% 20%, rgba(145, 199, 160, .14), transparent 25%),
    linear-gradient(135deg, #073128, #041f1a);
  color: #fff;
}
.ns-home-security-icon { width: 58px; height: 58px; border: 1px solid rgba(255, 255, 255, .1); background: rgba(255, 255, 255, .07); color: var(--home-sage); }
.ns-home-security-icon svg { width: 29px; height: 29px; }
.ns-home-security .ns-home-section-label { color: var(--home-sage); }
.ns-home-security h2 { max-width: 720px; margin: 9px 0 8px; color: #fff; font-size: 48px; font-size: clamp(2rem, 3.4vw, 3.4rem); }
.ns-home-security > div > p:last-child { color: rgba(255, 255, 255, .64); }

.ns-home-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(32px, 5vw, 74px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: var(--home-forest-1000);
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
}
.ns-home-footer > div { display: grid; gap: 3px; }
.ns-home-footer strong { color: #fff; font-size: 12px; }
.ns-home-footer nav { display: flex !important; justify-content: center; gap: 22px !important; margin: 0 !important; color: inherit !important; font-size: inherit !important; }
.ns-home-footer nav a:hover { color: #fff; }
.ns-home-footer p { grid-column: 1 / -1; margin: 0; text-align: right; }

.home-page a:focus-visible,
.home-page button:focus-visible,
.home-page input:focus-visible,
.home-page select:focus-visible {
  outline: 3px solid var(--home-sage) !important;
  outline-offset: 3px !important;
}

@media (max-width: 1160px) {
  .ns-home-app { grid-template-columns: 214px minmax(0, 1fr); }
  .ns-home-sidebar { width: 214px; padding-right: 12px; padding-left: 12px; }
  .ns-home-header { padding-right: 26px; padding-left: 26px; }
  .ns-home-header nav { gap: 19px !important; }
  .ns-home-hero-grid { width: min(100% - 48px, 1080px); grid-template-columns: minmax(0, 1fr) minmax(370px, .78fr); gap: 35px; }
  .ns-home-copy h1 { font-size: clamp(3.45rem, 5.45vw, 4.9rem); }
  .ns-home-assurance { grid-template-columns: 1fr 1fr; }
  .ns-home-assurance > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .ns-home-app { display: block; }
  .ns-home-sidebar {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px 18px;
    width: 100%;
    height: auto;
    padding: 10px 14px 9px;
    overflow: visible;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
  }
  .ns-home-brand { min-height: 42px; padding: 0; }
  .ns-home-brand img { width: 36px; height: 36px; border-radius: 10px; }
  .ns-home-brand strong { font-size: 14px; }
  .ns-home-brand small { font-size: 7px; }
  .ns-home-side-nav {
    display: flex !important;
    grid-column: 1 / -1;
    gap: 5px !important;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .ns-home-side-nav::-webkit-scrollbar { display: none; }
  .ns-home-side-nav a { flex: 0 0 auto; min-height: 38px; padding: 5px 8px; font-size: 10px; }
  .ns-home-side-nav a.active { box-shadow: inset 0 -2px 0 var(--home-sage); }
  .ns-home-nav-icon { width: 25px; height: 25px; flex-basis: 25px; }
  .ns-home-nav-icon svg { width: 15px; height: 15px; }
  .ns-home-help { display: none; }
  .ns-home-header { position: relative; min-height: 70px; padding: 11px 18px; }
  .ns-home-header nav { display: none !important; }
  .ns-home-mobile-brand { display: flex; }
  .ns-home-hero-grid { grid-template-columns: 1fr; width: min(760px, calc(100% - 38px)); min-height: 0; padding: 70px 0 72px; }
  .ns-home-copy { max-width: 680px; }
  .ns-home-copy h1 { font-size: clamp(3.5rem, 10vw, 5.5rem); }
  .ns-home-calculator { max-width: 620px; justify-self: start; }
  .ns-home-process-grid { grid-template-columns: 1fr; max-width: 720px; }
  .ns-home-process-grid article { min-height: 245px; }
  .ns-home-products { grid-template-columns: 1fr; }
  .ns-home-products-copy { max-width: 690px; }
  .ns-home-security { grid-template-columns: auto minmax(0, 1fr); }
  .ns-home-security > .ns-home-button { grid-column: 2; justify-self: start; }
  .ns-home-footer { grid-template-columns: 1fr auto; }
  .ns-home-footer nav { justify-content: flex-end; }
  .ns-home-footer p { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 640px) {
  .ns-home-sidebar { padding: 8px 10px; }
  .ns-home-side-nav a { padding: 4px 7px; }
  .ns-home-side-nav a > span:nth-child(2) { max-width: 90px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .ns-home-header { justify-content: flex-end; }
  .ns-home-mobile-brand { display: none; }
  .ns-home-header-actions { width: 100%; }
  .ns-home-header-actions .ns-home-button { flex: 1; min-height: 44px; padding: 0 12px; }
  .ns-home-hero { min-height: 0; }
  .ns-home-hero-grid { width: calc(100% - 28px); padding: 46px 0 58px; gap: 38px; }
  .ns-home-eyebrow { font-size: 9px; }
  .ns-home-copy h1 { margin-top: 18px; font-size: clamp(3.15rem, 15vw, 4.55rem); }
  .ns-home-intro { font-size: 15px; }
  .ns-home-hero-actions { display: grid; gap: 15px; }
  .ns-home-hero-actions .ns-home-button { width: 100%; }
  .ns-home-text-link { justify-content: center; }
  .ns-home-assurance { grid-template-columns: 1fr; margin-top: 30px; }
  .ns-home-assurance > div:last-child { grid-column: auto; }
  .ns-home-calculator { padding: 20px; border-radius: 20px; }
  .ns-home-calculator-heading { display: grid; }
  .ns-home-draft-pill { justify-self: start; }
  .ns-home-range-heading strong { font-size: 26px; }
  .ns-home-estimate { grid-template-columns: 1fr; }
  .ns-home-estimate-main { padding: 4px 3px 12px; border-right: 0; border-bottom: 1px solid var(--home-light-line); }
  .ns-home-process,
  .ns-home-products { padding: 68px 16px 72px; }
  .ns-home-section-heading h2,
  .ns-home-products h2 { font-size: clamp(2.25rem, 11vw, 3.25rem); }
  .ns-home-process-grid { margin-top: 32px; }
  .ns-home-process-grid article { min-height: 260px; padding: 23px; }
  .ns-home-product-list > a { grid-template-columns: 42px minmax(0, 1fr) auto; padding: 13px; }
  .ns-home-product-icon { width: 42px; height: 42px; }
  .ns-home-security { grid-template-columns: 1fr; padding: 50px 18px 56px; }
  .ns-home-security > .ns-home-button { grid-column: auto; justify-self: stretch; }
  .ns-home-security h2 { font-size: 2.4rem; }
  .ns-home-footer { grid-template-columns: 1fr; padding: 26px 18px 90px; }
  .ns-home-footer nav { justify-content: flex-start; flex-wrap: wrap; }
  .ns-home-footer .ns-home-footer-language { justify-self: start; }
  .ns-home-footer p { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *,
  .home-page *::before,
  .home-page *::after { scroll-behavior: auto !important; }
  .ns-home-copy,
  .ns-home-calculator { animation-duration: .01ms !important; }
  .ns-home-hero::before,
  .ns-home-wave { animation-duration: 34s !important; }
  .ns-home-button,
  .ns-home-side-nav a,
  .ns-home-process-grid article,
  .ns-home-product-list > a { transition-duration: .01ms !important; }
}


/* NORTHSTAR 35 — HOMEPAGE ICON INTEGRATION */
.ns-home-nav-icon,
.ns-home-help-icon{
  border:1px solid rgba(237,230,215,.16);
  background:linear-gradient(145deg,rgba(153,196,164,.22),rgba(255,255,255,.075));
  color:#fff8eb;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.07),0 6px 16px rgba(1,21,17,.11);
}
.ns-home-side-nav a:hover .ns-home-nav-icon,
.ns-home-side-nav a.active .ns-home-nav-icon{
  border-color:rgba(244,235,218,.25);
  background:linear-gradient(145deg,rgba(171,208,180,.34),rgba(255,255,255,.12));
  color:#fffdf6;
}
.ns-home-process-icon,
.ns-home-product-icon{
  border:1px solid rgba(255,255,255,.46);
  background:linear-gradient(145deg,#24906f,#11634f);
  color:#fff9ee;
  box-shadow:0 8px 18px rgba(16,96,75,.15),inset 0 1px 0 rgba(255,255,255,.15);
}
.ns-home-process-grid article:hover .ns-home-process-icon,
.ns-home-product-list>a:hover .ns-home-product-icon{
  background:linear-gradient(145deg,#2d9a78,#147058);
  box-shadow:0 10px 22px rgba(16,96,75,.2);
}
.ns-home-security-icon{
  border-color:rgba(237,230,215,.18);
  background:linear-gradient(145deg,rgba(153,196,164,.22),rgba(255,255,255,.075));
  color:#fff8eb;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.07);
}


/* NORTHSTAR 37 — hero contrast + refined topographic motion */
.ns-home-header-actions .ns-home-button-light{
  border-color:rgba(229,239,232,.34);
  background:#eee6d8;
  color:#17382f !important;
  box-shadow:0 10px 24px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.68);
}
.ns-home-header-actions .ns-home-button-light:hover{
  background:#f7f2e9;
  color:#0b4537 !important;
  border-color:rgba(247,242,233,.72);
}
.ns-home-header-actions .ns-home-button-light > .ns-home-header-action-icon,
.ns-home-header-actions .ns-home-button-light > .ns-home-header-arrow{
  display:grid;
  place-items:center;
  width:23px;
  height:23px;
  margin-left:1px;
  border-radius:999px;
  background:#10634d;
  color:#fffdf8 !important;
  font-size:13px;
  line-height:1;
  box-shadow:0 5px 12px rgba(7,58,45,.18);
}
.ns-home-header-actions .ns-home-button-light > span:not(.ns-home-header-action-icon):not(.ns-home-header-arrow){
  width:auto;
  height:auto;
  margin:0;
  border-radius:0;
  background:transparent;
  color:inherit !important;
  font-size:13px;
  line-height:1;
  box-shadow:none;
}

.ns-home-copy h1{
  color:#dce3da;
  text-shadow:0 3px 24px rgba(0,0,0,.18);
}
.ns-home-copy h1 em{
  color:#a9d1b3;
  text-shadow:0 3px 22px rgba(0,0,0,.14);
}
.ns-home-eyebrow{
  color:#a7c8af;
}
.ns-home-intro{
  color:rgba(220,228,220,.78);
  text-shadow:0 2px 16px rgba(0,0,0,.12);
}
.ns-home-text-link{
  color:rgba(221,231,223,.82);
}
.ns-home-assurance strong{
  color:#e3e8e1;
}
.ns-home-assurance small{
  color:rgba(210,221,213,.62);
}

/* Canvas remains the same live animation engine; only the line presentation changes. */
.northstar-live-waves{
  opacity:0;
  filter:drop-shadow(0 0 10px rgba(127,185,145,.055));
  -webkit-mask-image:linear-gradient(180deg,transparent 1%,#000 13%,#000 88%,transparent 100%);
  mask-image:linear-gradient(180deg,transparent 1%,#000 13%,#000 88%,transparent 100%);
}
.ns-home-hero.live-waves-ready .northstar-live-waves{opacity:.86;}
.ns-home-hero.live-waves-ready .ns-home-wave-top{opacity:.055;}
.ns-home-hero.live-waves-ready .ns-home-wave-bottom{opacity:.075;}


/* NORTHSTAR 38 — richer primary actions + footer utility cards */
.ns-home-action-icon{
  display:grid;
  place-items:center;
  width:31px;
  height:31px;
  flex:0 0 31px;
  margin-left:-7px;
  border-radius:10px;
  background:rgba(14,92,70,.10);
  color:#0f654e;
  box-shadow:inset 0 0 0 1px rgba(14,92,70,.10);
}
.ns-home-action-icon svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.ns-home-action-arrow{
  display:grid;
  place-items:center;
  width:25px;
  height:25px;
  margin-left:2px;
  border-radius:999px;
  background:#0e624b;
  color:#fffdf7;
  font-size:13px;
  box-shadow:0 5px 12px rgba(5,57,43,.16);
  transition:transform .18s ease, background .18s ease;
}
.ns-home-hero-cta,
.ns-home-security-cta{
  min-height:54px;
  padding:0 13px 0 14px;
  border-color:rgba(235,229,216,.5);
  background:linear-gradient(145deg,#f2eadc,#e6dccb);
  color:#173b31 !important;
  box-shadow:0 14px 32px rgba(0,0,0,.16),inset 0 1px 0 rgba(255,255,255,.72);
}
.ns-home-hero-cta:hover,
.ns-home-security-cta:hover{
  background:linear-gradient(145deg,#fffaf0,#eee5d7);
  border-color:rgba(255,250,240,.78);
  box-shadow:0 17px 34px rgba(0,0,0,.2),inset 0 1px 0 rgba(255,255,255,.86);
}
.ns-home-hero-cta:hover .ns-home-action-arrow,
.ns-home-security-cta:hover .ns-home-action-arrow{transform:translateX(2px);background:#0a503e}
.ns-home-security-cta .ns-home-action-icon{background:rgba(14,92,70,.12)}

.ns-home-footer{
  gap:20px 26px;
  padding-top:30px;
  padding-bottom:28px;
}
.ns-home-footer nav.ns-home-footer-actions{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(138px,1fr));
  gap:10px !important;
  width:min(100%,570px);
  justify-self:center;
  color:inherit !important;
}
.ns-home-footer nav.ns-home-footer-actions a{
  display:grid;
  grid-template-columns:34px minmax(0,1fr) auto;
  align-items:center;
  gap:9px;
  min-height:48px;
  padding:6px 11px 6px 7px;
  border:1px solid rgba(238,232,219,.12);
  border-radius:13px;
  background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
  color:rgba(248,244,235,.82);
  font-size:11px;
  font-weight:750;
  letter-spacing:.005em;
  text-decoration:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035);
  transition:transform .18s ease,border-color .18s ease,background .18s ease,color .18s ease,box-shadow .18s ease;
}
.ns-home-footer nav.ns-home-footer-actions a:hover{
  transform:translateY(-2px);
  border-color:rgba(177,215,186,.26);
  background:linear-gradient(145deg,rgba(163,205,174,.12),rgba(255,255,255,.05));
  color:#fffdf7;
  box-shadow:0 10px 22px rgba(0,0,0,.13),inset 0 1px 0 rgba(255,255,255,.05);
}
.ns-home-footer-action-icon{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:10px;
  background:rgba(168,208,178,.11);
  color:#b9d7bd;
  border:1px solid rgba(195,223,201,.09);
}
.ns-home-footer-action-icon svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.75;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.ns-home-footer-actions b{
  color:rgba(255,255,255,.38);
  font-size:12px;
  transition:transform .18s ease,color .18s ease;
}
.ns-home-footer-actions a:hover b{transform:translateX(2px);color:#d9eadb}

@media(max-width:980px){
  .ns-home-footer nav.ns-home-footer-actions{grid-template-columns:repeat(3,minmax(120px,1fr));width:100%;justify-self:stretch}
}
@media(max-width:620px){
  .ns-home-footer nav.ns-home-footer-actions{grid-template-columns:1fr}
  .ns-home-footer nav.ns-home-footer-actions a{min-height:50px}
  .ns-home-hero-cta,.ns-home-security-cta{width:100%}
}


/* NORTHSTAR 39 — refined primary navigation */
.ns-home-header .ns-home-primary-nav{
  gap:10px !important;
}
.ns-home-header .ns-home-primary-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:6px 11px 6px 8px;
  border:1px solid rgba(225,238,228,.10);
  border-radius:12px;
  background:rgba(255,255,255,.025);
  color:rgba(239,241,232,.86);
  font-size:12px;
  font-weight:760;
  letter-spacing:-.01em;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.025);
  transition:transform .18s ease,background .18s ease,border-color .18s ease,color .18s ease,box-shadow .18s ease;
}
.ns-home-header .ns-home-primary-nav a:hover,
.ns-home-header .ns-home-primary-nav a:focus-visible{
  transform:translateY(-1px);
  border-color:rgba(174,211,184,.25);
  background:rgba(161,201,173,.095);
  color:#fffdf8;
  box-shadow:0 8px 20px rgba(0,0,0,.10),inset 0 1px 0 rgba(255,255,255,.055);
  outline:none;
}
.ns-home-primary-icon{
  display:grid;
  place-items:center;
  width:27px;
  height:27px;
  flex:0 0 27px;
  border:1px solid rgba(202,224,208,.12);
  border-radius:8px;
  background:linear-gradient(145deg,rgba(164,202,175,.14),rgba(255,255,255,.035));
  color:#b8d7bf;
  transition:background .18s ease,color .18s ease,border-color .18s ease,transform .18s ease;
}
.ns-home-primary-icon svg{
  width:15px;
  height:15px;
  stroke-width:1.75;
}
.ns-home-header .ns-home-primary-nav a:hover .ns-home-primary-icon,
.ns-home-header .ns-home-primary-nav a:focus-visible .ns-home-primary-icon{
  transform:scale(1.04);
  border-color:rgba(220,235,224,.22);
  background:linear-gradient(145deg,rgba(160,205,174,.22),rgba(255,255,255,.065));
  color:#e7efe7;
}
@media (max-width:1180px) and (min-width:821px){
  .ns-home-header .ns-home-primary-nav{gap:7px !important;}
  .ns-home-header .ns-home-primary-nav a{padding-right:9px;font-size:11px;}
  .ns-home-primary-icon{width:25px;height:25px;flex-basis:25px;}
}


/* NORTHSTAR 40 — interaction/placement audit */
.ns-home-header-cta{white-space:nowrap;padding-left:10px;padding-right:12px}
.ns-home-header-action-icon{
  display:grid;place-items:center;width:28px;height:28px;flex:0 0 28px;border-radius:9px;
  border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.07);color:#dbeadf;
}
.ns-home-header-action-icon svg{width:15px;height:15px;stroke-width:1.8}
.ns-home-button-light .ns-home-header-action-icon{border-color:rgba(12,85,64,.12);background:rgba(15,101,78,.09);color:#0d604a}
.ns-home-header-arrow{font-size:14px;line-height:1;opacity:.78;transition:transform .18s ease}
.ns-home-header-cta:hover .ns-home-header-arrow{transform:translateX(2px)}
.ns-home-options-cta{padding-left:13px;padding-right:13px}
.ns-home-options-cta .ns-home-action-icon{margin-left:-4px;background:rgba(255,255,255,.11);color:#fff;border:1px solid rgba(255,255,255,.09)}
.ns-home-options-cta .ns-home-action-arrow{background:rgba(255,255,255,.14);box-shadow:none}
.ns-home-options-cta:hover .ns-home-action-arrow{transform:translateX(2px);background:rgba(255,255,255,.2)}
.ns-home-stage,.ns-home-header,.ns-home-header>*{min-width:0}
.ns-home-primary-nav{flex:1 1 auto;justify-content:center}
#calculator,#how,#products,#security{scroll-margin-top:96px}

/* Keep the mid-size laptop layout balanced after the fixed left rail is accounted for. */
@media (max-width:1180px) and (min-width:961px){
  .ns-home-header{gap:12px;padding-left:20px;padding-right:20px}
  .ns-home-header .ns-home-primary-nav{gap:6px!important;justify-content:flex-start}
  .ns-home-header .ns-home-primary-nav a{gap:6px;min-height:40px;padding:5px 8px 5px 6px;font-size:10.5px}
  .ns-home-primary-icon{width:24px;height:24px;flex-basis:24px}
  .ns-home-primary-icon svg{width:14px;height:14px}
  .ns-home-header-actions{gap:7px}
  .ns-home-header-cta{min-height:42px;padding-left:8px;padding-right:9px;font-size:11px;gap:7px}
  .ns-home-header-action-icon{width:25px;height:25px;flex-basis:25px}
  .ns-home-products{grid-template-columns:1fr;gap:34px;padding-top:78px;padding-bottom:82px}
  .ns-home-products-copy{max-width:760px}
  .ns-home-product-list{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
  .ns-home-product-list>a{grid-template-columns:42px minmax(0,1fr) auto;min-height:96px;padding:14px}
  .ns-home-product-icon{width:42px;height:42px}
}
@media (max-width:1040px) and (min-width:961px){
  .ns-home-header .ns-home-primary-nav a{padding-right:6px;font-size:10px}
  .ns-home-header-action-icon{display:none}
  .ns-home-header-cta{padding-left:10px;padding-right:10px}
  .ns-home-product-list{grid-template-columns:1fr}
}
@media (max-width:960px){
  #calculator,#how,#products,#security{scroll-margin-top:118px}
}
@media (max-width:640px){
  .ns-home-header-cta{padding-left:9px;padding-right:9px}
  .ns-home-header-action-icon{width:26px;height:26px;flex-basis:26px}
  .ns-home-options-cta{width:100%}
}


/* Northstar 42 — keep Sign in / Apply visible and clickable at every width */
.ns-home-header{position:relative;z-index:30!important}
.ns-home-header-actions{position:relative;z-index:31!important;display:flex!important;align-items:center!important;flex:0 0 auto!important;min-width:max-content!important}
.ns-home-header-cta{display:inline-flex!important;visibility:visible!important;opacity:1!important;pointer-events:auto!important;min-width:max-content!important;flex:0 0 auto!important;overflow:visible!important;white-space:nowrap!important}
.ns-home-header-cta>span{display:inline-flex!important;visibility:visible!important;opacity:1!important}
@media(max-width:1040px) and (min-width:961px){
  .ns-home-header-actions{gap:5px!important}
  .ns-home-header-cta{font-size:10px!important;padding:9px!important}
  .ns-home-header-arrow{display:none!important}
}
@media(max-width:960px){
  .ns-home-header{display:flex!important;flex-wrap:wrap!important;align-items:center!important;gap:10px!important}
  .ns-home-header-actions{margin-left:auto!important}
}
@media(max-width:640px){
  .ns-home-header-actions{width:auto!important;min-width:0!important;gap:6px!important}
  .ns-home-header-cta{min-height:42px!important;padding:8px 10px!important;font-size:11px!important}
  .ns-home-header-action-icon{display:none!important}
  .ns-home-header-arrow{display:none!important}
}
@media(max-width:390px){
  .ns-home-header-cta{padding:8px 9px!important;font-size:10.5px!important}
}
