:root {
  --nv-bg: #eeece7;
  --nv-bg-2: #f5f6fa;
  --nv-bg-3: #e7e3dc;

  --nv-surface: rgba(255, 255, 255, 0.92);
  --nv-surface-strong: rgba(255, 255, 255, 0.96);
  --nv-surface-soft: rgba(249, 250, 253, 0.88);

  --nv-text: #171a22;
  --nv-text-muted: #6d7383;
  --nv-text-soft: #8a91a2;

  --nv-border: rgba(188, 194, 210, 0.34);
  --nv-border-strong: rgba(195, 200, 214, 0.4);

  --nv-accent: #203a60;
  --nv-accent-2: #8d6b45;
  --nv-accent-3: #8a78b6;
  --nv-accent-4: #f1a7c9;

  --nv-dark: #08101c;
  --nv-dark-2: #0b1220;

  --nv-container: 1280px;
  --nv-radius: 22px;
  --nv-radius-lg: 34px;
  --nv-radius-md: 24px;
  --nv-radius-sm: 18px;

  --nv-shadow: 0 12px 28px rgba(28, 35, 54, 0.045);
  --nv-shadow-soft: 0 10px 24px rgba(28, 35, 54, 0.04);
  --nv-shadow-strong: 0 20px 38px rgba(18, 24, 34, 0.08);
  --nv-shadow-panel: 0 18px 44px rgba(30, 38, 58, 0.06);

  --nv-ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --nv-hover-lift: translateY(-2px);
  --nv-hover-lift-card: translateY(-4px);
}

/* =========================
   Base
   ========================= */

html {
  scroll-behavior: smooth;
  background:
    radial-gradient(1100px 560px at 0% 0%, rgba(160, 170, 210, 0.12), rgba(160, 170, 210, 0) 44%),
    radial-gradient(900px 520px at 100% 8%, rgba(205, 195, 235, 0.1), rgba(205, 195, 235, 0) 42%),
    linear-gradient(180deg, #efede8 0%, #ebe7df 48%, #e5e0d7 100%);
}

body {
  margin: 0;
  color: var(--nv-text);
  background: transparent;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--nv-text);
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.nv-container {
  width: min(var(--nv-container), calc(100% - 56px));
  margin: 0 auto;
}

.nv-main {
  position: relative;
  min-height: 60vh;
}

.nv-main::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0) 12%),
    linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0) 18%, rgba(255,255,255,0.02) 82%, rgba(255,255,255,0)),
    radial-gradient(60% 80% at 50% 0%, rgba(255,255,255,0.045), rgba(255,255,255,0) 58%);
}

/* =========================
   Header
   ========================= */

.nv-site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding-top: 14px;
  background: transparent;
}

.nv-header-shell {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.72) 100%);
  border: 1px solid rgba(229, 223, 213, 0.78);
  box-shadow:
    0 10px 28px rgba(16, 24, 40, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.75);
  backdrop-filter: blur(18px);
}

.nv-header-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0) 20%, rgba(255,255,255,0.1) 80%, rgba(255,255,255,0));
  opacity: 0.75;
}

.nv-header-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 0 28px;
}

.nv-brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.nv-site-title {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--nv-text);
  white-space: nowrap;
}

.nv-logo img,
.custom-logo {
  max-height: 40px;
  width: auto;
}

.nv-site-nav {
  display: flex;
  justify-content: center;
}

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

.nv-menu li {
  position: relative;
}

.nv-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: rgba(23, 26, 34, 0.72);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition:
    color 0.28s var(--nv-ease-premium),
    transform 0.28s var(--nv-ease-premium),
    opacity 0.28s var(--nv-ease-premium);
}

.nv-menu a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 7px;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--nv-accent-2), var(--nv-accent));
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition:
    transform 0.3s var(--nv-ease-premium),
    opacity 0.3s var(--nv-ease-premium);
}

.nv-menu a:hover,
.nv-menu a:focus-visible {
  color: var(--nv-text);
  transform: translateY(-1px);
}

.nv-menu a:hover::after,
.nv-menu a:focus-visible::after,
.current-menu-item > a::after,
.current_page_item > a::after,
.current-menu-ancestor > a::after {
  transform: scaleX(1);
  opacity: 1;
}

.current-menu-item > a,
.current_page_item > a,
.current-menu-ancestor > a {
  color: var(--nv-text);
}

.nv-header-cta {
  display: flex;
  justify-content: flex-end;
}

.nv-header-cta-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.94);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.12);
  transition:
    transform 0.28s var(--nv-ease-premium),
    box-shadow 0.28s var(--nv-ease-premium),
    opacity 0.28s var(--nv-ease-premium);
}

.nv-header-cta-link:hover,
.nv-header-cta-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(17, 17, 17, 0.18);
}

/* =========================
   Buttons
   ========================= */

.nv-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition:
    transform 0.28s var(--nv-ease-premium),
    box-shadow 0.28s var(--nv-ease-premium),
    border-color 0.28s var(--nv-ease-premium),
    background-color 0.28s var(--nv-ease-premium),
    color 0.28s var(--nv-ease-premium),
    opacity 0.28s var(--nv-ease-premium);
}

.nv-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.08) 35%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.08) 65%,
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-120%);
  transition: transform 0.8s var(--nv-ease-premium);
}

.nv-btn:hover,
.nv-btn:focus-visible {
  transform: var(--nv-hover-lift);
}

.nv-btn:hover::before,
.nv-btn:focus-visible::before {
  transform: translateX(120%);
}

.nv-btn-primary {
  background: var(--nv-text);
  color: #fff;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.12);
}

.nv-btn-primary:hover,
.nv-btn-primary:focus-visible {
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.18);
}

.nv-btn-secondary {
  border: 1px solid var(--nv-border);
  background: rgba(255,255,255,0.72);
  color: var(--nv-text);
}

.nv-btn-secondary:hover,
.nv-btn-secondary:focus-visible {
  box-shadow: 0 14px 28px rgba(16, 24, 40, 0.08);
  border-color: rgba(31, 58, 95, 0.20);
  background: rgba(255, 255, 255, 0.86);
}

/* =========================
   Typography / Layout
   ========================= */

.nv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--nv-accent-2);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1;
}

.nv-eyebrow::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(141,107,69,0.26), rgba(141,107,69,0.92));
  border-radius: 999px;
}

.nv-section {
  position: relative;
  padding: 62px 0;
}

.nv-section > .nv-container {
  position: relative;
  z-index: 1;
}

.nv-section::before {
  content: "";
  position: absolute;
  inset: 4px 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0) 30%,
    rgba(255,255,255,0.015) 100%
  );
}

.nv-section-soft {
  position: relative;
  background: transparent;
}

.nv-section-soft::before {
  content: "";
  position: absolute;
  inset: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(104, 92, 76, 0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 100%);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.nv-section + .nv-section {
  border-top: 1px solid rgba(255,255,255,0.14);
}

.nv-section-heading {
  max-width: 900px;
  margin-bottom: 24px;
}

.nv-section-title,
.nv-cta-title,
.nv-page-title {
  max-width: 920px;
  font-size: clamp(1.95rem, 3.5vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 0;
}

.nv-section-desc,
.nv-page-desc {
  margin-top: 12px;
  max-width: 760px;
  color: var(--nv-text-muted);
  font-size: 0.92rem;
  line-height: 1.78;
}

.nv-page-header {
  margin-bottom: 24px;
}

.nv-grid {
  display: grid;
  gap: 16px;
}

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

.nv-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.nv-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.nv-split {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 28px;
  align-items: start;
}

.nv-split-left .nv-section-title {
  max-width: 560px;
}

.nv-split-right p,
.nv-page-content,
.nv-card-excerpt,
.nv-post-card-excerpt,
.nv-cta-text,
.nv-value-card p,
.nv-feature-card p,
.nv-post-card p {
  color: var(--nv-text-muted);
}

.nv-split-right p {
  font-size: 0.92rem;
  line-height: 1.78;
}

.nv-post-list {
  display: grid;
  gap: 18px;
}

.nv-content-wrap {
  max-width: 860px;
}

.nv-page-content > *:last-child {
  margin-bottom: 0;
}

/* =========================
   Cards
   ========================= */

.nv-feature-card,
.nv-post-card,
.nv-card,
.nv-value-card,
.nv-cta {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(248,249,252,0.84) 100%);
  border: 1px solid rgba(195, 200, 214, 0.4);
  border-radius: 18px;
  box-shadow:
    0 12px 28px rgba(28, 35, 54, 0.045),
    inset 0 1px 0 rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  transition:
    transform 0.34s var(--nv-ease-premium),
    box-shadow 0.34s var(--nv-ease-premium),
    border-color 0.34s var(--nv-ease-premium),
    background-color 0.34s var(--nv-ease-premium);
}

.nv-feature-card::before,
.nv-post-card::before,
.nv-card::before,
.nv-value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.34s var(--nv-ease-premium);
}

.nv-feature-card,
.nv-value-card,
.nv-card {
  padding: 22px 20px;
}

.nv-post-card {
  padding: 22px 20px;
}

.nv-card-kicker {
  color: var(--nv-accent-2);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.nv-feature-card h3,
.nv-value-card h3,
.nv-card-title,
.nv-post-card-title {
  font-size: 1.08rem;
  line-height: 1.26;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.nv-post-card-title a,
.nv-card-title a {
  color: var(--nv-text);
  transition:
    color 0.28s var(--nv-ease-premium),
    opacity 0.28s var(--nv-ease-premium);
}

.nv-post-card-meta,
.nv-card-meta {
  color: var(--nv-text-muted);
  font-size: 0.74rem;
  margin-bottom: 8px;
}

.nv-feature-card p,
.nv-value-card p,
.nv-card-excerpt,
.nv-post-card-excerpt {
  font-size: 0.92rem;
  line-height: 1.78;
  color: var(--nv-text-muted);
}

.nv-feature-card > *:not(:last-child),
.nv-post-card > *:not(:last-child),
.nv-card > *:not(:last-child),
.nv-value-card > *:not(:last-child) {
  transition: transform 0.34s var(--nv-ease-premium);
}

.nv-feature-card:hover,
.nv-feature-card:focus-within,
.nv-post-card:hover,
.nv-post-card:focus-within,
.nv-card:hover,
.nv-card:focus-within,
.nv-value-card:hover,
.nv-value-card:focus-within {
  transform: var(--nv-hover-lift-card);
  box-shadow: var(--nv-shadow-strong);
  border-color: rgba(31, 58, 95, 0.16);
}

.nv-feature-card:hover::before,
.nv-feature-card:focus-within::before,
.nv-post-card:hover::before,
.nv-post-card:focus-within::before,
.nv-card:hover::before,
.nv-card:focus-within::before,
.nv-value-card:hover::before,
.nv-value-card:focus-within::before {
  opacity: 1;
}

.nv-feature-card:hover > *:not(:last-child),
.nv-feature-card:focus-within > *:not(:last-child),
.nv-post-card:hover > *:not(:last-child),
.nv-post-card:focus-within > *:not(:last-child),
.nv-card:hover > *:not(:last-child),
.nv-card:focus-within > *:not(:last-child),
.nv-value-card:hover > *:not(:last-child),
.nv-value-card:focus-within > *:not(:last-child) {
  transform: translateY(-2px);
}

.nv-post-card:hover .nv-post-card-title a,
.nv-post-card:focus-within .nv-post-card-title a,
.nv-card:hover .nv-card-title a,
.nv-card:focus-within .nv-card-title a {
  color: var(--nv-accent);
}

/* =========================
   Editorial Cards
   ========================= */

.nv-editorial-grid {
  align-items: stretch;
  gap: 18px;
}

.nv-post-card-editorial {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 228px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(247,243,237,0.84) 100%);
  border: 1px solid rgba(188, 194, 210, 0.3);
  box-shadow:
    0 12px 28px rgba(18, 24, 34, 0.045),
    inset 0 1px 0 rgba(255,255,255,0.60);
  transition:
    transform 0.38s var(--nv-ease-premium),
    box-shadow 0.38s var(--nv-ease-premium),
    border-color 0.38s var(--nv-ease-premium),
    background 0.38s var(--nv-ease-premium);
}

.nv-post-card-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0)),
    radial-gradient(60% 80% at 100% 0%, rgba(32,58,96,0.06), rgba(32,58,96,0) 52%);
  opacity: 0;
  transition: opacity 0.38s var(--nv-ease-premium);
}

.nv-post-card-topline {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(179,140,255,0.16),
    rgba(32,58,96,0.58),
    rgba(241,167,201,0.16)
  );
  opacity: 0.95;
}

.nv-post-card-body {
  padding: 18px 18px 14px;
}

.nv-post-card-editorial .nv-post-card-meta {
  margin-bottom: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(90, 90, 87, 0.76);
}

.nv-post-card-editorial .nv-post-card-title {
  margin-bottom: 12px;
  font-size: 1.02rem;
  line-height: 1.32;
  letter-spacing: -0.03em;
}

.nv-post-card-editorial .nv-post-card-title a {
  color: var(--nv-text);
  transition:
    color 0.28s var(--nv-ease-premium),
    opacity 0.28s var(--nv-ease-premium);
}

.nv-post-card-editorial .nv-post-card-excerpt {
  font-size: 0.88rem;
  line-height: 1.74;
  color: #5d5d5a;
}

.nv-post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 16px;
}

.nv-post-card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--nv-accent);
  transition:
    transform 0.28s var(--nv-ease-premium),
    color 0.28s var(--nv-ease-premium);
}

.nv-post-card-link::after {
  content: "→";
  display: inline-block;
  transition: transform 0.28s var(--nv-ease-premium);
}

.nv-post-card-link-muted {
  color: rgba(98, 98, 95, 0.7);
}

.nv-post-card-editorial:hover,
.nv-post-card-editorial:focus-within {
  transform: translateY(-4px);
  box-shadow:
    0 20px 38px rgba(18, 24, 34, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.65);
  border-color: rgba(32, 58, 96, 0.16);
}

.nv-post-card-editorial:hover::before,
.nv-post-card-editorial:focus-within::before {
  opacity: 1;
}

.nv-post-card-editorial:hover .nv-post-card-title a,
.nv-post-card-editorial:focus-within .nv-post-card-title a {
  color: var(--nv-accent);
}

.nv-post-card-editorial:hover .nv-post-card-link,
.nv-post-card-editorial:focus-within .nv-post-card-link {
  transform: translateX(2px);
}

.nv-post-card-editorial:hover .nv-post-card-link::after,
.nv-post-card-editorial:focus-within .nv-post-card-link::after {
  transform: translateX(2px);
}

/* =========================
   Footer
   ========================= */

.nv-site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  background:
    radial-gradient(110% 180% at 0% 0%, rgba(28, 92, 190, 0.16), rgba(28, 92, 190, 0) 38%),
    radial-gradient(90% 120% at 100% 100%, rgba(9, 38, 86, 0.16), rgba(9, 38, 86, 0) 42%),
    linear-gradient(180deg, #04111f 0%, #07182c 48%, #07111d 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 34px 0 18px;
  color: rgba(255, 255, 255, 0.92);
}

.nv-site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.018),
      rgba(255,255,255,0) 18%,
      rgba(255,255,255,0.018) 82%,
      rgba(255,255,255,0)
    );
}

.nv-footer-3col {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 24px;
  padding-bottom: 18px;
}

.nv-footer-col-left {
  display: flex;
  justify-content: flex-start;
}

.nv-footer-col-center {
  display: flex;
  justify-content: center;
}

.nv-footer-col-right {
  display: flex;
  justify-content: flex-end;
}

.nv-footer-brand h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.nv-footer-brand p,
.nv-footer-meta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
  font-size: 0.88rem;
}

.nv-footer-meta {
  text-align: right;
}

.nv-footer-menu a {
  color: rgba(255,255,255,0.72);
  transition: color 0.2s ease;
}

.nv-footer-menu a:hover {
  color: #ffffff;
}

.nv-footer-stats {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 12px;
  min-height: 45px;
  padding: 10px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.095) 0%, rgba(255,255,255,0.035) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 14px 30px rgba(0,0,0,0.20);
  backdrop-filter: blur(10px);
  animation: nvStatsFloatIn 0.9s var(--nv-ease-premium) both;
}

.nv-footer-stats::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
}

.nv-footer-stats::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.05) 30%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.04) 70%,
    rgba(255,255,255,0) 100%
  );
  opacity: 0;
  animation: nvStatsGlow 4.8s ease-in-out infinite;
}

.nv-footer-stats .stats-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.74);
  letter-spacing: 0.01em;
}

.nv-footer-stats .stats-sep {
  font-size: 1rem;
  color: rgba(255,255,255,0.22);
}

.nv-footer-stats .stats-value {
  position: relative;
  display: inline-block;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
  transform-origin: center;
  animation: nvNumberIdle 4.6s ease-in-out infinite;
  will-change: transform, opacity, filter;
}

.nv-footer-stats .stats-unit {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.86);
}

.nv-footer-stats.is-updated .stats-value {
  animation: nvNumberPop 0.6s var(--nv-ease-premium);
}

.nv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}

.nv-footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.50);
  font-size: 0.9rem;
}

/* =========================
   Motion Keyframes
   ========================= */

@keyframes nvStatsFloatIn {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes nvStatsGlow {
  0%, 100% {
    opacity: 0.18;
  }
  50% {
    opacity: 0.42;
  }
}

@keyframes nvNumberIdle {
  0%, 100% {
    transform: translateY(0);
    text-shadow: 0 0 0 rgba(255,255,255,0);
  }
  50% {
    transform: translateY(-1px);
    text-shadow: 0 0 12px rgba(255,255,255,0.08);
  }
}

@keyframes nvNumberPop {
  0% {
    opacity: 0.55;
    transform: scale(0.92) translateY(2px);
    filter: blur(2px);
  }
  60% {
    opacity: 1;
    transform: scale(1.06) translateY(0);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

/* =========================
   Page Content
   ========================= */

.nv-page-enhanced {
  position: relative;
}

.nv-page-enhanced .nv-page-content {
  position: relative;
}

.nv-page-content .nv-section:first-child {
  padding-top: 26px;
}

.nv-page-content > p,
.nv-page-content > ul,
.nv-page-content > ol,
.nv-page-content > blockquote,
.nv-page-content > h2,
.nv-page-content > h3,
.nv-page-content > h4 {
  max-width: 860px;
}

.nv-page-content > h2 {
  margin-top: 2.2rem;
  margin-bottom: 0.9rem;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.nv-page-content > h3 {
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.nv-page-content > p,
.nv-page-content > li,
.nv-page-content > ul,
.nv-page-content > ol {
  font-size: 0.96rem;
  line-height: 1.9;
  color: var(--nv-text-muted);
}

.nv-page-content > ul,
.nv-page-content > ol {
  padding-left: 1.25rem;
}

.nv-page-content > blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid rgba(32, 58, 96, 0.25);
  background: rgba(255,255,255,0.42);
  border-radius: 0 14px 14px 0;
  color: var(--nv-text-muted);
}

.nv-page-content .wp-block-buttons {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.nv-page-content .wp-block-columns {
  gap: 1.2rem;
}

.nv-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(86, 74, 58, 0.10);
  border-radius: 14px;
  overflow: hidden;
}

.nv-page-content th,
.nv-page-content td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(86, 74, 58, 0.08);
  text-align: left;
  font-size: 0.92rem;
}

.nv-page-content th {
  color: var(--nv-text);
  background: rgba(255,255,255,0.42);
}

.nv-page-content tr:last-child td {
  border-bottom: none;
}

/* =========================
   Home V3
   ========================= */

.nv-home-v3 {
  background:
    radial-gradient(1000px 460px at 0% 0%, rgba(160, 170, 210, 0.12), rgba(160, 170, 210, 0) 44%),
    radial-gradient(800px 420px at 100% 0%, rgba(205, 195, 235, 0.10), rgba(205, 195, 235, 0) 42%);
}

.nv-home-v3-hero {
  padding: 42px 0 22px;
}

.nv-home-v3-shell,
.nv-home-v3-panel,
.nv-home-v3-cta {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(248,249,252,0.90) 100%);
  border: 1px solid rgba(188, 194, 210, 0.34);
  box-shadow:
    0 18px 44px rgba(30, 38, 58, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.72);
}

.nv-home-v3-shell::before,
.nv-home-v3-panel::before,
.nv-home-v3-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0)),
    radial-gradient(80% 100% at 100% 0%, rgba(180,168,236,0.10), rgba(180,168,236,0) 50%);
}

.nv-home-v3-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 34px;
  align-items: stretch;
  padding: 42px 40px;
}

.nv-home-v3-hero-left {
  max-width: 860px;
}

.nv-home-v3-title {
  max-width: 920px;
  font-size: clamp(3rem, 4.9vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 16px;
  color: var(--nv-text);
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: anywhere;
}

.nv-home-v3-text {
  max-width: 660px;
  color: var(--nv-text-muted);
  font-size: 0.98rem;
  line-height: 1.82;
  margin-bottom: 20px;
}

.nv-home-v3-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nv-home-v3-hero-right {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.nv-home-v3-value-list {
  width: 100%;
  display: grid;
  gap: 0;
  background: rgba(255,255,255,0.52);
  border: 1px solid rgba(198, 203, 216, 0.46);
  border-radius: 26px;
  padding: 10px 0;
}

.nv-home-v3-value-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 24px;
}

.nv-home-v3-value-item + .nv-home-v3-value-item {
  border-top: 2px dashed rgba(173, 180, 225, 0.42);
}

.nv-home-v3-value-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 3px;
  background: linear-gradient(135deg, #b38cff 0%, #f1a7c9 100%);
  transform: rotate(45deg);
}

.nv-home-v3-value-content {
  min-width: 0;
}

.nv-home-v3-value-content h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: -0.03em;
  color: #1a1e27;
}

.nv-home-v3-value-content p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.76;
  color: #717888;
}

.nv-home-v3-section {
  padding: 18px 0;
}

.nv-home-v3-panel {
  padding: 34px 34px;
}

.nv-home-v3-method-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: start;
}

.nv-home-v3-method-right .nv-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.nv-home-v3-panel .nv-section-heading {
  margin-bottom: 24px;
}

.nv-home-v3 .nv-eyebrow,
.nv-single-v3 .nv-eyebrow {
  color: #8a78b6;
}

.nv-home-v3 .nv-eyebrow::before,
.nv-single-v3 .nv-eyebrow::before {
  background: linear-gradient(90deg, rgba(179,140,255,0.35), rgba(241,167,201,0.95));
}

.nv-home-v3 .nv-section-title,
.nv-home-v3 .nv-cta-title {
  color: var(--nv-text);
}

.nv-home-v3 .nv-section-desc,
.nv-home-v3 .nv-card-excerpt,
.nv-home-v3 .nv-feature-card p,
.nv-home-v3 .nv-value-card p,
.nv-home-v3 .nv-cta-text,
.nv-home-v3 .nv-split-right p {
  color: var(--nv-text-muted);
}

.nv-home-v3 .nv-card-kicker,
.nv-home-v3 .nv-post-card-meta,
.nv-home-v3 .nv-card-meta {
  color: #8b729a;
}

.nv-v3-line-card,
.nv-home-v3 .nv-feature-card,
.nv-home-v3 .nv-card,
.nv-home-v3 .nv-value-card,
.nv-home-v3 .nv-post-card-editorial {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(249,250,253,0.84) 100%);
  border: 1px solid rgba(195, 200, 214, 0.40);
  box-shadow:
    0 12px 28px rgba(28, 35, 54, 0.045),
    inset 0 1px 0 rgba(255,255,255,0.72);
}

.nv-v3-line-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(179,140,255,0.18), rgba(32,58,96,0.46), rgba(241,167,201,0.18));
}

.nv-home-v3-section-dark {
  padding: 18px 0;
}

.nv-home-v3-dark-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 34px;
  background:
    radial-gradient(100% 140% at 0% 0%, rgba(90, 25, 25, 0.20), rgba(90, 25, 25, 0) 34%),
    radial-gradient(80% 120% at 100% 100%, rgba(65, 20, 95, 0.20), rgba(65, 20, 95, 0) 42%),
    linear-gradient(180deg, #070c16 0%, #0a1120 48%, #070d17 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 46px rgba(18, 24, 34, 0.18);
}

.nv-home-v3-dark-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.18;
}

.nv-section-heading-dark .nv-section-title,
.nv-section-heading-dark .nv-section-desc,
.nv-section-heading-dark .nv-eyebrow {
  color: #f3f5fa;
}

.nv-section-heading-dark .nv-section-desc {
  color: rgba(243,245,250,0.70);
}

.nv-home-v3-dark-grid {
  gap: 18px;
}

.nv-home-v3-dark-card {
  position: relative;
  overflow: hidden;
  min-height: 226px;
  padding: 22px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 12px 28px rgba(0,0,0,0.18);
}

.nv-home-v3-dark-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 18px;
  font-size: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255,90,77,0.16) 0%, rgba(255,90,77,0.06) 100%);
  border: 1px solid rgba(255,90,77,0.20);
}

.nv-home-v3-dark-card h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.26;
}

.nv-home-v3-dark-card p {
  color: rgba(255,255,255,0.64);
  font-size: 0.9rem;
  line-height: 1.78;
  margin-bottom: 16px;
}

.nv-home-v3-dark-card span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 12px;
  color: #ff6d60;
  font-size: 0.86rem;
  font-weight: 600;
  background: rgba(255,90,77,0.08);
  border: 1px solid rgba(255,90,77,0.18);
}

.nv-home-v3-poster-grid {
  gap: 18px;
}

.nv-home-v3-poster {
  overflow: hidden;
  border-radius: 28px;
  padding: 24px 22px;
  min-height: 320px;
  border: 1px solid rgba(195, 200, 214, 0.30);
  box-shadow:
    0 16px 34px rgba(28, 35, 54, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.66);
}

.nv-home-v3-poster-head {
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.25;
  color: #1a1e27;
  margin-bottom: 18px;
}

.nv-home-v3-poster-body {
  border-radius: 22px;
  background: rgba(255,255,255,0.84);
  padding: 18px 18px;
  box-shadow: 0 12px 30px rgba(28, 35, 54, 0.05);
}

.nv-home-v3-poster-body p {
  color: #5f6677;
  font-size: 0.92rem;
  line-height: 1.8;
  margin: 0 0 12px;
}

.nv-home-v3-poster-body p:last-child {
  margin-bottom: 0;
}

.nv-home-v3-poster-blue {
  background: linear-gradient(180deg, #edf4ff 0%, #eaf1fb 100%);
}

.nv-home-v3-poster-purple {
  background: linear-gradient(180deg, #f2efff 0%, #edeafb 100%);
}

.nv-home-v3-poster-green {
  background: linear-gradient(180deg, #eefaf4 0%, #e9f6f0 100%);
}

.nv-home-v3-cta {
  padding: 30px 34px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,250,253,0.92) 100%);
  border: 1px solid rgba(188, 194, 210, 0.30);
  box-shadow:
    0 18px 44px rgba(30, 38, 58, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.78);
}

.nv-home-v3-cta .nv-cta-title {
  color: var(--nv-text);
}

.nv-home-v3-cta .nv-cta-text {
  color: var(--nv-text-muted);
}

/* =========================
   Single V3
   ========================= */

.nv-single-v3-hero {
  padding: 36px 0 18px;
}

.nv-single-v3-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(248,249,252,0.90) 100%);
  border: 1px solid rgba(188, 194, 210, 0.34);
  box-shadow:
    0 18px 44px rgba(30, 38, 58, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.72);
  padding: 34px 34px;
}

.nv-single-v3-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0)),
    radial-gradient(80% 100% at 100% 0%, rgba(180,168,236,0.10), rgba(180,168,236,0) 50%);
}

.nv-single-v3-head {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.nv-single-v3-meta-top {
  margin-bottom: 14px;
}

.nv-single-v3-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #7a8190;
  font-size: 0.88rem;
}

.nv-single-v3-title {
  max-width: 920px;
  font-size: clamp(2.4rem, 4.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin-bottom: 14px;
  color: var(--nv-text);
}

.nv-single-v3-excerpt {
  max-width: 760px;
  color: var(--nv-text-muted);
  font-size: 0.98rem;
  line-height: 1.82;
  margin: 0;
}

.nv-single-v3-content-wrap {
  padding: 12px 0 18px;
}

.nv-single-v3-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  align-items: start;
}

.nv-single-v3-article {
  min-width: 0;
}

.nv-single-v3-article-inner {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,250,253,0.92) 100%);
  border: 1px solid rgba(188, 194, 210, 0.30);
  box-shadow:
    0 16px 38px rgba(30, 38, 58, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.76);
  padding: 34px 34px;
}

.nv-single-v3-content {
  color: #5f6677;
}

.nv-single-v3-content > * {
  max-width: 780px;
}

.nv-single-v3-content > *:last-child {
  margin-bottom: 0;
}

.nv-single-v3-content p,
.nv-single-v3-content li {
  font-size: 0.96rem;
  line-height: 1.96;
  color: #5f6677;
}

.nv-single-v3-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 0.95rem;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--nv-text);
}

.nv-single-v3-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--nv-text);
}

.nv-single-v3-content ul,
.nv-single-v3-content ol {
  padding-left: 1.2rem;
}

.nv-single-v3-content blockquote {
  margin: 1.6rem 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid rgba(138, 120, 182, 0.35);
  background: rgba(243, 245, 250, 0.72);
  border-radius: 0 14px 14px 0;
  color: #636b7c;
}

.nv-single-v3-content img,
.nv-single-v3-content .wp-block-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(30, 38, 58, 0.08);
  margin: 1.4rem 0 1.6rem;
  object-fit: cover;
}

.nv-single-v3-content a {
  color: var(--nv-accent);
  text-decoration: underline;
  text-decoration-color: rgba(32, 58, 96, 0.22);
  text-underline-offset: 3px;
}

.nv-single-v3-side {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 110px;
}

.nv-single-v3-side-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(249,250,253,0.86) 100%);
  border: 1px solid rgba(188, 194, 210, 0.30);
  box-shadow:
    0 12px 28px rgba(30, 38, 58, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.70);
  padding: 20px 18px;
}

.nv-single-v3-side-card h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
  color: var(--nv-text);
}

.nv-single-v3-side-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.78;
  color: var(--nv-text-muted);
}

.nv-single-v3-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.nv-single-v3-nav-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(249,250,253,0.86) 100%);
  border: 1px solid rgba(188, 194, 210, 0.30);
  box-shadow:
    0 12px 28px rgba(30, 38, 58, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.70);
  padding: 20px 20px;
}

.nv-single-v3-nav-item h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.nv-single-v3-nav-item a {
  color: var(--nv-text);
  transition: color 0.28s var(--nv-ease-premium);
}

.nv-single-v3-nav-item a:hover {
  color: var(--nv-accent);
}

/* =========================
   Page Raw Mode
   ========================= */

.nv-page-raw {
  position: relative;
}

.nv-page-raw > .nv-section:first-child {
  padding-top: 18px;
}

.nv-page-raw .nv-home-v3-hero-grid,
.nv-page-raw .nv-home-v3-method-grid,
.nv-page-raw .nv-split,
.nv-page-raw .nv-grid {
  min-width: 0;
}

.nv-page-raw .nv-home-v3-hero-left,
.nv-page-raw .nv-home-v3-hero-right {
  min-width: 0;
}

.nv-page-raw > p,
.nv-page-raw > ul,
.nv-page-raw > ol,
.nv-page-raw > blockquote,
.nv-page-raw > h2,
.nv-page-raw > h3,
.nv-page-raw > h4 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.nv-page-raw > p,
.nv-page-raw > li,
.nv-page-raw > ul,
.nv-page-raw > ol {
  font-size: 0.96rem;
  line-height: 1.9;
  color: var(--nv-text-muted);
}

.nv-page-raw > blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: 3px solid rgba(32, 58, 96, 0.25);
  background: rgba(255,255,255,0.42);
  border-radius: 0 14px 14px 0;
  color: var(--nv-text-muted);
}

/* =========================
   Inner Hero V4
   ========================= */

.nv-inner-v4-section {
  padding: 18px 0;
}

.nv-inner-v4-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(248,249,252,0.90) 100%);
  border: 1px solid rgba(188, 194, 210, 0.34);
  box-shadow:
    0 18px 44px rgba(30, 38, 58, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.72);
  padding: 34px 34px 30px;
}

.nv-inner-v4-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0)),
    radial-gradient(80% 100% at 100% 0%, rgba(180,168,236,0.08), rgba(180,168,236,0) 52%);
}

.nv-inner-v4-head {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin-bottom: 24px;
}

.nv-inner-v4-title {
  max-width: 1200px;
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin-bottom: 14px;
  color: var(--nv-text);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.nv-inner-v4-text {
  max-width: 1200px;
  margin: 0;
  color: var(--nv-text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.nv-inner-v4-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 16px;
  align-items: stretch;
}

.nv-inner-v4-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(249,250,253,0.82) 100%);
  border: 1px solid rgba(195, 200, 214, 0.34);
  box-shadow:
    0 12px 28px rgba(28, 35, 54, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.72);
  padding: 18px 18px;
}

.nv-inner-v4-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.24;
  letter-spacing: -0.03em;
  color: var(--nv-text);
}

.nv-inner-v4-card p {
  margin: 0;
  color: var(--nv-text-muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.nv-inner-v4-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.nv-inner-v4-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(195, 200, 214, 0.42);
  color: #6d7383;
  font-size: 0.84rem;
  font-weight: 600;
}

/* =========================
   Accessibility
   ========================= */

.nv-menu a:focus-visible,
.nv-btn:focus-visible,
.nv-post-card a:focus-visible,
.nv-card a:focus-visible,
.nv-post-card-link:focus-visible,
.nv-header-cta-link:focus-visible {
  outline: 2px solid rgba(31, 58, 95, 0.28);
  outline-offset: 3px;
  border-radius: 8px;
}

/* =========================
   Reduced Motion
   ========================= */

@media (prefers-reduced-motion: reduce) {
  .nv-menu a,
  .nv-menu a::after,
  .nv-btn,
  .nv-btn::before,
  .nv-feature-card,
  .nv-feature-card::before,
  .nv-post-card,
  .nv-post-card::before,
  .nv-card,
  .nv-card::before,
  .nv-value-card,
  .nv-value-card::before,
  .nv-cta,
  .nv-post-card-editorial,
  .nv-post-card-editorial::before,
  .nv-footer-stats,
  .nv-footer-stats::after,
  .nv-footer-stats .stats-value {
    transition: none !important;
    animation: none !important;
  }

  .nv-menu a:hover,
  .nv-btn:hover,
  .nv-feature-card:hover,
  .nv-post-card:hover,
  .nv-card:hover,
  .nv-value-card:hover,
  .nv-cta:hover,
  .nv-post-card-editorial:hover {
    transform: none !important;
  }

  .nv-btn::before,
  .nv-menu a::after,
  .nv-feature-card::before,
  .nv-post-card::before,
  .nv-card::before,
  .nv-value-card::before,
  .nv-post-card-editorial::before {
    opacity: 0 !important;
  }
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 1280px) {
  .nv-home-v3-hero-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .nv-home-v3-title {
    font-size: clamp(2.8rem, 4.5vw, 4.6rem);
  }

  .nv-grid-5,
  .nv-home-v3-dark-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .nv-header-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 18px;
    min-height: auto;
  }

  .nv-brand,
  .nv-site-nav,
  .nv-header-cta {
    justify-content: center;
  }

  .nv-menu {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .nv-section {
    padding: 52px 0;
  }

  .nv-grid-2,
  .nv-grid-3,
  .nv-grid-4,
  .nv-grid-5,
  .nv-split,
  .nv-cta-grid,
  .nv-footer-3col,
  .nv-home-v3-hero-grid,
  .nv-home-v3-method-grid,
  .nv-home-v3-dark-grid,
  .nv-single-v3-layout,
  .nv-inner-v4-strip {
    grid-template-columns: 1fr;
  }

  .nv-home-v3-method-right .nv-grid,
  .nv-single-v3-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nv-home-v3-shell,
  .nv-home-v3-panel,
  .nv-home-v3-dark-shell,
  .nv-home-v3-cta,
  .nv-single-v3-shell,
  .nv-single-v3-article-inner,
  .nv-inner-v4-shell {
    border-radius: 24px;
  }

  .nv-home-v3-hero-grid,
  .nv-home-v3-panel,
  .nv-home-v3-dark-shell,
  .nv-home-v3-cta,
  .nv-single-v3-shell,
  .nv-single-v3-article-inner,
  .nv-inner-v4-shell {
    padding: 26px 24px;
  }

  .nv-cta-action {
    justify-content: flex-start;
  }

  .nv-footer-3col {
    text-align: center;
    gap: 16px;
  }

  .nv-footer-col-left,
  .nv-footer-col-center,
  .nv-footer-col-right {
    justify-content: center;
  }

  .nv-footer-meta {
    text-align: center;
  }

  .nv-single-v3-side {
    position: static;
  }

  .nv-page .nv-home-v3-section,
  .nv-page .nv-home-v3-section-dark,
  .nv-page-raw .nv-home-v3-section,
  .nv-page-raw .nv-home-v3-section-dark,
  .nv-inner-v4-section {
    padding: 14px 0;
  }
}

@media (max-width: 640px) {
  .nv-container {
    width: min(var(--nv-container), calc(100% - 28px));
  }

  .nv-site-header {
    padding-top: 10px;
  }

  .nv-header-shell {
    border-radius: 18px;
  }

  .nv-header-inner {
    padding: 12px 14px;
  }

  .nv-site-title {
    font-size: 1.06rem;
  }

  .nv-menu a {
    font-size: 0.9rem;
    min-height: 36px;
  }

  .nv-header-cta-link {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .nv-section {
    padding: 44px 0;
  }

  .nv-section-title,
  .nv-cta-title,
  .nv-page-title {
    font-size: 2rem;
    line-height: 1.08;
  }

  .nv-home-v3-title,
  .nv-single-v3-title,
  .nv-inner-v4-title {
    font-size: 2.2rem;
    line-height: 1.06;
  }

  .nv-home-v3-value-content p,
  .nv-single-v3-excerpt,
  .nv-single-v3-content p,
  .nv-single-v3-content li,
  .nv-inner-v4-text,
  .nv-inner-v4-card p {
    font-size: 0.88rem;
  }

  .nv-feature-card,
  .nv-value-card,
  .nv-card {
    padding: 18px 16px;
  }

  .nv-post-card {
    padding: 18px 16px;
  }

  .nv-post-card-editorial {
    padding: 0;
  }

  .nv-post-card-body {
    padding: 16px 16px 12px;
  }

  .nv-post-card-footer {
    padding: 0 16px 14px;
  }

  .nv-home-v3-hero-grid,
  .nv-home-v3-panel,
  .nv-home-v3-dark-shell,
  .nv-home-v3-cta,
  .nv-single-v3-shell,
  .nv-single-v3-article-inner,
  .nv-inner-v4-shell {
    padding: 20px 18px;
  }

  .nv-home-v3-shell,
  .nv-home-v3-panel,
  .nv-home-v3-dark-shell,
  .nv-home-v3-cta,
  .nv-home-v3-poster,
  .nv-single-v3-shell,
  .nv-single-v3-article-inner,
  .nv-inner-v4-shell,
  .nv-inner-v4-card {
    border-radius: 20px;
  }

  .nv-home-v3-method-right .nv-grid,
  .nv-single-v3-side,
  .nv-single-v3-nav {
    grid-template-columns: 1fr;
  }

  .nv-single-v3-content h2 {
    font-size: 1.42rem;
  }

  .nv-single-v3-content h3 {
    font-size: 1.06rem;
  }

  .nv-footer-stats {
    flex-wrap: wrap;
    gap: 8px;
    min-height: auto;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .nv-footer-stats .stats-value {
    font-size: 1.8rem;
  }

  .nv-footer-stats .stats-unit,
  .nv-footer-stats .stats-label {
    font-size: 0.86rem;
  }

  .nv-footer-brand h3 {
    font-size: 1rem;
  }

  .nv-page-raw > .nv-section:first-child {
    padding-top: 12px;
  }
}