:root {
  --nm-black: #09090d;
  --nm-black-soft: #14151b;
  --nm-white: #ffffff;
  --nm-soft: #f5f5f8;
  --nm-line: #dadbe6;
  --nm-line-strong: #c9cada;
  --nm-purple: #5d46d8;
  --nm-purple-2: #8777ff;
  --nm-text: #0f1117;
  --nm-text-soft: #5d6272;
  --nm-radius: 24px;
  --nm-radius-sm: 18px;
  --nm-shadow-soft: 0 18px 60px rgba(16, 18, 27, 0.08);
  --nm-shadow-card: 0 14px 40px rgba(16, 18, 27, 0.12);
  --nm-shell: min(1240px, calc(100% - 32px));
  --nm-shell-narrow: min(860px, calc(100% - 32px));
  --nm-transition: 260ms cubic-bezier(.2, .7, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--nm-text);
  background: var(--nm-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.admin-bar .nm-header {
  top: 32px;
}

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

svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--nm-transition), opacity var(--nm-transition), transform var(--nm-transition);
}

button,
input,
textarea,
select {
  font: inherit;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--nm-line);
  border-radius: 18px;
  padding: 14px 16px;
  background: #fff;
  color: var(--nm-text);
  transition: border-color var(--nm-transition), box-shadow var(--nm-transition);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(93, 70, 216, 0.45);
  box-shadow: 0 0 0 4px rgba(93, 70, 216, 0.10);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 0.65em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.nm-shell {
  width: var(--nm-shell);
  margin-inline: auto;
}

.nm-main {
  min-height: 60vh;
}

.nm-page-shell {
  padding: 140px 0 80px;
}

.nm-page-shell--shop {
  padding-top: 148px;
}

.nm-page-header {
  margin-bottom: 34px;
}

.nm-entry-title {
  font-size: clamp(2.1rem, 4vw, 4rem);
  margin-bottom: 0.2em;
}

.nm-entry-content > * + * {
  margin-top: 1.2em;
}

.nm-entry-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--nm-text-soft);
  font-size: 0.95rem;
}

.nm-entry-content ul,
.nm-entry-content ol {
  padding-left: 1.2rem;
}

.nm-search-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 18px;
  max-width: 720px;
}

.nm-site-wrap {
  overflow: clip;
}

.nm-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  padding: 18px 0;
  transition: background var(--nm-transition), border-color var(--nm-transition), box-shadow var(--nm-transition), backdrop-filter var(--nm-transition), padding var(--nm-transition);
}

.nm-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(16, 18, 27, 0.08);
  box-shadow: 0 10px 30px rgba(16, 18, 27, 0.08);
  backdrop-filter: blur(18px);
  padding: 12px 0;
}

.nm-header__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 58px;
}

.nm-site-brand {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nm-logo {
  height: 38px;
  width: auto;
}

.nm-logo--light {
  display: none;
}

.home .nm-header:not(.is-scrolled) .nm-logo--dark,
body:not(.home) .nm-logo--dark,
.nm-header.is-scrolled .nm-logo--dark {
  display: block;
}

.home .nm-header:not(.is-scrolled) .nm-logo--light {
  display: block;
}

.home .nm-header:not(.is-scrolled) .nm-logo--dark {
  display: none;
}

.nm-nav {
  justify-self: center;
}

.nm-nav .menu,
.nm-footer .menu {
  list-style: none;
  display: flex;
  gap: 22px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nm-nav .menu a,
.nm-footer .menu a {
  position: relative;
  font-weight: 600;
  color: inherit;
}

.nm-nav .menu a::after,
.nm-footer .menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--nm-purple), var(--nm-purple-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--nm-transition);
}

.nm-nav .menu a:hover::after,
.nm-footer .menu a:hover::after {
  transform: scaleX(1);
}

.nm-header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.nm-button,
button,
input[type="submit"],
.wp-element-button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--nm-transition), box-shadow var(--nm-transition), background var(--nm-transition), color var(--nm-transition), border-color var(--nm-transition);
}

.nm-button::before,
button::before,
input[type="submit"]::before,
.wp-element-button::before,
.wp-block-button__link::before {
  content: "";
  position: absolute;
  inset: -20% auto -20% -40%;
  width: 36%;
  transform: skewX(-28deg);
  background: rgba(255, 255, 255, 0.18);
  transition: transform 420ms cubic-bezier(.2,.7,.2,1), opacity var(--nm-transition);
  opacity: 0;
}

.nm-button:hover::before,
button:hover::before,
input[type="submit"]:hover::before,
.wp-element-button:hover::before,
.wp-block-button__link:hover::before {
  opacity: 1;
  transform: translateX(240%) skewX(-28deg);
}

.nm-button:hover,
button:hover,
input[type="submit"]:hover,
.wp-element-button:hover,
.wp-block-button__link:hover {
  transform: translateY(-2px);
}

.nm-button--primary,
button,
input[type="submit"],
.wp-element-button,
.wp-block-button__link {
  background: linear-gradient(135deg, var(--nm-purple) 0%, var(--nm-purple-2) 100%);
  color: #fff;
  box-shadow: 0 16px 34px rgba(93, 70, 216, 0.24);
}

.nm-button--ghost {
  background: rgba(255, 255, 255, 0.64);
  border-color: rgba(16, 18, 27, 0.12);
  color: var(--nm-text);
  backdrop-filter: blur(10px);
}

.nm-button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nm-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--nm-text);
  background: rgba(93, 70, 216, 0.09);
  border: 1px solid rgba(93, 70, 216, 0.16);
}

.nm-chip--purple {
  color: #fff;
  background: rgba(93, 70, 216, 0.18);
  border-color: rgba(255, 255, 255, 0.12);
}

.nm-section {
  position: relative;
  padding: clamp(72px, 9vw, 118px) 0;
}

.nm-section--dark {
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(135, 119, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #07070b 0%, #11121a 100%);
}

.nm-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(135, 119, 255, 0.12) 49%, transparent 54%),
    linear-gradient(315deg, transparent 0 75%, rgba(255, 255, 255, 0.03) 80%, transparent 85%);
  pointer-events: none;
}

.nm-section--light {
  background:
    radial-gradient(circle at 90% 20%, rgba(135, 119, 255, 0.08), transparent 20%),
    var(--nm-soft);
}

.nm-section--cta {
  background: linear-gradient(180deg, var(--nm-soft) 0%, #ececf5 100%);
}

.nm-section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.nm-section-heading p {
  color: var(--nm-text-soft);
  font-size: 1.08rem;
}

.nm-hero {
  padding-top: 180px;
  padding-bottom: 110px;
}

.nm-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  gap: 44px;
  align-items: center;
}

.nm-hero__content p {
  max-width: 720px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.5rem;
}

.nm-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.nm-kpi {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
}

.nm-kpi strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 8px;
}

.nm-kpi span {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

.nm-hero__visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.nm-hero__visual::before {
  content: "";
  position: absolute;
  width: 80%;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(135, 119, 255, 0.34), transparent 66%);
  filter: blur(24px);
}

.nm-device {
  position: relative;
  width: min(100%, 580px);
  border-radius: 36px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    linear-gradient(145deg, #151725, #0c0d14);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.36);
  overflow: hidden;
  transition: transform var(--nm-transition), box-shadow var(--nm-transition);
}

.nm-device::before {
  content: "";
  position: absolute;
  inset: -30% auto auto 52%;
  width: 180px;
  height: 180%;
  transform: skewX(-28deg);
  background: linear-gradient(180deg, rgba(135, 119, 255, 0.15), transparent 80%);
  opacity: 0.75;
}

.nm-device__screen {
  position: relative;
  height: 122px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(93, 70, 216, 0.34), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 18px 0;
  overflow: hidden;
}

.nm-device__screen-label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.12em;
  color: #fff;
}

.nm-device__screen-wave {
  position: absolute;
  inset: auto 0 0 0;
  height: 54px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 0, rgba(255,255,255,0.16) 33%, rgba(255,255,255,0.04) 100%);
  clip-path: polygon(0 64%, 12% 42%, 23% 71%, 35% 28%, 48% 56%, 60% 24%, 73% 62%, 85% 32%, 100% 55%, 100% 100%, 0 100%);
}

.nm-device__knobs {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin: 18px 0;
}

.nm-device__knobs span {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.22), transparent 30%),
    linear-gradient(145deg, #1d1f2d, #0d0f18);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 6px 18px rgba(255,255,255,0.06);
}

.nm-device__keys {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.nm-device__keys span {
  min-height: 74px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 2px 14px rgba(255,255,255,0.04);
}

.nm-device__glow {
  position: absolute;
  inset: auto -10% -18% auto;
  width: 240px;
  height: 180px;
  background: radial-gradient(circle, rgba(93, 70, 216, 0.35), transparent 68%);
  filter: blur(20px);
}

.nm-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.nm-feature-grid--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nm-feature-card {
  position: relative;
  border-radius: 28px;
  padding: 28px;
  overflow: hidden;
  transition: transform var(--nm-transition), box-shadow var(--nm-transition), border-color var(--nm-transition);
  transform-style: preserve-3d;
}

.nm-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0 46%, rgba(93, 70, 216, 0.10) 50%, transparent 54%);
  pointer-events: none;
}

.nm-feature-card:hover,
.nm-card-post:hover {
  box-shadow: var(--nm-shadow-card);
}

.nm-feature-card--light {
  background: #fff;
  border: 1px solid rgba(16, 18, 27, 0.08);
  box-shadow: var(--nm-shadow-soft);
}

.nm-feature-card__icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--nm-purple), var(--nm-purple-2));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
}

.nm-split-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.nm-split-panel__content,
.nm-split-panel__visual {
  border-radius: 32px;
  padding: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}

.nm-split-panel__content p,
.nm-split-panel__content li {
  color: rgba(255,255,255,0.76);
}

.nm-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}

.nm-list li {
  position: relative;
  padding-left: 22px;
}

.nm-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--nm-purple), var(--nm-purple-2));
  transform: rotate(45deg);
  border-radius: 2px;
}

.nm-display-stack {
  display: grid;
  gap: 16px;
  height: 100%;
}

.nm-display-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.09);
}

.nm-display-card span {
  display: block;
  color: rgba(255,255,255,0.64);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.nm-display-card strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.35;
}

.nm-display-card--accent {
  background: linear-gradient(135deg, rgba(93, 70, 216, 0.5), rgba(135, 119, 255, 0.2));
}

.nm-cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(135deg, #ffffff 0%, #f2efff 100%);
  border: 1px solid rgba(93, 70, 216, 0.12);
  border-radius: 32px;
  box-shadow: var(--nm-shadow-soft);
  position: relative;
  overflow: hidden;
}

.nm-cta-band::after {
  content: "";
  position: absolute;
  inset: -10% auto -10% 58%;
  width: 140px;
  transform: skewX(-28deg);
  background: linear-gradient(180deg, rgba(93, 70, 216, 0.10), rgba(135, 119, 255, 0.02));
}

.nm-shop-preview .products {
  margin-top: 0;
}

.nm-card-post {
  background: #fff;
  border-radius: 26px;
  border: 1px solid rgba(16, 18, 27, 0.08);
  overflow: hidden;
  box-shadow: var(--nm-shadow-soft);
}

.nm-card-post__inner {
  display: block;
  height: 100%;
}

.nm-card-post__thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.nm-card-post__body {
  padding: 22px;
}

.nm-card-post__title {
  font-size: 1.45rem;
  margin-bottom: 0.5em;
}

.nm-card-post__excerpt {
  color: var(--nm-text-soft);
}

.nm-post-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nm-post-thumbnail {
  margin-bottom: 24px;
  border-radius: 28px;
  overflow: hidden;
}

.nm-post-thumbnail img {
  width: 100%;
  border-radius: inherit;
}

.nm-empty-state,
.nm-not-found {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
  padding: 160px 0 120px;
}

.nm-footer {
  color: rgba(255,255,255,0.78);
  background:
    linear-gradient(135deg, #0b0b10 0%, #12131c 100%);
  padding: 80px 0 32px;
  position: relative;
}

.nm-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0 48%, rgba(135, 119, 255, 0.10) 50%, transparent 54%);
  pointer-events: none;
}

.nm-footer h3 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.95rem;
}

.nm-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 28px;
  position: relative;
}

.nm-footer__brand p,
.nm-footer__meta li {
  color: rgba(255,255,255,0.68);
}

.nm-footer__meta ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.nm-footer__bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}

.nm-menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(16, 18, 27, 0.1);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 24px rgba(16, 18, 27, 0.08);
}

.nm-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--nm-black);
  margin: 4px auto;
}

.nm-menu-toggle .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.nm-focused-main {
  min-height: 100vh;
}

.home .nm-header:not(.is-scrolled) .nm-nav,
.home .nm-header:not(.is-scrolled) .nm-header__actions {
  color: #fff;
}

.home .nm-header:not(.is-scrolled) .nm-header__actions .nm-button--ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

body.error404 .nm-header,
body.search-no-results .nm-header {
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(16, 18, 27, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(16,18,27,0.08);
}

@media (max-width: 1180px) {
  .nm-hero__grid,
  .nm-split-panel,
  .nm-footer__grid,
  .nm-cta-band {
    grid-template-columns: 1fr;
  }

  .nm-feature-grid--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nm-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nm-hero__visual {
    min-height: 0;
  }
}

@media (max-width: 960px) {
  body.admin-bar .nm-header {
    top: 46px;
  }

  .nm-header__row {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nm-nav {
    position: fixed;
    inset: 84px 16px auto;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(16,18,27,0.08);
    border-radius: 26px;
    padding: 18px;
    box-shadow: 0 24px 60px rgba(16,18,27,0.12);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--nm-transition), transform var(--nm-transition);
  }

  .nm-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nm-nav .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nm-header__actions {
    display: none;
  }

  .nm-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  body.nm-menu-open {
    overflow: hidden;
  }

  .nm-feature-grid,
  .nm-feature-grid--wide,
  .nm-post-grid,
  .nm-kpis {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .nm-page-shell {
    padding-top: 120px;
  }

  .nm-hero {
    padding-top: 148px;
    padding-bottom: 72px;
  }

  .nm-hero__grid {
    gap: 28px;
  }

  .nm-device {
    padding: 20px;
    border-radius: 28px;
  }

  .nm-device__screen {
    height: 102px;
  }

  .nm-device__keys span {
    min-height: 58px;
    border-radius: 16px;
    font-size: 0.92rem;
  }

  .nm-split-panel__content,
  .nm-split-panel__visual,
  .nm-feature-card,
  .nm-cta-band {
    padding: 24px;
    border-radius: 24px;
  }

  .nm-button-row {
    width: 100%;
  }

  .nm-button,
  button,
  input[type="submit"],
  .wp-element-button,
  .wp-block-button__link {
    width: 100%;
  }

  .nm-search-inline {
    grid-template-columns: 1fr;
  }

  .nm-footer {
    padding-top: 56px;
  }

  .nm-logo {
    height: 30px;
  }
}


/* =============================
   PREMIUM REFINEMENT V1.1
   ============================= */
:root {
  --nm-header-top: 18px;
  --nm-header-bg: linear-gradient(180deg, rgba(9, 9, 13, 0.96) 0%, rgba(18, 19, 28, 0.88) 100%);
  --nm-dark-surface: linear-gradient(180deg, rgba(12, 12, 17, 0.98) 0%, rgba(18, 19, 28, 0.95) 100%);
  --nm-premium-border: rgba(255, 255, 255, 0.08);
}

body {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

.nm-site-wrap {
  overflow: clip;
  isolation: isolate;
}

.nm-header {
  top: var(--nm-header-top);
  padding: 0;
  pointer-events: none;
}

body.admin-bar .nm-header {
  top: calc(var(--nm-header-top) + 32px);
}

.nm-header .nm-shell {
  width: min(1280px, calc(100% - 28px));
  position: relative;
  padding: 16px 22px;
  border-radius: 30px;
  background: var(--nm-header-bg);
  border: 1px solid var(--nm-premium-border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  pointer-events: auto;
  overflow: hidden;
}

.nm-header .nm-shell::before {
  content: '';
  position: absolute;
  inset: -42% auto auto -8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(135, 119, 255, 0.42) 0%, rgba(135, 119, 255, 0.08) 38%, transparent 72%);
  filter: blur(22px);
  pointer-events: none;
}

.nm-header .nm-shell::after {
  content: '';
  position: absolute;
  inset: -30% 18% -40% auto;
  width: 160px;
  transform: skewX(-30deg);
  background: linear-gradient(180deg, rgba(135, 119, 255, 0.24) 0%, rgba(135, 119, 255, 0) 100%);
  pointer-events: none;
}

.nm-header.is-scrolled .nm-shell {
  padding: 12px 18px;
  background: linear-gradient(180deg, rgba(8, 8, 12, 0.98) 0%, rgba(16, 17, 24, 0.96) 100%);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nm-header__row {
  min-height: 68px;
  gap: 26px;
  position: relative;
  z-index: 1;
}

.nm-site-brand {
  min-width: 0;
}

.nm-logo {
  height: 48px;
  width: auto;
  max-width: min(100%, 360px);
}

.nm-logo--dark {
  display: none !important;
}

.nm-logo--light {
  display: block !important;
}

.nm-nav .menu a,
.nm-footer .menu a {
  font-weight: 650;
  letter-spacing: -0.01em;
}

.nm-header .nm-nav .menu a {
  color: rgba(255, 255, 255, 0.78);
}

.nm-header .nm-nav .menu a:hover {
  color: #fff;
}

.nm-header__actions {
  gap: 12px;
}

.nm-button,
button,
input[type="submit"],
.wp-element-button,
.wp-block-button__link,
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce #respond input#submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(16, 18, 27, 0.10);
}

.nm-button::before,
button::before,
input[type="submit"]::before,
.wp-element-button::before,
.wp-block-button__link::before,
.woocommerce .button::before,
.woocommerce button.button::before,
.woocommerce input.button::before,
.woocommerce a.button::before,
.woocommerce #respond input#submit::before {
  content: '';
  position: absolute;
  inset: -60% auto -60% -70%;
  width: 42%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.14) 36%, rgba(255,255,255,0.58) 50%, rgba(255,255,255,0.14) 64%, rgba(255,255,255,0) 100%);
  transform: skewX(-26deg) translateX(0);
  opacity: 0;
  transition: transform 620ms cubic-bezier(.2, .7, .2, 1), opacity 220ms ease;
  filter: blur(1px);
  pointer-events: none;
  z-index: -1;
}

.nm-button::after,
button::after,
input[type="submit"]::after,
.wp-element-button::after,
.wp-block-button__link::after,
.woocommerce .button::after,
.woocommerce button.button::after,
.woocommerce input.button::after,
.woocommerce a.button::after,
.woocommerce #respond input#submit::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.nm-button:hover::before,
button:hover::before,
input[type="submit"]:hover::before,
.wp-element-button:hover::before,
.wp-block-button__link:hover::before,
.woocommerce .button:hover::before,
.woocommerce button.button:hover::before,
.woocommerce input.button:hover::before,
.woocommerce a.button:hover::before,
.woocommerce #respond input#submit:hover::before {
  opacity: 1;
  transform: skewX(-26deg) translateX(360%);
}

.nm-button:hover,
button:hover,
input[type="submit"]:hover,
.wp-element-button:hover,
.wp-block-button__link:hover,
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover,
.woocommerce #respond input#submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(16, 18, 27, 0.14);
}

.nm-button--primary,
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce #respond input#submit {
  background: linear-gradient(135deg, #5d46d8 0%, #7762f2 52%, #8d7cff 100%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(93, 70, 216, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nm-button--ghost {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(245, 246, 250, 0.88) 100%);
  border-color: rgba(16, 18, 27, 0.08);
  color: var(--nm-text);
  box-shadow: 0 12px 30px rgba(16, 18, 27, 0.08);
  backdrop-filter: blur(10px);
}

.nm-header .nm-button--ghost,
.nm-section--dark .nm-button--ghost,
.nm-footer .nm-button--ghost {
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(255,255,255,0.10);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.nm-chip {
  background: linear-gradient(180deg, rgba(93, 70, 216, 0.12) 0%, rgba(93, 70, 216, 0.07) 100%);
  border-color: rgba(93, 70, 216, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.nm-chip--purple {
  background: linear-gradient(180deg, rgba(121, 101, 255, 0.22) 0%, rgba(93, 70, 216, 0.16) 100%);
  border-color: rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10);
}

.nm-section--dark {
  background: radial-gradient(circle at 15% 15%, rgba(135, 119, 255, 0.22), transparent 24%), linear-gradient(135deg, #07070b 0%, #10111a 52%, #12131b 100%);
}

.nm-section--light {
  background: radial-gradient(circle at 88% 18%, rgba(135, 119, 255, 0.10), transparent 18%), linear-gradient(180deg, #ffffff 0%, #f6f6fa 100%);
}

.nm-section--cta {
  background: linear-gradient(180deg, #f4f3f9 0%, #ececf4 100%);
}

.nm-hero {
  padding-top: 212px;
  padding-bottom: 118px;
}

.nm-hero__content h1 {
  max-width: 11.5ch;
}

.nm-hero__content p {
  color: rgba(255,255,255,0.78);
}

.nm-hero__visual::before {
  width: 86%;
  background: radial-gradient(circle, rgba(135, 119, 255, 0.38) 0%, rgba(135, 119, 255, 0.12) 36%, transparent 72%);
  filter: blur(28px);
}

.nm-device {
  background: linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)), linear-gradient(145deg, #151725 0%, #0b0c12 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 50px 120px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255,255,255,0.02) inset;
}

.nm-device__screen {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.10), 0 18px 40px rgba(93, 70, 216, 0.16);
}

.nm-device__keys span,
.nm-kpi,
.nm-split-panel__content,
.nm-split-panel__visual,
.nm-display-card {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nm-feature-card--light,
.nm-card-post,
.nm-cta-band,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.single-product div.product,
.woocommerce-tabs .panel,
.woocommerce-cart form.woocommerce-cart-form,
.woocommerce-checkout form.checkout,
.woocommerce .col2-set,
.woocommerce-checkout-review-order,
.woocommerce-cart .cart_totals,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
  border-color: rgba(16, 18, 27, 0.07);
  box-shadow: 0 18px 50px rgba(16, 18, 27, 0.08);
}

.nm-feature-card--light::after,
.nm-cta-band::before,
.woocommerce ul.products li.product::after,
.single-product .product::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.70);
  pointer-events: none;
}

.nm-feature-card__icon {
  box-shadow: 0 14px 30px rgba(93, 70, 216, 0.22), inset 0 1px 0 rgba(255,255,255,0.20);
}

.nm-cta-band {
  background: linear-gradient(135deg, #ffffff 0%, #f4f2ff 100%);
  overflow: hidden;
}

.nm-cta-band::after {
  width: 180px;
  background: linear-gradient(180deg, rgba(93, 70, 216, 0.14), rgba(135, 119, 255, 0.03));
}

.nm-post-thumbnail,
.woocommerce ul.products li.product a img,
.woocommerce div.product div.images img {
  box-shadow: 0 14px 34px rgba(16, 18, 27, 0.08);
}

.nm-footer {
  padding: 96px 0 40px;
  background: radial-gradient(circle at 18% 18%, rgba(135, 119, 255, 0.16), transparent 24%), linear-gradient(135deg, #09090d 0%, #13141d 100%);
}

.nm-footer::after {
  content: '';
  position: absolute;
  right: -6%;
  bottom: -16%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(93, 70, 216, 0.42) 0%, rgba(93, 70, 216, 0.12) 38%, transparent 72%);
  filter: blur(28px);
  pointer-events: none;
}

.nm-footer .nm-shell {
  position: relative;
  padding: 42px;
  border-radius: 38px;
  background: var(--nm-dark-surface);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}

.nm-footer .nm-shell::before {
  content: '';
  position: absolute;
  inset: auto 14% -28% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(135,119,255,0.24), transparent 72%);
  filter: blur(14px);
  pointer-events: none;
}

.nm-footer .nm-shell::after {
  content: '';
  position: absolute;
  inset: -18% 8% -36% auto;
  width: 180px;
  transform: skewX(-30deg);
  background: linear-gradient(180deg, rgba(135,119,255,0.18) 0%, rgba(135,119,255,0.02) 100%);
  pointer-events: none;
}

.nm-footer__grid,
.nm-footer__bottom {
  position: relative;
  z-index: 1;
}

.nm-footer__grid > * {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 24px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.nm-footer__brand .nm-logo {
  height: 42px;
  max-width: 280px;
  margin-bottom: 18px;
}

.nm-footer__brand p,
.nm-footer__meta li,
.nm-footer__bottom p {
  color: rgba(255,255,255,0.72);
}

.nm-footer__bottom {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nm-menu-toggle {
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.05) 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.nm-menu-toggle span {
  background: #fff;
}

.home .nm-header:not(.is-scrolled) .nm-nav,
.home .nm-header:not(.is-scrolled) .nm-header__actions {
  color: #fff;
}

body.error404 .nm-header .nm-shell,
body.search-no-results .nm-header .nm-shell {
  background: linear-gradient(180deg, rgba(8, 8, 12, 0.98) 0%, rgba(16, 17, 24, 0.96) 100%);
  border-color: rgba(255,255,255,0.08);
}

@media (max-width: 1180px) {
  .nm-header .nm-shell {
    width: min(100%, calc(100% - 22px));
  }

  .nm-footer .nm-shell {
    padding: 34px;
  }
}

@media (max-width: 960px) {
  body.admin-bar .nm-header {
    top: calc(var(--nm-header-top) + 46px);
  }

  .nm-header .nm-shell {
    padding: 14px 16px;
    border-radius: 24px;
  }

  .nm-header__row {
    gap: 14px;
    min-height: 58px;
  }

  .nm-logo {
    height: 40px;
    max-width: 240px;
  }

  .nm-nav {
    inset: 106px 12px auto;
    background: linear-gradient(180deg, rgba(10,10,14,0.98) 0%, rgba(18,19,28,0.96) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0,0,0,0.32);
  }

  .nm-nav .menu a {
    color: rgba(255,255,255,0.82);
  }
}

@media (max-width: 767px) {
  .nm-header {
    top: 10px;
  }

  .nm-page-shell {
    padding-top: 132px;
  }

  .nm-hero {
    padding-top: 162px;
    padding-bottom: 76px;
  }

  .nm-logo {
    height: 34px;
    max-width: 200px;
  }

  .nm-header .nm-shell {
    width: calc(100% - 16px);
    padding: 12px 14px;
    border-radius: 22px;
  }

  .nm-footer {
    padding-top: 64px;
  }

  .nm-footer .nm-shell {
    width: calc(100% - 16px);
    padding: 22px;
    border-radius: 28px;
  }

  .nm-footer__grid > * {
    padding: 20px;
    border-radius: 22px;
  }
}


/* =========================================================
   Premium refinement pass v1.2
   Cleaner floating header, stronger stripe language,
   reduced gradient noise, sharper footer and buttons.
   ========================================================= */

:root {
  --nm-header-band: #f6f6f8;
  --nm-header-surface: linear-gradient(180deg, rgba(9, 9, 13, 0.985) 0%, rgba(14, 15, 22, 0.975) 100%);
  --nm-header-outline: rgba(255, 255, 255, 0.08);
  --nm-header-shadow: 0 26px 80px rgba(8, 9, 14, 0.24);
  --nm-footer-surface: linear-gradient(180deg, #09090d 0%, #11121a 100%);
  --nm-stripe-soft: rgba(135, 119, 255, 0.18);
  --nm-stripe-strong: rgba(135, 119, 255, 0.26);
}

body {
  background: #ffffff;
}

.nm-header {
  top: 0;
  padding: 14px 0 18px;
  background: transparent;
  transition: padding var(--nm-transition), filter var(--nm-transition);
}

.nm-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 112px;
  background: linear-gradient(180deg, rgba(255,255,255,0.985) 0%, rgba(255,255,255,0.985) 74%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: -1;
}

body.admin-bar .nm-header {
  top: 0;
}

body.admin-bar .nm-header::before {
  height: 144px;
}

.nm-header .nm-shell {
  position: relative;
  width: min(1280px, calc(100% - 36px));
  padding: 14px 20px;
  border-radius: 30px;
  background: var(--nm-header-surface);
  border: 1px solid var(--nm-header-outline);
  box-shadow: var(--nm-header-shadow), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.nm-header .nm-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 170px;
  background: linear-gradient(90deg, rgba(135,119,255,0.18) 0%, rgba(135,119,255,0.04) 58%, rgba(135,119,255,0) 100%);
  filter: none;
  border-radius: 30px 0 0 30px;
  pointer-events: none;
}

.nm-header .nm-shell::after {
  content: "";
  position: absolute;
  inset: -24% 17% -30% auto;
  width: 168px;
  transform: skewX(-30deg);
  background: linear-gradient(180deg, rgba(135,119,255,0.24) 0%, rgba(135,119,255,0.10) 55%, rgba(135,119,255,0.03) 100%);
  pointer-events: none;
}

.nm-header.is-scrolled {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 10px 0 14px;
}

.nm-header.is-scrolled::before {
  height: 96px;
}

.nm-header.is-scrolled .nm-shell {
  padding: 12px 18px;
  box-shadow: 0 20px 58px rgba(8, 9, 14, 0.22), inset 0 1px 0 rgba(255,255,255,0.05);
}

.nm-header__row {
  min-height: 70px;
  gap: 28px;
}

.nm-logo {
  height: 52px;
  width: auto;
  max-width: min(100%, 360px);
}

.nm-header__brand {
  display: flex;
  align-items: center;
}

.nm-header .nm-nav .menu {
  gap: 34px;
}

.nm-header .nm-nav .menu a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
  text-underline-offset: 0.24em;
}

.nm-header .nm-nav .menu a::after {
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, rgba(135,119,255,0.95), rgba(135,119,255,0.45));
}

.nm-header__actions {
  gap: 14px;
}

.nm-button,
button,
input[type="submit"],
.wp-element-button,
.wp-block-button__link,
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce #respond input#submit {
  min-height: 50px;
  padding: 0 24px;
  letter-spacing: -0.01em;
  border-radius: 999px;
}

.nm-button::before,
button::before,
input[type="submit"]::before,
.wp-element-button::before,
.wp-block-button__link::before,
.woocommerce .button::before,
.woocommerce button.button::before,
.woocommerce input.button::before,
.woocommerce a.button::before,
.woocommerce #respond input#submit::before {
  inset: -70% auto -70% -80%;
  width: 48%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.10) 28%, rgba(255,255,255,0.62) 50%, rgba(255,255,255,0.16) 68%, rgba(255,255,255,0) 100%);
  transform: skewX(-28deg) translateX(0);
  transition: transform 720ms cubic-bezier(.2, .7, .2, 1), opacity 220ms ease;
}

.nm-button:hover::before,
button:hover::before,
input[type="submit"]:hover::before,
.wp-element-button:hover::before,
.wp-block-button__link:hover::before,
.woocommerce .button:hover::before,
.woocommerce button.button:hover::before,
.woocommerce input.button:hover::before,
.woocommerce a.button:hover::before,
.woocommerce #respond input#submit:hover::before {
  transform: skewX(-28deg) translateX(345%);
}

.nm-button--primary,
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce #respond input#submit {
  background: linear-gradient(180deg, #7762f2 0%, #624ee0 100%);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 36px rgba(93, 70, 216, 0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}

.nm-button--primary:hover,
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover,
.woocommerce #respond input#submit:hover {
  box-shadow: 0 22px 44px rgba(93, 70, 216, 0.32), inset 0 1px 0 rgba(255,255,255,0.18);
}

.nm-button--ghost {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.nm-button--ghost:hover {
  background: rgba(255,255,255,0.08);
}

.nm-section--dark {
  background: #09090d;
}

.nm-section--dark::before {
  background: linear-gradient(135deg, transparent 0 74%, rgba(135,119,255,0.10) 79%, rgba(135,119,255,0.04) 88%, transparent 93%);
}

.nm-section--light {
  background: #f5f5f8;
}

.nm-section--cta {
  background: #efeff4;
}

.nm-hero__visual::before,
.nm-device__glow,
.nm-footer::after {
  display: none;
}

.nm-device::before {
  opacity: 0.55;
}

.nm-feature-card::before,
.nm-cta-band::after {
  opacity: 0.85;
}

.nm-footer {
  position: relative;
  padding: 88px 0 36px;
  background: #08090d;
}

.nm-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(132deg, transparent 0 76%, rgba(135,119,255,0.11) 82%, rgba(135,119,255,0.04) 91%, transparent 97%);
  pointer-events: none;
}

.nm-footer .nm-shell {
  position: relative;
  padding: 40px;
  border-radius: 38px;
  background: var(--nm-footer-surface);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}

.nm-footer .nm-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 220px;
  background: linear-gradient(90deg, rgba(135,119,255,0.07) 0%, rgba(135,119,255,0.02) 55%, rgba(135,119,255,0) 100%);
  pointer-events: none;
}

.nm-footer .nm-shell::after {
  content: "";
  position: absolute;
  inset: -16% 8% -32% auto;
  width: 210px;
  transform: skewX(-30deg);
  background: linear-gradient(180deg, rgba(135,119,255,0.16) 0%, rgba(135,119,255,0.08) 55%, rgba(135,119,255,0.02) 100%);
  pointer-events: none;
}

.nm-footer__grid > * {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: none;
}

.nm-footer__brand .nm-logo {
  height: 40px;
  max-width: 260px;
  margin-bottom: 18px;
}

.nm-footer__brand p,
.nm-footer__meta li,
.nm-footer__bottom p {
  color: rgba(255,255,255,0.74);
}

.nm-footer__bottom {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nm-menu-toggle {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.05);
}

.nm-menu-toggle:hover {
  background: rgba(255,255,255,0.09);
}

@media (max-width: 1180px) {
  .nm-header::before {
    height: 104px;
  }

  .nm-header .nm-shell {
    width: min(100%, calc(100% - 24px));
  }

  .nm-footer .nm-shell {
    padding: 32px;
  }
}

@media (max-width: 960px) {
  body.admin-bar .nm-header {
    top: 46px;
  }

  body.admin-bar .nm-header::before {
    height: 132px;
  }

  .nm-header {
    padding: 10px 0 14px;
  }

  .nm-header::before {
    height: 96px;
  }

  .nm-header .nm-shell {
    width: calc(100% - 16px);
    padding: 12px 14px;
    border-radius: 24px;
  }

  .nm-header .nm-shell::before {
    width: 120px;
  }

  .nm-header .nm-shell::after {
    width: 132px;
    right: 20%;
  }

  .nm-header__row {
    min-height: 60px;
    gap: 14px;
  }

  .nm-logo {
    height: 42px;
    max-width: 240px;
  }

  .nm-nav {
    top: calc(100% + 12px);
    inset-inline: 0;
    width: 100%;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(9,9,13,0.99) 0%, rgba(16,17,24,0.97) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0,0,0,0.24);
  }

  .nm-nav::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 100px;
    background: linear-gradient(90deg, rgba(135,119,255,0.12) 0%, rgba(135,119,255,0.03) 60%, transparent 100%);
    border-radius: 24px 0 0 24px;
    pointer-events: none;
  }

  .nm-nav::after {
    content: "";
    position: absolute;
    inset: 0 14% 0 auto;
    width: 94px;
    transform: skewX(-30deg);
    background: linear-gradient(180deg, rgba(135,119,255,0.16) 0%, rgba(135,119,255,0.05) 100%);
    pointer-events: none;
  }

  .nm-nav .menu a {
    color: rgba(255,255,255,0.86);
  }
}

@media (max-width: 767px) {
  .nm-header {
    top: 0;
    padding: 8px 0 12px;
  }

  .nm-header::before {
    height: 88px;
  }

  body.admin-bar .nm-header {
    top: 0;
  }

  body.admin-bar .nm-header::before {
    height: 116px;
  }

  .nm-page-shell {
    padding-top: 128px;
  }

  .nm-hero {
    padding-top: 152px;
    padding-bottom: 72px;
  }

  .nm-logo {
    height: 36px;
    max-width: 198px;
  }

  .nm-header .nm-shell {
    width: calc(100% - 14px);
    padding: 10px 12px;
    border-radius: 22px;
  }

  .nm-header .nm-shell::before {
    width: 90px;
  }

  .nm-header .nm-shell::after {
    width: 96px;
    right: 12%;
  }

  .nm-footer {
    padding-top: 56px;
  }

  .nm-footer .nm-shell {
    width: calc(100% - 16px);
    padding: 22px;
    border-radius: 28px;
  }

  .nm-footer__grid > * {
    padding: 20px;
    border-radius: 22px;
  }
}


/* =========================================================
   Header refinement pass v1.2.1
   Lighter floating header, transparent surround,
   cleaner stripe language, less visual weight.
   ========================================================= */

:root {
  --nm-header-floating-surface: linear-gradient(180deg, rgba(8, 9, 14, 0.90) 0%, rgba(11, 12, 18, 0.86) 100%);
  --nm-header-floating-outline: rgba(255, 255, 255, 0.08);
  --nm-header-floating-shadow: 0 20px 54px rgba(6, 8, 14, 0.16);
  --nm-header-floating-shadow-scrolled: 0 18px 46px rgba(6, 8, 14, 0.14);
  --nm-header-stripe: rgba(126, 107, 255, 0.16);
  --nm-header-stripe-edge: rgba(126, 107, 255, 0.07);
}

.nm-header {
  top: 18px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border: 0;
  box-shadow: none;
}

.nm-header::before {
  display: none;
}

body.admin-bar .nm-header {
  top: 50px;
}

.nm-header .nm-shell {
  position: relative;
  width: min(1280px, calc(100% - 36px));
  padding: 12px 18px;
  border-radius: 28px;
  background: var(--nm-header-floating-surface);
  border: 1px solid var(--nm-header-floating-outline);
  box-shadow: var(--nm-header-floating-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}

.nm-header .nm-shell::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 132px;
  background: linear-gradient(90deg, rgba(126, 107, 255, 0.12) 0%, rgba(126, 107, 255, 0.04) 56%, rgba(126, 107, 255, 0) 100%);
  pointer-events: none;
}

.nm-header .nm-shell::after {
  content: "";
  position: absolute;
  top: -16%;
  right: 16%;
  width: 122px;
  height: 132%;
  transform: skewX(-30deg);
  background: linear-gradient(180deg, var(--nm-header-stripe) 0%, rgba(126, 107, 255, 0.10) 58%, var(--nm-header-stripe-edge) 100%);
  pointer-events: none;
}

.nm-header.is-scrolled {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.nm-header.is-scrolled .nm-shell {
  padding: 11px 18px;
  box-shadow: var(--nm-header-floating-shadow-scrolled);
}

.nm-header__row {
  min-height: 66px;
  gap: 26px;
}

.nm-logo {
  height: 48px;
  width: auto;
  max-width: min(100%, 340px);
}

.nm-header .nm-nav .menu {
  gap: 30px;
}

.nm-header .nm-nav .menu a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
  text-decoration: none;
}

.nm-header .nm-nav .menu a::after {
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, rgba(126, 107, 255, 0.92), rgba(126, 107, 255, 0.42));
}

.nm-header__actions {
  gap: 12px;
}

.nm-header .nm-button,
.nm-header button,
.nm-header input[type="submit"],
.nm-header .wp-element-button,
.nm-header .wp-block-button__link {
  min-height: 48px;
  padding: 0 22px;
}

.nm-header .nm-button--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nm-header .nm-button--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nm-header .nm-button--primary {
  box-shadow: 0 14px 28px rgba(93, 70, 216, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nm-header .nm-button--primary:hover {
  box-shadow: 0 18px 34px rgba(93, 70, 216, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nm-menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

.nm-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.07);
}

@media (max-width: 1180px) {
  .nm-header .nm-shell {
    width: min(100%, calc(100% - 28px));
  }

  .nm-header .nm-shell::after {
    right: 18%;
    width: 108px;
  }
}

@media (max-width: 960px) {
  body.admin-bar .nm-header {
    top: 46px;
  }

  .nm-header {
    top: 12px;
  }

  .nm-header .nm-shell {
    width: calc(100% - 18px);
    padding: 10px 14px;
    border-radius: 24px;
  }

  .nm-header .nm-shell::before {
    width: 92px;
  }

  .nm-header .nm-shell::after {
    right: 20%;
    width: 92px;
  }

  .nm-header__row {
    min-height: 58px;
    gap: 14px;
  }

  .nm-logo {
    height: 40px;
    max-width: 228px;
  }

  .nm-nav {
    top: calc(100% + 10px);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(8, 9, 14, 0.97) 0%, rgba(13, 14, 21, 0.95) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 46px rgba(6, 8, 14, 0.18);
  }

  .nm-nav::before {
    width: 88px;
    background: linear-gradient(90deg, rgba(126, 107, 255, 0.10) 0%, rgba(126, 107, 255, 0.03) 60%, transparent 100%);
  }

  .nm-nav::after {
    width: 84px;
    right: 16%;
    background: linear-gradient(180deg, rgba(126, 107, 255, 0.14) 0%, rgba(126, 107, 255, 0.05) 100%);
  }
}

@media (max-width: 767px) {
  .nm-header {
    top: 10px;
  }

  body.admin-bar .nm-header {
    top: 10px;
  }

  .nm-page-shell {
    padding-top: 122px;
  }

  .nm-hero {
    padding-top: 146px;
  }

  .nm-header .nm-shell {
    width: calc(100% - 14px);
    padding: 10px 12px;
    border-radius: 22px;
  }

  .nm-header .nm-shell::before {
    width: 72px;
  }

  .nm-header .nm-shell::after {
    right: 17%;
    width: 72px;
  }

  .nm-logo {
    height: 34px;
    max-width: 192px;
  }
}
