:root {
  --ntw-navy: #1a334f;
  --ntw-blue: #1e4a7a;
  --ntw-blue-hover: #163a60;
  --ntw-blue-light: #e8eef5;
  --ntw-text: #1a1a2e;
  --ntw-muted: #5a6270;
  --ntw-border: #e2e8f0;
  --ntw-bg: #f4f7fb;
  --ntw-white: #ffffff;
  --ntw-bottom-bar-bg: #0a1624;
}

* { box-sizing: border-box; }

html {
  height: 100%;
}

body.ntw-app {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ntw-text);
  background: var(--ntw-bg);
  line-height: 1.55;
  min-height: 100dvh;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ntw-shell {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ntw-mesh-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #ffffff;
}

.ntw-mesh-bg--dark {
  background: #050508;
}

.ntw-page-home-dev {
  background: #ffffff;
}

.ntw-page-home-dev .ntw-shell {
  position: relative;
  z-index: 1;
  background: transparent;
}

.ntw-page-home-dev .ntw-main {
  background: transparent;
}

.ntw-page-home-dev .ntw-quiz-panel {
  width: 100%;
  justify-self: end;
  align-self: center;
  box-sizing: border-box;
  padding: 2.25rem 3rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 28px rgba(26, 51, 79, 0.5);
}

.ntw-page-home-dev .ntw-quiz-panel .hp-quiz-question {
  font-size: 1.5rem;
  margin: 0 0 2rem;
  text-align: center;
  color: #000;
}

.ntw-topnav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid rgba(26, 51, 79, 0.15);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ntw-topnav-left {
  flex: 1 1 0;
  min-width: 0;
}

.ntw-topnav-center {
  flex: 0 0 auto;
  min-width: 0;
}

.ntw-topnav-right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
}

.ntw-topnav-right .ntw-nav-links {
  justify-self: unset;
  margin: 0;
}

.ntw-topnav-right .ntw-nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
}

.ntw-topnav-btn {
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  border: 1px solid rgba(26, 51, 79, 0.25);
  background: rgba(255, 255, 255, 0.85);
  color: #1a334f;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.25;
}

.ntw-topnav-btn:hover {
  background: #fff;
}

.hp-deck-header-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  max-width: min(420px, 50vw);
}

.hp-deck-header-nav .hp-deck-progress {
  width: 100%;
  max-width: 280px;
}

.ntw-bottom-bar-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ntw-topnav-preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ntw-blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem;
  border-radius: 6px;
  line-height: 1.25;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(30, 74, 122, 0.25);
}

.ntw-brand {
  font-weight: 700;
  color: #000;
  text-decoration: none;
  font-size: 2.36rem;
  line-height: 1.1;
}

.ntw-nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
  margin-left: 0;
}

.ntw-nav-links a {
  color: #000;
  text-decoration: none;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.ntw-nav-links a.ntw-topnav-cta {
  font-size: 0.85rem;
  line-height: 1.25;
}

.ntw-nav-links a.active,
.ntw-nav-links a:hover {
  color: var(--ntw-blue);
}

.ntw-topnav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ntw-blue);
  color: #fff !important;
  padding: 0.5rem 0.95rem;
  min-height: 2.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  line-height: 1.25;
  box-sizing: border-box;
}

.ntw-topnav-cta:hover,
.ntw-topnav-cta.active {
  background: var(--ntw-blue-hover);
  color: #fff !important;
}

.ntw-main {
  flex: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem;
  min-height: 0;
  overflow: auto;
}

body.ntw-bundle-mode .ntw-main {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.ntw-bundle-page {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem;
}

.ntw-main--home-dev {
  max-width: none;
  width: 100%;
  padding: 1.25rem clamp(2.5rem, 5.5vw, 7rem) 1.25rem clamp(2rem, 4.4vw, 5.6rem);
  display: flex;
  align-items: center;
  flex: 1;
  min-height: 0;
}

.ntw-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 4.5rem clamp(5.5rem, 7vw, 9rem);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  overflow: visible;
}

.ntw-page-home-dev .ntw-hero {
  max-width: 100%;
  width: 100%;
  justify-self: start;
}

.ntw-page-quiz .ntw-quiz-landing {
  padding: 0.5rem 0 2rem;
  align-items: start;
}

.ntw-hero {
  padding: 0;
  max-width: none;
  width: 100%;
  justify-self: stretch;
}

.ntw-hero-title {
  font-size: clamp(2.15rem, 4.5vw, 3.3rem);
  font-weight: 700;
  color: var(--ntw-navy);
  line-height: 1.15;
  margin: 0 0 1.1rem;
}

.ntw-hero-subhead {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--ntw-navy);
  margin: 0 0 1.1rem;
  line-height: 1.4;
}

.ntw-hero-body {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ntw-muted);
  margin: 0 0 1.6rem;
  line-height: 1.6;
}

.ntw-main--home-dev .ntw-cta-row .ntw-btn {
  font-size: 1.05rem;
  padding: 0.75rem 1.4rem;
}

.ntw-quiz-panel {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  align-self: center;
  margin-top: 0;
  padding: 2.25rem 2.5rem;
}

.ntw-page-home-dev .ntw-quiz-panel .ntw-panel-subhead {
  font-size: 1.25rem;
}

.ntw-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.ntw-panel {
  background: var(--ntw-white);
  border: 1px solid var(--ntw-border);
  border-radius: 10px;
  padding: 1.5rem;
}

.ntw-panel h1 {
  font-size: 1.5rem;
  color: var(--ntw-navy);
  margin: 0 0 0.75rem;
}

.ntw-panel p {
  color: var(--ntw-muted);
  margin: 0 0 1rem;
}

.ntw-btn {
  display: inline-block;
  background: var(--ntw-blue);
  color: #fff;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  border: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

a.ntw-btn,
button.ntw-btn {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
}

button.ntw-btn {
  appearance: none;
  -webkit-appearance: none;
}

.ntw-btn:hover {
  background: var(--ntw-blue-hover);
}

.ntw-btn-secondary {
  background: transparent;
  color: var(--ntw-blue);
  border: 1px solid var(--ntw-blue);
}

.ntw-btn-secondary:hover {
  background: var(--ntw-blue-light);
}

.ntw-page-home-dev .ntw-quiz-panel .hp-quiz-options {
  width: 100%;
}

.ntw-page-home-dev .ntw-quiz-panel .hp-quiz-option {
  width: 100%;
  box-sizing: border-box;
}

.hp-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hp-quiz-page-title {
  display: none;
}

.hp-quiz-question {
  font-size: 1.26rem;
  font-weight: 600;
  color: var(--ntw-navy);
  margin: 0 0 1rem;
  line-height: 1.4;
}

.hp-quiz-input {
  width: 100%;
  margin: 0 0 0.75rem;
}

.hp-quiz-text-field {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ntw-border);
  border-radius: 6px;
  font: inherit;
  color: var(--ntw-navy);
  background: var(--ntw-bg);
  resize: vertical;
  min-height: 6rem;
}

.hp-quiz-text-field:focus {
  outline: 2px solid rgba(30, 74, 122, 0.35);
  outline-offset: 1px;
  border-color: var(--ntw-blue);
}

.hp-quiz-option {
  display: block;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ntw-blue);
  border-radius: 6px;
  cursor: pointer;
  background: var(--ntw-blue);
  color: #fff;
  font-weight: 450;
}

.hp-quiz-option:hover {
  background: var(--ntw-blue-hover);
  border-color: var(--ntw-blue-hover);
}

.hp-quiz-option.is-selected {
  outline: 2px solid var(--ntw-blue);
  outline-offset: 1px;
}

.hp-quiz-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.hp-quiz-nav-back,
.hp-quiz-nav-next,
.hp-quiz-nav .hp-quiz-nav-back,
.hp-quiz-nav .hp-quiz-nav-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  border: 1px solid var(--ntw-blue);
}

.hp-quiz-nav-back {
  background: transparent;
  color: var(--ntw-blue);
}

.hp-quiz-nav-next {
  background: var(--ntw-blue);
  color: #fff;
  border-color: var(--ntw-blue);
}

.hp-quiz-nav-back:hover {
  background: var(--ntw-blue-light);
}

.hp-quiz-nav-next:hover {
  background: var(--ntw-blue-hover);
}

.hp-quiz-nav-next.is-busy,
.hp-quiz-nav-next.is-busy:hover {
  opacity: 0.7;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.ntw-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ntw-blue);
  margin: 0 0 0.75rem;
}

.ntw-panel-subhead {
  font-size: 1.05rem;
  color: var(--ntw-navy);
  margin: 0 0 0.75rem;
}

.ntw-funnel-lead {
  margin: 0 0 1.25rem;
  color: var(--ntw-muted);
  line-height: 1.5;
}

.ntw-funnel-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

.ntw-funnel-actions .ntw-btn {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  letter-spacing: normal;
}

.ntw-btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
  cursor: wait;
}

.ntw-spinner {
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ntw-spin 0.8s linear infinite;
}

@keyframes ntw-spin {
  to { transform: rotate(360deg); }
}

.ntw-panel-lead {
  font-size: 0.9rem;
  color: var(--ntw-muted);
  margin: 0 0 1rem;
}

.ntw-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.ntw-expect-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--ntw-muted);
  font-size: 0.9rem;
}

.ntw-expect-list li {
  margin-bottom: 0.4rem;
}

.ntw-blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ntw-blog-list li,
.ntw-blog-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--ntw-border);
}

.ntw-blog-list a {
  color: var(--ntw-navy);
  font-weight: 600;
  text-decoration: none;
}

.ntw-blog-meta {
  font-size: 0.85rem;
  color: var(--ntw-muted);
  margin: 0.35rem 0 0.5rem;
}

.ntw-blog-excerpt {
  font-size: 0.9rem;
  color: var(--ntw-muted);
  margin: 0;
  line-height: 1.5;
}

.ntw-post-body {
  color: var(--ntw-text);
  font-size: 0.95rem;
  line-height: 1.65;
}

.ntw-post-body p,
.ntw-post-body ul,
.ntw-post-body ol {
  margin: 0 0 1rem;
}

.ntw-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ntw-contact {
  max-width: 32rem;
  width: 100%;
  margin-inline: auto;
}

.ntw-contact h1 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: var(--ntw-heading, var(--ntw-text));
}

.ntw-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--ntw-text);
  font-weight: 600;
}

.ntw-field input,
.ntw-field textarea {
  font: inherit;
  font-weight: 400;
  color: var(--ntw-text);
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--ntw-border);
  border-radius: 6px;
  background: var(--ntw-bg);
}

.ntw-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.ntw-hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ntw-form-note {
  background: var(--ntw-blue-light);
  color: var(--ntw-text);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  margin: 0 0 1rem;
}

.ntw-form-error {
  background: rgba(180, 40, 40, 0.12);
  color: var(--ntw-text);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  margin: 0 0 1rem;
}

.ntw-bottom-bar {
  position: sticky;
  bottom: 0;
  z-index: 180;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ntw-bottom-bar-bg);
  color: rgba(255, 255, 255, 0.75);
  overflow: visible;
}

.ntw-bottom-bar-inner {
  width: 100%;
  margin: 0;
  padding: 0.65rem 1.5rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem 1.5rem;
  font-size: 0.8rem;
}

.ntw-bottom-bar-left {
  justify-self: start;
  text-align: left;
}

.ntw-bottom-bar-center {
  justify-self: center;
  min-width: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.ntw-scorecard-live-feed {
  display: block;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 0.68rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.58);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(52vw, 640px);
}

.ntw-bottom-bar-right {
  justify-self: end;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: visible;
}

.ntw-bottom-copy {
  color: rgba(255, 255, 255, 0.75);
}

.ntw-bottom-bar a:not(.ntw-bottom-bar-btn) {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.ntw-bottom-bar a:not(.ntw-bottom-bar-btn):hover {
  color: #fff;
}

.ntw-bottom-bar-btn {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ntw-bottom-bar-btn:hover {
  color: #fff;
}

.ntw-bottom-bar-btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

.ntw-bottom-bar-bundle[hidden] {
  display: none !important;
}

.hp-thanks-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 300;
  width: min(28rem, calc(100vw - 2rem));
  background: #fff;
  color: #1a1a2e;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.22);
  padding: 1.35rem 2.6rem 1.35rem 1.35rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.hp-thanks-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hp-thanks-toast.is-fading {
  opacity: 0;
  pointer-events: none;
}

.hp-thanks-toast p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #1a1a2e;
}

.hp-thanks-close {
  position: absolute;
  top: 0.45rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: #5a6270;
}

.ntw-theme-preview-links {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-right: 0.75rem;
}

.ntw-theme-preview-link.is-active {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.ntw-scorecard-copy-status {
  appearance: none;
  background: none;
  border: none;
  font: inherit;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 0.5rem;
  padding: 0;
}

.ntw-scorecard-status-menu {
  position: relative;
  display: inline-block;
}

.ntw-scorecard-copy-status--clickable {
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ntw-scorecard-copy-status--clickable:hover,
.ntw-scorecard-copy-status--clickable:focus-visible {
  color: #fff;
  outline: none;
}

.ntw-scorecard-copy-status--open {
  color: #fff;
}

.ntw-scorecard-preview-menu {
  position: absolute;
  bottom: calc(100% + 0.35rem);
  right: 0;
  min-width: 14rem;
  max-width: min(22rem, 70vw);
  background: #132033;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 0.35rem 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.35);
  z-index: 200;
}

.ntw-scorecard-preview-menu[hidden] {
  display: none;
}

.ntw-scorecard-preview-menu a {
  display: block;
  padding: 0.45rem 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.72rem;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ntw-scorecard-preview-menu a:hover,
.ntw-scorecard-preview-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

@media (max-width: 640px) {
  .ntw-bottom-bar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .ntw-bottom-bar-left,
  .ntw-bottom-bar-center,
  .ntw-bottom-bar-right {
    justify-self: center;
    text-align: center;
  }

  .ntw-scorecard-live-feed {
    max-width: 100%;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.ntw-sitemap--page {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 1.75rem 2rem;
  margin-top: 1.5rem;
}

.ntw-sitemap--four {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
}

.ntw-sitemap-heading {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ntw-navy);
}

.ntw-sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ntw-sitemap-list a {
  color: var(--ntw-muted);
  text-decoration: none;
}

.ntw-sitemap-list a:hover {
  color: var(--ntw-blue);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.ntw-topnav--solid {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(26, 51, 79, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.ntw-page-home {
  background: #050508;
}

.ntw-page-home .ntw-shell {
  position: relative;
  z-index: 1;
  background: transparent;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
}

.ntw-page-home .ntw-main {
  background: transparent;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.ntw-page-home .ntw-topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 300;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.ntw-page-home .ntw-brand {
  color: #ffffff;
}

.ntw-page-home .ntw-nav-links a:not(.ntw-topnav-cta) {
  color: #ffffff;
}

.ntw-page-home .ntw-nav-links a:not(.ntw-topnav-cta):hover,
.ntw-page-home .ntw-nav-links a:not(.ntw-topnav-cta).active {
  color: rgba(255, 255, 255, 0.82);
}

.ntw-page-home .ntw-bottom-bar {
  background: #030306;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ntw-main--home {
  max-width: none;
  width: 100%;
  padding: 0;
  margin: 0;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.ntw-page-home .ntw-hero-band {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 2rem 4.5rem;
  overflow-y: auto;
}

.ntw-page-home .ntw-hero-band-inner {
  max-width: 1080px;
  width: 100%;
}

.ntw-page-home .ntw-hero-band-headline {
  margin-bottom: 1.25rem;
}

.ntw-page-home .ntw-hero-band-subhead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  margin: -0.5rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.ntw-page-home .ntw-hero-band-body {
  margin-bottom: 0.9rem;
  line-height: 1.55;
}

.ntw-page-home .ntw-hero-band-cta-row {
  margin-top: 1.25rem;
}

.ntw-hero-band {
  background: transparent;
  color: #ffffff;
  padding: 3rem 4.5rem 4rem;
  min-height: calc(100vh - 4.5rem);
  position: relative;
  z-index: 1;
}

.ntw-hero-band-inner {
  max-width: 900px;
  margin: 0 auto;
}

.ntw-hero-band-headline {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.75rem;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.ntw-hero-band-body {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.65;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.ntw-hero-band-cta-row {
  margin: 2rem 0 0;
}

.ntw-btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #241fc4 !important;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

.ntw-btn-hero-cta:hover {
  background: #f0f0ff;
  color: #1a1599 !important;
}

@media (max-width: 900px) {
  .ntw-brand {
    font-size: 1.24rem;
  }

  .ntw-topnav {
    padding: 0.65rem 1rem;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .ntw-topnav-left {
    flex: 1 1 auto;
  }

  .ntw-topnav-right {
    flex: 0 0 auto;
  }

  .ntw-topnav-center {
    flex: 1 1 100%;
    order: 3;
    display: flex;
    justify-content: center;
  }

  .ntw-topnav-preview {
    font-size: 0.72rem;
    padding: 0.35rem 0.65rem;
  }

  .ntw-main--home-dev {
    padding: 1rem 1.5rem;
    min-height: 0;
    align-items: stretch;
  }

  .ntw-home-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
  }

  .ntw-hero-title {
    font-size: clamp(1.85rem, 7vw, 2.4rem);
  }

  .ntw-hero-subhead {
    font-size: 1.15rem;
  }

  .ntw-hero-body {
    font-size: 1rem;
  }

  .ntw-main--home-dev .ntw-cta-row .ntw-btn {
    font-size: 0.95rem;
    padding: 0.65rem 1.15rem;
  }

  .ntw-page-home-dev .ntw-quiz-panel,
  .ntw-page-quiz .ntw-quiz-panel {
    max-width: none;
    justify-self: stretch;
    padding: 1.125rem 1.75rem;
  }

  .ntw-page-home-dev .ntw-hero {
    max-width: none;
    transform: none;
  }

  .ntw-quiz-panel {
    padding: 1.5rem;
  }

  .ntw-hero-band {
    padding: 2rem 1.5rem 3rem;
    min-height: 0;
  }

  .ntw-page-home .ntw-shell {
    height: auto;
    overflow: visible;
  }

  .ntw-page-home .ntw-hero-band {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .ntw-split { grid-template-columns: 1fr; }

  .ntw-brand {
    font-size: 1.01rem;
  }

  .ntw-nav-links {
    gap: 0.65rem;
  }

  .ntw-sitemap--page,
  .ntw-sitemap--four {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Strategy Bundle landing page */
.ntw-bundle-hero {
  margin-bottom: 2rem;
}

.ntw-bundle-lead {
  max-width: 42rem;
  color: var(--ntw-muted, #555);
}

.ntw-bundle-status {
  margin-bottom: 2rem;
}

.ntw-bundle-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.ntw-bundle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ntw-bundle-copy h2 {
  margin: 0 0 0.35rem;
}

.ntw-bundle-asset-sub {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--ntw-muted, #666);
}

.ntw-bundle-summary {
  margin: 0 0 1rem;
  line-height: 1.55;
}

.ntw-bundle-mockup-frame {
  min-height: 220px;
  border-radius: 8px;
  background: linear-gradient(145deg, #0d2137 0%, #1a4a7a 100%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  box-shadow: 0 12px 32px rgba(13, 33, 55, 0.18);
}

.ntw-bundle-thumbnail {
  display: block;
  width: 100%;
  min-height: 220px;
  max-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(13, 33, 55, 0.18);
}

.ntw-bundle-mockup-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
}

.ntw-bundle-footer {
  margin-top: 2rem;
  width: 100%;
}

.ntw-email-preview {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border: 1px dashed rgba(19, 32, 51, 0.25);
  border-radius: 8px;
  background: rgba(19, 32, 51, 0.04);
}

.ntw-email-preview h2 {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ntw-email-preview-subject {
  margin: 0;
  font-weight: 600;
}

.ntw-email-preview-body {
  margin: 0;
  white-space: pre-wrap;
  font-family: inherit;
  font-size: 0.95rem;
  line-height: 1.5;
}

.ntw-about {
  display: grid;
  grid-template-columns: minmax(14rem, 18rem) minmax(0, 1fr);
  gap: 2.5rem 3rem;
  align-items: start;
  max-width: 56rem;
  width: 100%;
  margin-inline: auto;
}

.ntw-page-about .ntw-main,
.ntw-page-contact .ntw-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.ntw-about-photo {
  padding: 1.15rem;
  border: 1px solid var(--ntw-border);
  border-radius: 16px;
  background: var(--ntw-white);
}

.ntw-about-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.ntw-about-copy h1 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--ntw-heading, var(--ntw-navy));
}

.ntw-about-lead {
  font-size: 1.05rem;
  margin: 0 0 1rem;
  line-height: 1.5;
}

.ntw-about-copy p {
  margin: 0 0 1rem;
  color: var(--ntw-text);
}

.ntw-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .ntw-bundle-row {
    grid-template-columns: 1fr;
  }

  .ntw-about {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }
}
