:root {
  --nw-font-sans: "Helvetica Neue", Arial, sans-serif;
  --nw-banner-height: 329px;
  --nw-banner-height-detail: 329px;
  --nw-banner-offset-y: -53px;
  --nw-banner-offset-y-detail: -53px;
  --nw-banner-scale-y: 1;
  --nw-banner-scale-y-detail: 1;
  --nw-dark-top: #000000;
  --nw-light-top: #ffffff;
  --nw-dark-bottom: #050038;
  --nw-light-bottom: #fff9c9;
  --nw-blue: #264e8a;
  --nw-icon-blue: #4b4de5;
  --nw-gold: #cbb62b;
  --nw-red: #f11400;
  --nw-purple: #7642f2;
  --nw-text-dark: #0f1220;
  --nw-text-light: rgba(255, 255, 255, 0.96);
  --nw-copy-dark: rgba(255, 255, 255, 0.64);
  --nw-copy-light: rgba(18, 22, 35, 0.64);
}

html, body {
  margin: 0;
  min-height: 100%;
  font-family: var(--nw-font-sans);
  background: #ffffff;
}

body {
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, p {
  margin: 0;
}

.nicegui-content,
.nw-split-landing,
.nw-split-shell {
  width: 100%;
}

.nicegui-content {
  padding: 0 !important;
}

.nw-split-landing,
.nw-split-shell {
  display: block;
  min-height: 100vh;
}

.nw-split-shell {
  position: relative;
  overflow: hidden;
}

.nw-detail-shell {
  --nw-active-banner-height: var(--nw-banner-height-detail);
  --nw-active-banner-offset: var(--nw-banner-offset-y-detail);
  --nw-active-banner-scale: var(--nw-banner-scale-y-detail);
}

.nw-home-shell {
  --nw-active-banner-height: var(--nw-banner-height);
  --nw-active-banner-offset: var(--nw-banner-offset-y);
  --nw-active-banner-scale: var(--nw-banner-scale-y);
}

.nw-split-column {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
}

.nw-split-column-dark {
  left: 0;
}

.nw-split-column-light {
  right: 0;
}

.nw-split-top,
.nw-split-bottom {
  width: 100%;
}

.nw-split-top {
  height: var(--nw-active-banner-height);
  min-height: var(--nw-active-banner-height);
}

.nw-split-bottom {
  height: calc(100vh - var(--nw-active-banner-height));
  min-height: 420px;
}

.nw-detail-shell .nw-split-bottom {
  min-height: 20px;
}

.nw-split-top-dark {
  background: var(--nw-dark-top);
}

.nw-split-top-light {
  background: var(--nw-light-top);
}

.nw-split-bottom-dark {
  background: var(--nw-dark-bottom);
}

.nw-split-bottom-light {
  background: var(--nw-light-bottom);
}

.nw-wave-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nw-active-banner-height);
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.nw-wave-banner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("/static/images/assistant-wave-public-banner.jpg") center top / 100% 100% no-repeat;
  transform: translateY(var(--nw-active-banner-offset)) scaleY(var(--nw-active-banner-scale));
  transform-origin: top center;
}

.nw-home-wordmark,
.nw-detail-wordmark {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0.9;
  letter-spacing: -0.07em;
  pointer-events: none;
}

.nw-home-wordmark {
  top: calc(var(--nw-active-banner-height) - clamp(5rem, 10vw, 8rem) + 2.7rem);
  height: clamp(5rem, 10vw, 8rem);
  font-size: clamp(2.5rem, 10vw, 6.5rem);
}

.nw-detail-wordmark {
  top: 0;
  height: clamp(5rem, 10vw, 8rem);
  font-size: clamp(1.5rem, 6vw, 4.5rem);
}

.nw-wordmark-nexus,
.nw-wordmark-wave {
  position: absolute;
  top: 0;
  white-space: nowrap;
}

.nw-home-wordmark .nw-wordmark-nexus {
  right: 50.8%;
  color: var(--nw-text-light);
  font-weight: 300;
  padding-right: 0.08em;
}

.nw-home-wordmark .nw-wordmark-wave {
  left: 50.8%;
  color: var(--nw-blue);
  font-weight: 400;
  padding-left: 0.08em;
}

.nw-detail-wordmark .nw-wordmark-nexus {
  right: 51%;
  color: var(--nw-text-light);
  font-weight: 300;
  padding-right: 0.02em;
}

.nw-page-menu {
  position: relative;
  z-index: 5;
}

.nw-page-controls {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.nw-language-switcher {
  position: relative;
}

.nw-language-switcher-label {
  display: block;
  padding: 0.6rem 0.95rem 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 18, 32, 0.66);
}

.nw-language-switcher-btn {
  min-width: 3.7rem;
  height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 18, 32, 0.14);
  box-shadow: 0 10px 24px rgba(15, 18, 32, 0.08);
  border-radius: 0;
  color: #111827;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.nw-language-switcher-btn.q-btn--flat.q-btn--rectangle:before {
  display: none;
}

.nw-language-switcher-menu {
  margin-top: 0.65rem;
  min-width: 5.4rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 18, 32, 0.14);
  box-shadow: 0 18px 38px rgba(15, 18, 32, 0.12);
  border-radius: 0;
  overflow: hidden;
}

.nw-language-switcher-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0 0.95rem;
  border-top: 1px solid rgba(15, 18, 32, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(15, 18, 32, 0.74);
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nw-language-switcher-link.active {
  border-color: rgba(38, 78, 138, 0.28);
  background: rgba(38, 78, 138, 0.08);
  color: var(--nw-blue);
}

.nw-page-menu-btn {
  width: 2.9rem;
  height: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 18, 32, 0.14);
  box-shadow: 0 10px 24px rgba(15, 18, 32, 0.08);
  border-radius: 0;
  color: #111827;
}

.nw-page-menu-card {
  margin-top: 0.65rem;
  min-width: 13rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 18, 32, 0.14);
  box-shadow: 0 18px 38px rgba(15, 18, 32, 0.12);
  border-radius: 0;
  overflow: hidden;
}

.nw-page-menu-section {
  display: block;
  padding: 0.7rem 0.95rem 0.35rem;
  color: rgba(15, 18, 32, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nw-page-menu-separator {
  height: 1px;
  margin: 0.2rem 0;
  background: rgba(15, 18, 32, 0.08);
}

.nw-page-menu-link {
  display: block;
  padding: 0.8rem 0.95rem;
  color: #111827;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(15, 18, 32, 0.08);
}

.nw-page-menu-link:last-child {
  border-bottom: 0;
}

.nw-page-menu-link:hover {
  background: rgba(38, 78, 138, 0.06);
}

.nw-page-menu-group {
  border-bottom: 1px solid rgba(15, 18, 32, 0.08);
}

.nw-page-menu-group-summary {
  display: block;
  padding: 0.8rem 0.95rem;
  color: #111827;
  font-size: 0.92rem;
  cursor: pointer;
  list-style: none;
}

.nw-page-menu-group-summary::marker {
  content: "";
}

.nw-page-menu-group summary::-webkit-details-marker {
  display: none;
}

.nw-page-menu-group[open] .nw-page-menu-group-summary {
  background: rgba(38, 78, 138, 0.06);
}

.nw-page-menu-group-body {
  display: grid;
}

.nw-page-menu-sublink {
  display: block;
  padding: 0.72rem 0.95rem 0.72rem 1.45rem;
  color: rgba(15, 18, 32, 0.82);
  font-size: 0.88rem;
  border-top: 1px solid rgba(15, 18, 32, 0.06);
}

.nw-page-menu-sublink:hover {
  background: rgba(38, 78, 138, 0.05);
}

.nw-feature-strip {
  position: absolute;
  left: 54%;
  z-index: 3;
  width: min(72rem, calc(100vw - 8rem));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2rem, 3vw, 3.5rem);
  transform: translateX(-50%);
}

.nw-home-shell .nw-feature-strip {
  top: calc(var(--nw-active-banner-height) + clamp(3rem, 6vw, 4.5rem));
}

.nw-detail-shell .nw-feature-strip {
  top: 13.5rem;
}

.nw-feature {
  display: grid;
  align-content: start;
  gap: 1rem;
  justify-items: start;
}

.nw-feature h2 {
  max-width: 10ch;
  font-size: 1rem;
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.nw-feature h1 {
  max-width: 17rem;
  font-size: 3.25rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.nw-feature p {
  font-size: 0.92rem;
  line-height: 2.8;
}

.nw-home-shell .nw-feature p {
  max-width: 8.2rem;
}

.nw-detail-shell .nw-feature p {
  max-width: 17rem;
  font-size: 0.98rem;
  line-height: 3.8;
}

.nw-feature-dark h2,
.nw-feature-dark h1 {
  color: var(--nw-text-light);
}

.nw-feature-dark p {
  color: var(--nw-copy-dark);
}

.nw-home-shell .nw-feature-dark,
.nw-home-shell .nw-feature-dark a,
.nw-home-shell .nw-feature-dark > div:not(.nw-icon-block) {
  color: var(--nw-text-light);
}

.nw-feature-light h2,
.nw-feature-light h1 {
  color: var(--nw-text-dark);
}

.nw-feature-light p {
  color: var(--nw-copy-light);
}

.nw-feature-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.nw-icon-block {
  width: 3.4rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nw-icon-block svg {
  width: 3.1rem;
  height: 3.1rem;
  display: block;
}

.nw-home-shell .nw-icon-block {
  width: 4rem;
  height: 4rem;
}

.nw-home-shell .nw-icon-block svg {
  width: 3.6rem;
  height: 3.6rem;
}

.nw-home-shell .nw-feature h2 {
  max-width: 15ch;
}

.nw-detail-shell .nw-icon-block {
  width: 12.4rem;
  height: 12.4rem;
}

.nw-detail-shell .nw-icon-block svg {
  width: 10rem;
  height: 10rem;
}

.nw-icon-blue {
  color: var(--nw-icon-blue);
}

.nw-icon-gold {
  color: var(--nw-gold);
}

.nw-cta-bridge {
  position: absolute;
  left: 50%;
  top: calc(var(--nw-active-banner-height) + clamp(17.5rem, 23vw, 20rem));
  z-index: 4;
  display: grid;
  gap: 0.8rem;
  width: min(32rem, calc(100vw - 2rem));
  transform: translateX(-50%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.nw-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 3.65rem;
  padding: 0.9rem 1.4rem;
  text-align: center;
  line-height: 1.25;
}

.nw-cta-primary {
  background: var(--nw-red);
  color: #ffffff;
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.nw-cta-secondary {
  background: var(--nw-purple);
  color: #ffffff;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.nw-legal-shell {
  min-height: 100vh;
}

.nw-story-content {
  --nw-story-side-pad: clamp(2rem, 4vw, 4rem);
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: var(--nw-active-banner-height) minmax(calc(100vh - var(--nw-active-banner-height)), auto);
  grid-template-areas:
    "kicker spacer"
    "header main";
  width: 100%;
  min-height: 100vh;
}

.nw-story-kicker {
  grid-area: kicker;
  align-self: end;
  justify-self: end;
  width: calc(100% - (var(--nw-story-side-pad) * 2));
  box-sizing: border-box;
  margin: 0 var(--nw-story-side-pad) 1.8rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  color: rgba(255, 255, 255, 0.92) !important;
}

.nw-story-header {
  grid-area: header;
  display: grid;
  gap: 1.1rem;
  align-content: start;
  justify-items: end;
  width: calc(100% - (var(--nw-story-side-pad) * 2));
  box-sizing: border-box;
  justify-self: end;
  padding: 2rem var(--nw-story-side-pad) 3rem 0;
  color: var(--nw-text-light);
}

.nw-story-icon {
  width: 10rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nw-story-icon svg {
  width: 8.5rem;
  height: 8.5rem;
  display: block;
}

.nw-story-title {
  max-width: 11ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: right;
  color: rgba(255, 255, 255, 0.96) !important;
  text-wrap: balance;
}

.nw-story-main {
  grid-area: main;
  display: grid;
  gap: 1.25rem;
  align-content: start;
  width: calc(100% - (var(--nw-story-side-pad) * 2));
  box-sizing: border-box;
  justify-self: start;
  padding: 2rem 0 4rem var(--nw-story-side-pad);
  color: var(--nw-text-dark);
}

.nw-story-intro,
.nw-story-copy {
  font-size: 0.98rem;
  line-height: 1.95;
  color: rgba(15, 18, 32, 0.82);
}

.nw-story-intro {
  width: 100%;
  max-width: none;
  font-weight: 600;
  color: rgba(15, 18, 32, 0.92);
}

.nw-legal-shell .nw-split-bottom {
  height: calc(100% - var(--nw-active-banner-height));
  min-height: calc(100% - var(--nw-active-banner-height));
}

.nw-legal-content {
  --nw-legal-side-pad: clamp(2rem, 4vw, 4rem);
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: var(--nw-active-banner-height) minmax(calc(100vh - var(--nw-active-banner-height)), auto);
  grid-template-areas:
    "kicker spacer"
    "header main";
  width: 100%;
  min-height: 100vh;
}

.nw-legal-kicker {
  grid-area: kicker;
  align-self: end;
  justify-self: end;
  width: calc(100% - (var(--nw-legal-side-pad) * 2));
  box-sizing: border-box;
  margin: 0 var(--nw-legal-side-pad) 1.8rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  color: rgba(255, 255, 255, 0.92) !important;
}

.nw-legal-header {
  grid-area: header;
  display: grid;
  gap: 0.9rem;
  align-content: start;
  justify-items: end;
  width: calc(100% - (var(--nw-legal-side-pad) * 2));
  box-sizing: border-box;
  justify-self: end;
  padding: 2rem var(--nw-legal-side-pad) 3rem 0;
  color: var(--nw-text-light);
}

.nw-legal-main {
  grid-area: main;
  display: grid;
  gap: 1.25rem;
  align-content: start;
  width: calc(100% - (var(--nw-legal-side-pad) * 2));
  box-sizing: border-box;
  justify-self: start;
  padding: 2rem 0 4rem var(--nw-legal-side-pad);
  color: var(--nw-text-dark);
}

.nw-legal-title {
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: right;
  color: rgba(255, 255, 255, 0.96) !important;
}

.nw-legal-meta {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82) !important;
  text-align: right;
}

.nw-legal-summary,
.nw-legal-copy {
  font-size: 0.98rem;
  line-height: 1.95;
  color: rgba(15, 18, 32, 0.82);
}

.nw-legal-summary {
  width: 100%;
  max-width: none;
}

.nw-legal-tab-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 0.3rem;
}

.nw-legal-tab {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(15, 18, 32, 0.12);
  color: rgba(15, 18, 32, 0.76);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.nw-legal-tab.active {
  border-color: rgba(38, 78, 138, 0.28);
  color: var(--nw-blue);
  background: rgba(38, 78, 138, 0.06);
}

.nw-legal-section {
  display: grid;
  gap: 0.7rem;
  width: 100%;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(15, 18, 32, 0.08);
}

.nw-legal-overview-card {
  gap: 0.95rem;
}

.nw-legal-open-link {
  justify-self: start;
}

.nw-legal-section-title {
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--nw-text-dark);
}

.nw-legal-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.2rem;
}

.nw-account-surface {
  width: 100%;
  display: grid;
  gap: 1.25rem;
}

.nw-account-shell-content {
  --nw-account-side-pad: clamp(2rem, 4vw, 4rem);
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: var(--nw-active-banner-height) minmax(calc(100vh - var(--nw-active-banner-height)), auto);
  grid-template-areas:
    "kicker spacer"
    "header main";
  width: 100%;
  min-height: 100vh;
}

.nw-account-shell-kicker {
  grid-area: kicker;
  align-self: end;
  justify-self: end;
  width: calc(100% - (var(--nw-account-side-pad) * 2));
  box-sizing: border-box;
  margin: 0 var(--nw-account-side-pad) 1.8rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  color: rgba(255, 255, 255, 0.92) !important;
}

.nw-account-shell-header {
  grid-area: header;
  display: grid;
  gap: 0.9rem;
  align-content: start;
  justify-items: end;
  width: calc(100% - (var(--nw-account-side-pad) * 2));
  box-sizing: border-box;
  justify-self: end;
  padding: 2rem var(--nw-account-side-pad) 3rem 0;
  color: var(--nw-text-light);
}

.nw-account-shell-title {
  max-width: 11ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: right;
  color: rgba(255, 255, 255, 0.96) !important;
}

.nw-account-shell-meta {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82) !important;
  text-align: right;
}

.nw-account-shell-main {
  grid-area: main;
  display: grid;
  gap: 1.25rem;
  align-content: start;
  width: calc(100% - (var(--nw-account-side-pad) * 2));
  box-sizing: border-box;
  justify-self: start;
  padding: 2rem 0 4rem var(--nw-account-side-pad);
  color: var(--nw-text-dark);
}

.nw-account-shell-summary,
.nw-account-page-copy {
  font-size: 0.98rem;
  line-height: 1.95;
  color: rgba(15, 18, 32, 0.82);
}

.nw-account-shell-summary {
  width: 100%;
  max-width: none;
}

.nw-account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.nw-account-column {
  display: grid;
  gap: 1rem;
}

.nw-account-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(15, 18, 32, 0.1);
  box-shadow: 0 18px 34px rgba(15, 18, 32, 0.08);
  overflow: hidden;
}

.nw-account-card-header {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.2rem 1.05rem;
  background: var(--nw-blue);
  color: rgba(255, 255, 255, 0.96);
}

.nw-account-card-title {
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.96) !important;
}

.nw-account-card-subtitle {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8) !important;
}

.nw-account-card-body {
  display: grid;
  gap: 0.95rem;
  padding: 1.15rem 1.2rem 1.25rem;
  background: var(--nw-light-bottom);
  color: var(--nw-text-dark);
}

.nw-account-copy {
  font-size: 0.96rem;
  line-height: 1.8;
  color: rgba(15, 18, 32, 0.78);
}

.nw-account-field {
  display: grid;
  gap: 0.18rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(15, 18, 32, 0.08);
}

.nw-account-field:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.nw-account-field-label {
  font-size: 0.72rem;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 18, 32, 0.52) !important;
}

.nw-account-field-value {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(15, 18, 32, 0.92) !important;
  overflow-wrap: anywhere;
}

.nw-account-inline-card {
  display: grid;
  gap: 0.55rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(15, 18, 32, 0.08);
}

.nw-account-inline-title {
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 600;
  color: var(--nw-text-dark) !important;
}

.nw-account-inline-copy {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(15, 18, 32, 0.7) !important;
}

.nw-account-metrics-table {
  width: 100%;
  border-collapse: collapse;
}

.nw-account-metrics-row + .nw-account-metrics-row {
  border-top: 1px solid rgba(15, 18, 32, 0.08);
}

.nw-account-metrics-label-cell,
.nw-account-metrics-value-cell {
  padding: 0.8rem 0;
  vertical-align: top;
}

.nw-account-metrics-label-cell {
  width: 68%;
  text-align: left;
}

.nw-account-metrics-value-cell {
  width: 32%;
  text-align: right;
}

.nw-account-metrics-label {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(15, 18, 32, 0.68) !important;
}

.nw-account-metrics-value {
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 600;
  color: rgba(15, 18, 32, 0.94) !important;
}

.nw-account-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-top: 0.2rem;
}

.nw-account-button.q-btn {
  min-height: 2.7rem;
  padding: 0 0.95rem;
  border-radius: 0;
  box-shadow: none;
}

.nw-account-button-primary.q-btn {
  background: var(--nw-blue) !important;
  color: rgba(255, 255, 255, 0.96) !important;
}

.nw-account-button-secondary.q-btn {
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(15, 18, 32, 0.14);
  color: rgba(15, 18, 32, 0.82) !important;
}

.nw-account-button-danger.q-btn {
  background: rgba(241, 20, 0, 0.08) !important;
  border: 1px solid rgba(241, 20, 0, 0.22);
  color: #8f1709 !important;
}

.nw-account-button.q-btn.q-btn--outline:before,
.nw-account-button.q-btn:before {
  display: none;
}

.nw-account-notice {
  border-color: rgba(18, 128, 78, 0.2);
}

.nw-account-notice .nw-account-card-header {
  background: #2c7a57;
}

.nw-account-notice .nw-account-card-body {
  background: #edf8f1;
}

@media (max-width: 1100px) {
  .nw-home-wordmark {
    font-size: clamp(3.5rem, 9vw, 7rem);
  }

  .nw-page-controls {
    right: 0.7rem;
  }

  .nw-feature-strip {
    width: min(62rem, calc(100vw - 4rem));
    gap: 1.8rem;
  }

  .nw-feature h2 {
    max-width: 9ch;
  }
}

@media (max-width: 760px) {
  .nw-page-controls {
    top: 0.7rem;
    right: 0.7rem;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .nw-language-switcher-btn {
    min-width: 3.3rem;
    height: 2.6rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 860px) {
  html,
  body,
  .nw-split-landing,
  .nw-split-shell {
    background: var(--nw-light-top);
  }

  .nw-split-column {
    position: static;
    width: 100%;
  }

  .nw-split-top {
    height: 0;
    min-height: 0;
  }

  .nw-split-bottom {
    height: auto;
    min-height: 0;
  }

  .nw-split-top-dark,
  .nw-split-bottom-dark,
  .nw-split-top-light,
  .nw-split-bottom-light {
    background: transparent;
  }

  .nw-wave-banner {
    position: relative;
    height: 15rem;
  }

  .nw-home-wordmark,
  .nw-detail-wordmark {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    padding: 1rem 1rem 0.5rem;
    background: #ffffff;
    text-align: center;
    font-size: clamp(2rem, 9vw, 4.25rem);
  }

  .nw-wordmark-nexus,
  .nw-wordmark-wave {
    position: static !important;
    display: inline !important;
    padding: 0 !important;
  }

  .nw-page-menu {
    top: 0.65rem;
    left: auto;
    right: 0.85rem;
  }

  .nw-page-menu-group-summary {
    padding-right: 0.95rem;
  }

  .nw-feature-strip {
    position: relative;
    top: auto !important;
    left: auto;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    padding: 2rem 1.25rem;
    transform: none;
  }

  .nw-feature-dark {
    color: var(--nw-text-light);
  }

  .nw-cta-bridge {
    position: relative;
    top: auto;
    left: auto;
    width: calc(100% - 2rem);
    margin: 0 auto 2rem;
    transform: none;
  }

  .nw-legal-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "kicker"
      "header"
      "main";
    min-height: 0;
  }

  .nw-story-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "kicker"
      "header"
      "main";
    min-height: 0;
  }

  .nw-story-kicker {
    width: auto;
    justify-self: start;
    margin: 1rem 1rem 0;
    text-align: left;
    color: rgba(15, 18, 32, 0.56) !important;
  }

  .nw-story-header {
    width: auto;
    justify-items: start;
    justify-self: stretch;
    padding: 1.4rem 1rem 1rem;
    color: var(--nw-text-dark);
  }

  .nw-story-icon {
    width: 5rem;
    height: 5rem;
    justify-content: flex-start;
  }

  .nw-story-icon svg {
    width: 4.2rem;
    height: 4.2rem;
  }

  .nw-story-title {
    text-align: left;
    color: rgba(15, 18, 32, 0.96) !important;
  }

  .nw-story-main {
    width: auto;
    justify-self: stretch;
    padding: 1rem 1rem 2rem;
  }

  .nw-legal-kicker {
    width: auto;
    justify-self: start;
    margin: 1rem 1rem 0;
    text-align: left;
    color: rgba(15, 18, 32, 0.56) !important;
  }

  .nw-legal-header {
    width: auto;
    justify-items: start;
    justify-self: stretch;
    padding: 1.4rem 1rem 1rem;
    color: var(--nw-text-dark);
  }

  .nw-legal-title,
  .nw-legal-meta {
    text-align: left;
  }

  .nw-legal-meta {
    color: rgba(15, 18, 32, 0.56) !important;
  }

  .nw-legal-main {
    width: auto;
    justify-self: stretch;
    padding: 1rem 1rem 2rem;
  }

  .nw-account-surface {
    width: 100%;
  }

  .nw-account-shell-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "kicker"
      "header"
      "main";
    min-height: 0;
  }

  .nw-account-shell-kicker {
    width: auto;
    justify-self: start;
    margin: 1rem 1rem 0;
    text-align: left;
    color: rgba(15, 18, 32, 0.56) !important;
  }

  .nw-account-shell-header {
    width: auto;
    justify-items: start;
    justify-self: stretch;
    padding: 1.4rem 1rem 1rem;
    color: var(--nw-text-dark);
  }

  .nw-account-shell-title,
  .nw-account-shell-meta {
    text-align: left;
  }

  .nw-account-shell-meta {
    color: rgba(15, 18, 32, 0.56) !important;
  }

  .nw-account-shell-main {
    width: auto;
    justify-self: stretch;
    padding: 1rem 1rem 2rem;
  }

  .nw-account-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nw-feature-strip {
    grid-template-columns: 1fr;
  }
}
