@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("/fonts/PlayfairDisplay-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --dnx-color-midnight: #080C14;
  --dnx-color-deep: #0F172A;
  --dnx-color-paper: #F8FAFC;
  --dnx-color-emerald: #10B981;
  --dnx-color-emerald-contrast: #047857;
  --dnx-color-copper: #B6533F;
  --dnx-color-copper-hover: #A94735;
  --dnx-color-ink: #E5EDF7;
  --dnx-color-muted: #9BA8BB;
  --dnx-color-line: rgba(248, 250, 252, 0.16);
  --dnx-color-panel: rgba(15, 23, 42, 0.72);
  --dnx-color-soft: #EAF2F0;
  --dnx-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --dnx-font-display: "Playfair Display", Georgia, serif;
  --dnx-space-1: 0.25rem;
  --dnx-space-2: 0.5rem;
  --dnx-space-3: 0.75rem;
  --dnx-space-4: 1rem;
  --dnx-space-5: 1.5rem;
  --dnx-space-6: 2rem;
  --dnx-space-7: 3rem;
  --dnx-space-8: 4rem;
  --dnx-radius: 8px;
  --dnx-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dnx-color-midnight);
  color: var(--dnx-color-ink);
  font-family: var(--dnx-font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--dnx-color-emerald);
  outline-offset: 4px;
}

.dnx-skip-link {
  position: absolute;
  left: 1rem;
  top: 0.75rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--dnx-color-paper);
  color: var(--dnx-color-midnight);
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  font-weight: 800;
}

.dnx-skip-link:focus {
  transform: translateY(0);
}

.dnx-shell {
  min-height: 100vh;
}

.dnx-container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.dnx-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 12, 20, 0.92);
  border-bottom: 1px solid var(--dnx-color-line);
  backdrop-filter: blur(16px);
}

.dnx-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dnx-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08em;
  color: var(--dnx-color-paper);
  font-weight: 900;
  font-size: 1.18rem;
  text-decoration: none;
  text-transform: uppercase;
}

.dnx-wordmark span {
  color: var(--dnx-color-copper);
}

.dnx-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.dnx-nav a,
.dnx-footer a {
  text-decoration: none;
}

.dnx-nav__link {
  border-radius: 6px;
  color: var(--dnx-color-muted);
  font-size: 0.93rem;
  font-weight: 750;
  padding: 0.6rem 0.7rem;
}

.dnx-nav__link:hover,
.dnx-nav__link[aria-current="page"] {
  color: var(--dnx-color-paper);
  background: rgba(248, 250, 252, 0.08);
}

.dnx-menu-button {
  display: none;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dnx-color-line);
  border-radius: 7px;
  background: rgba(248, 250, 252, 0.06);
  color: var(--dnx-color-paper);
  cursor: pointer;
}

.dnx-menu-button__lines,
.dnx-menu-button__lines::before,
.dnx-menu-button__lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.dnx-menu-button__lines {
  position: relative;
}

.dnx-menu-button__lines::before,
.dnx-menu-button__lines::after {
  position: absolute;
  left: 0;
}

.dnx-menu-button__lines::before {
  top: -6px;
}

.dnx-menu-button__lines::after {
  top: 6px;
}

.dnx-button,
.dnx-card__link,
.dnx-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0.75rem 1rem;
  background: var(--dnx-color-copper);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.dnx-button:hover,
.dnx-card__link:hover,
.dnx-form button:hover {
  background: var(--dnx-color-copper-hover);
}

.dnx-button--secondary {
  border-color: var(--dnx-color-line);
  background: rgba(248, 250, 252, 0.06);
  color: var(--dnx-color-paper);
}

.dnx-button--secondary:hover {
  background: rgba(16, 185, 129, 0.14);
}

.dnx-section--paper .dnx-button--secondary,
.dnx-section--soft .dnx-button--secondary {
  border-color: rgba(15, 23, 42, 0.28);
  background: #fff;
  color: var(--dnx-color-deep);
}

.dnx-section--paper .dnx-button--secondary:hover,
.dnx-section--soft .dnx-button--secondary:hover {
  background: rgba(4, 120, 87, 0.12);
}

.dnx-hero {
  position: relative;
  overflow: hidden;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--dnx-color-line);
}

.dnx-hero__media {
  position: absolute;
  inset: 0;
}

.dnx-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dnx-hero__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 12, 20, 0.95) 0%, rgba(8, 12, 20, 0.78) 45%, rgba(8, 12, 20, 0.24) 100%),
    linear-gradient(0deg, rgba(8, 12, 20, 0.72), rgba(8, 12, 20, 0.1));
  content: "";
}

.dnx-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-block: 5rem;
}

.dnx-eyebrow {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--dnx-color-emerald);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.dnx-display {
  max-width: 14ch;
  margin-bottom: 1rem;
  color: var(--dnx-color-paper);
  font-family: var(--dnx-font-display);
  font-size: clamp(3rem, 6vw, 4.35rem);
  font-weight: 600;
  line-height: 0.98;
}

h2 {
  color: var(--dnx-color-paper);
  font-family: var(--dnx-font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
}

h3 {
  color: var(--dnx-color-paper);
  font-size: 1.18rem;
  line-height: 1.25;
}

.dnx-lede {
  max-width: 62ch;
  color: #D7E0EA;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

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

.dnx-quick-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}

.dnx-quick-proof li {
  border: 1px solid var(--dnx-color-line);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: #D7E0EA;
  background: rgba(15, 23, 42, 0.58);
  font-size: 0.88rem;
}

.dnx-section {
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}

.dnx-section--paper {
  background: var(--dnx-color-paper);
  color: var(--dnx-color-deep);
}

.dnx-section--paper h2,
.dnx-section--paper h3 {
  color: var(--dnx-color-deep);
}

.dnx-section--paper .dnx-eyebrow,
.dnx-section--paper .dnx-list li::before,
.dnx-section--soft .dnx-eyebrow,
.dnx-section--soft .dnx-list li::before {
  color: var(--dnx-color-emerald-contrast);
}

.dnx-section--soft {
  background: var(--dnx-color-soft);
  color: var(--dnx-color-deep);
}

.dnx-section--soft h2,
.dnx-section--soft h3 {
  color: var(--dnx-color-deep);
}

.dnx-section__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(18rem, 0.55fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.dnx-section__intro p {
  color: inherit;
  opacity: 0.82;
}

.dnx-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.dnx-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--dnx-color-line);
  border-radius: var(--dnx-radius);
  padding: 1.2rem;
  background: rgba(248, 250, 252, 0.055);
  color: #DCE6EF;
}

.dnx-section--paper .dnx-card,
.dnx-section--soft .dnx-card {
  border-color: rgba(15, 23, 42, 0.14);
  background: #fff;
  color: #27364A;
}

.dnx-card__meta,
.dnx-proof-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  padding: 0.32rem 0.55rem;
  background: rgba(16, 185, 129, 0.14);
  color: #065F46;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dnx-hero-proof .dnx-proof-label,
.dnx-service-story .dnx-proof-label,
.dnx-work-card .dnx-proof-label {
  background: rgba(16, 185, 129, 0.18);
  color: #A7F3D0;
}

.dnx-card__link {
  align-self: flex-start;
  margin-top: auto;
}

.dnx-proof-card {
  overflow: hidden;
  padding: 0;
}

.dnx-proof-card picture {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  flex: none;
}

.dnx-proof-card picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  background: #fff;
}

.dnx-proof-card__demo {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  flex: none;
}

.dnx-proof-card__demo .dnx-demo-panel {
  min-height: 100%;
}

.dnx-proof-card__body {
  padding: 1rem;
}

.dnx-hero--proof {
  min-height: auto;
  background:
    radial-gradient(circle at 85% 20%, rgba(16, 185, 129, 0.18), transparent 28rem),
    linear-gradient(135deg, #080C14 0%, #0F172A 54%, #121A29 100%);
}

.dnx-hero--proof .dnx-container {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(18rem, 0.72fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
  justify-content: space-between;
  padding-block: clamp(4rem, 8vw, 6.5rem);
}

.dnx-hero__copy {
  max-width: 760px;
}

.dnx-hero__artifact-map {
  position: relative;
  min-height: 25rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 185, 129, 0.08), transparent 24%, transparent 76%, rgba(182, 83, 63, 0.1)),
    linear-gradient(135deg, rgba(248, 250, 252, 0.08), rgba(248, 250, 252, 0.02)),
    radial-gradient(circle at 68% 18%, rgba(16, 185, 129, 0.18), transparent 9rem),
    radial-gradient(circle at 18% 82%, rgba(182, 83, 63, 0.18), transparent 8rem);
  box-shadow: var(--dnx-shadow);
  overflow: hidden;
  isolation: isolate;
}

.dnx-hero__artifact-map::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(248, 250, 252, 0.08);
  border-radius: 7px;
  background:
    linear-gradient(rgba(248, 250, 252, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 250, 252, 0.07) 1px, transparent 1px);
  background-size: 2.8rem 2.8rem;
  content: "";
  opacity: 0.45;
}

.dnx-hero__artifact-map::after {
  position: absolute;
  inset: 1.75rem;
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(16, 185, 129, 0.12) 18% 19%, transparent 19% 50%, rgba(182, 83, 63, 0.12) 50% 51%, transparent 51%),
    linear-gradient(rgba(248, 250, 252, 0.08), rgba(248, 250, 252, 0.08)) 50% 50% / 64% 1px no-repeat;
  content: "";
  opacity: 0.55;
}

.dnx-artifact-card {
  position: absolute;
  z-index: 1;
  display: block;
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(8, 12, 20, 0.86)),
    linear-gradient(180deg, rgba(248, 250, 252, 0.08), transparent);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.dnx-artifact-card::before,
.dnx-artifact-card::after {
  position: absolute;
  left: 1rem;
  right: 1rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.18);
  content: "";
}

.dnx-artifact-card::before {
  top: 1rem;
}

.dnx-artifact-card::after {
  top: 2rem;
  right: 2.4rem;
  background: rgba(16, 185, 129, 0.42);
}

.dnx-artifact-card--page {
  top: 2.2rem;
  left: 1.8rem;
  width: 56%;
  height: 9rem;
  box-shadow: 0.75rem 0.75rem 0 -0.35rem rgba(248, 250, 252, 0.1), 0 18px 48px rgba(0, 0, 0, 0.24);
}

.dnx-artifact-card--files {
  right: 2rem;
  top: 8.4rem;
  width: 48%;
  height: 8rem;
  border-radius: 8px 8px 18px 8px;
}

.dnx-artifact-card--files::before {
  box-shadow: 0 1.25rem 0 rgba(248, 250, 252, 0.13), 0 2.5rem 0 rgba(248, 250, 252, 0.1);
}

.dnx-artifact-card--owner {
  bottom: 2rem;
  left: 18%;
  width: 58%;
  height: 7.4rem;
  background:
    radial-gradient(circle at 2.2rem 2.1rem, rgba(16, 185, 129, 0.22) 0 1rem, transparent 1.05rem),
    linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(8, 12, 20, 0.86));
}

.dnx-artifact-card--owner::after {
  background: rgba(182, 83, 63, 0.52);
}

.dnx-artifact-line {
  position: absolute;
  z-index: 0;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0), rgba(16, 185, 129, 0.76), rgba(182, 83, 63, 0));
  transform-origin: left center;
}

.dnx-artifact-line--one {
  top: 11rem;
  left: 34%;
  width: 42%;
  transform: rotate(16deg);
}

.dnx-artifact-line--two {
  right: 19%;
  bottom: 9.3rem;
  width: 38%;
  transform: rotate(-21deg);
}

.dnx-hero__proof-stack {
  display: grid;
  gap: 0.9rem;
}

.dnx-product-card {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 8px;
  padding: 1.65rem;
  background:
    linear-gradient(145deg, rgba(18, 26, 41, 0.98), rgba(8, 12, 20, 0.94)),
    radial-gradient(circle at 86% 12%, rgba(16, 185, 129, 0.14), transparent 12rem);
  box-shadow: var(--dnx-shadow);
}

.dnx-product-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dnx-product-card__icon {
  position: relative;
  display: grid;
  width: 4.7rem;
  aspect-ratio: 1;
  flex: none;
  place-items: center;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.82);
  box-shadow: inset 0 0 0 1px rgba(248, 250, 252, 0.05);
}

.dnx-product-card__icon span {
  display: block;
  border-radius: 3px;
  background: currentColor;
}

.dnx-product-card__icon span:nth-child(1) {
  width: 1.7rem;
  height: 2.2rem;
  border: 1px solid currentColor;
  background: transparent;
}

.dnx-product-card__icon span:nth-child(2) {
  position: absolute;
  width: 2.4rem;
  height: 0.2rem;
  transform: rotate(24deg);
  opacity: 0.8;
}

.dnx-product-card__icon span:nth-child(3) {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
}

.dnx-product-card__pill {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(96, 165, 250, 0.32);
  border-radius: 999px;
  padding: 0.38rem 0.7rem;
  background: rgba(37, 99, 235, 0.18);
  color: #93C5FD;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.dnx-product-card h2 {
  margin: 0;
  color: #F8FAFC;
  font-family: var(--dnx-font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.15;
}

.dnx-product-card p {
  margin: 0;
  color: #AEBACC;
  font-size: 0.96rem;
}

.dnx-product-card__divider {
  height: 1px;
  background: rgba(148, 163, 184, 0.18);
}

.dnx-product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dnx-product-card__tags li {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 6px;
  padding: 0.32rem 0.58rem;
  background: rgba(248, 250, 252, 0.06);
  color: #D7E0EA;
  font-size: 0.78rem;
  font-weight: 850;
}

.dnx-product-card--emerald .dnx-product-card__icon,
.dnx-product-card--emerald .dnx-product-card__pill {
  color: #34D399;
}

.dnx-product-card--blue .dnx-product-card__icon,
.dnx-product-card--blue .dnx-product-card__pill {
  color: #60A5FA;
}

.dnx-product-card--copper .dnx-product-card__icon,
.dnx-product-card--copper .dnx-product-card__pill {
  color: #F59E0B;
}

.dnx-hero-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(10rem, 0.82fr);
  align-items: stretch;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(18, 26, 41, 0.92);
  box-shadow: var(--dnx-shadow);
}

.dnx-hero-proof--offset {
  width: min(94%, 30rem);
  margin-left: auto;
}

.dnx-hero-proof picture {
  display: block;
  aspect-ratio: 5 / 3;
  overflow: hidden;
  background: #fff;
}

.dnx-hero-proof > .dnx-demo-panel,
.dnx-hero-proof > .dnx-relationship-panel {
  min-height: 10rem;
  border-radius: 0;
}

.dnx-hero-proof img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dnx-hero-proof__body {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
}

.dnx-service-story {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #334155;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 26, 41, 0.98), #0F172A);
  color: #DCE6EF;
  box-shadow: 0 18px 44px rgba(8, 12, 20, 0.16);
}

.dnx-service-story__visual {
  position: relative;
  aspect-ratio: 5 / 3;
  min-height: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(182, 83, 63, 0.14)),
    #0F172A;
  padding: 0.55rem;
}

.dnx-service-story__visual::after {
  position: absolute;
  inset: 0.55rem;
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 32%),
    linear-gradient(0deg, rgba(8, 12, 20, 0.08), transparent 42%);
  content: "";
  pointer-events: none;
}

.dnx-service-story__visual picture {
  display: block;
  height: 100%;
  min-height: 0;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}

.dnx-service-story__visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.dnx-demo-panel,
.dnx-relationship-panel,
.dnx-held-panel {
  display: grid;
  min-height: 100%;
  align-content: center;
  gap: 0.8rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(8, 12, 20, 0.95), rgba(15, 23, 42, 0.82)),
    radial-gradient(circle at 80% 18%, rgba(16, 185, 129, 0.18), transparent 10rem);
  color: #E5EDF7;
}

.dnx-held-panel {
  position: relative;
  gap: 0.6rem;
  border: 1px dashed rgba(248, 250, 252, 0.28);
  overflow: hidden;
}

.dnx-held-panel::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 4.8rem;
  height: 3.2rem;
  border: 1px solid rgba(248, 250, 252, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.18), rgba(248, 250, 252, 0.18)) 0.7rem 0.75rem / 2.6rem 0.25rem no-repeat,
    linear-gradient(90deg, rgba(182, 83, 63, 0.58), rgba(16, 185, 129, 0.58)) 0.7rem 1.45rem / 3.4rem 0.25rem no-repeat,
    rgba(248, 250, 252, 0.04);
  content: "";
  opacity: 0.8;
}

.dnx-held-panel--compact {
  aspect-ratio: 5 / 3;
}

.dnx-held-panel span {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(16, 185, 129, 0.32);
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  background: rgba(16, 185, 129, 0.11);
  color: #A7F3D0;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dnx-held-panel strong {
  color: #F8FAFC;
  font-size: 1rem;
  line-height: 1.2;
}

.dnx-held-panel p {
  margin: 0;
  color: #CBD5E1;
  font-size: 0.82rem;
}

.dnx-demo-panel p {
  margin: 0;
  color: #CBD5E1;
  font-size: 0.82rem;
  line-height: 1.45;
}

.dnx-demo-panel--light {
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.2)),
    #F3EFE8;
  color: #111827;
}

.dnx-light-browser,
.dnx-light-config,
.dnx-light-rules {
  position: relative;
  width: min(13rem, 82%);
  aspect-ratio: 16 / 9;
  border: 2px solid #D65B46;
  border-radius: 8px;
  background: #FFFDF8;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.dnx-light-browser span,
.dnx-light-config span,
.dnx-light-rules span {
  position: absolute;
  left: 1rem;
  height: 0.34rem;
  border-radius: 999px;
  background: #E9B6A9;
}

.dnx-light-browser span:nth-child(1),
.dnx-light-rules span:nth-child(1) {
  top: 1rem;
  width: 4.6rem;
}

.dnx-light-browser span:nth-child(2),
.dnx-light-rules span:nth-child(2) {
  top: 1.9rem;
  width: 6.5rem;
  background: #CFC7BB;
}

.dnx-light-browser span:nth-child(3) {
  top: 2.75rem;
  width: 8.2rem;
  background: #D8D1C6;
}

.dnx-light-browser strong,
.dnx-light-rules em {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 2rem;
  aspect-ratio: 1;
  border-radius: 999px;
  background: #D65B46;
}

.dnx-light-browser::after,
.dnx-light-config::after,
.dnx-light-rules::after {
  position: absolute;
  right: 1rem;
  left: 1rem;
  bottom: 0.9rem;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #2F8A55 0 36%, #D8D1C6 36%);
  content: "";
}

.dnx-light-config {
  display: grid;
  place-items: center;
  width: min(14.5rem, 88%);
  border-color: #DDD6CA;
}

.dnx-light-config span {
  top: 50%;
  width: 4.2rem;
  height: 4.2rem;
  border: 2px solid #D65B46;
  border-radius: 8px;
  transform: translateY(-50%);
  background: #FFF7F0;
}

.dnx-light-config span:nth-child(1) {
  left: 1.1rem;
}

.dnx-light-config span:nth-child(2) {
  right: 1.1rem;
  left: auto;
  border-color: #2F8A55;
  background: #F5FFF8;
}

.dnx-light-config strong {
  position: absolute;
  width: 2rem;
  height: 2px;
  background: #D65B46;
}

.dnx-light-config strong::after {
  position: absolute;
  right: -0.1rem;
  top: -0.32rem;
  width: 0.72rem;
  height: 0.72rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: #D65B46;
  transform: rotate(45deg);
  content: "";
}

.dnx-light-config em,
.dnx-light-rules strong {
  position: absolute;
  right: 2.3rem;
  top: 50%;
  width: 1.8rem;
  height: 0.9rem;
  border-right: 4px solid #2F8A55;
  border-bottom: 4px solid #2F8A55;
  transform: translateY(-70%) rotate(45deg);
}

.dnx-light-rules {
  width: min(14.5rem, 88%);
  border-color: #DDD6CA;
}

.dnx-light-rules::before,
.dnx-light-config::before,
.dnx-light-browser::before {
  position: absolute;
  right: -1.05rem;
  top: 0.55rem;
  width: 2.2rem;
  height: 4rem;
  border-top: 3px solid #D65B46;
  border-right: 3px solid #D65B46;
  border-radius: 0 14px 0 0;
  content: "";
}

.dnx-light-rules strong {
  right: 2.2rem;
}

.dnx-light-rules em {
  background: #2F8A55;
}

.dnx-demo-panel--compact {
  min-height: 9.5rem;
}

.dnx-demo-panel--stacked {
  gap: 0.55rem;
}

.dnx-demo-panel--stacked span {
  position: relative;
  display: block;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 8px;
  padding: 0.62rem 0.75rem;
  background: rgba(16, 185, 129, 0.09);
  color: #F8FAFC;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.2;
}

.dnx-demo-panel--stacked span + span::before {
  position: absolute;
  top: -0.56rem;
  left: 1rem;
  width: 2px;
  height: 0.56rem;
  background: rgba(16, 185, 129, 0.55);
  content: "";
}

.dnx-demo-product {
  position: relative;
  width: min(8rem, 72%);
  aspect-ratio: 5 / 4;
  justify-self: center;
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: 8px 8px 5px 5px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 50%, rgba(255,255,255,0.08) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(135deg, #263241, #B6533F);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.dnx-demo-product--wide {
  width: min(10rem, 84%);
  aspect-ratio: 16 / 10;
}

.dnx-demo-product span {
  position: absolute;
  right: 18%;
  bottom: 12%;
  left: 18%;
  height: 7px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.72);
}

.dnx-demo-swatches {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.dnx-demo-swatches span {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(248, 250, 252, 0.76);
  border-radius: 999px;
  background: #334155;
}

.dnx-demo-swatches span:nth-child(2) {
  background: #B6533F;
}

.dnx-demo-swatches span:nth-child(3) {
  background: #C7A76C;
}

.dnx-demo-shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.dnx-demo-shelf span {
  aspect-ratio: 1;
  border: 1px solid rgba(248, 250, 252, 0.16);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.2), rgba(248, 250, 252, 0.03)),
    #172033;
}

.dnx-demo-cart {
  display: grid;
  gap: 0.25rem;
  justify-items: start;
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: 8px;
  padding: 0.8rem;
  background: rgba(16, 185, 129, 0.11);
}

.dnx-demo-cart strong {
  display: block;
  margin-bottom: 0.1rem;
  color: #F8FAFC;
  line-height: 1.2;
}

.dnx-demo-cart span {
  display: block;
  width: 100%;
  color: #CBD5E1;
  font-size: 0.82rem;
  line-height: 1.25;
}

.dnx-parametric-inputs {
  display: grid;
  gap: 0.58rem;
}

.dnx-parametric-inputs label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
  min-width: 0;
  color: #DCE6EF;
  font-size: 0.82rem;
  font-weight: 800;
}

.dnx-parametric-inputs label span,
.dnx-parametric-inputs output {
  display: block;
  line-height: 1.2;
}

.dnx-parametric-inputs > span {
  display: block;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #10B981 0 64%, rgba(248, 250, 252, 0.16) 64%);
}

.dnx-parametric-inputs label:nth-of-type(2) + span {
  background: linear-gradient(90deg, #B6533F 0 78%, rgba(248, 250, 252, 0.16) 78%);
}

.dnx-parametric-output {
  border: 1px solid rgba(248, 250, 252, 0.16);
  border-radius: 8px;
  padding: 0.75rem;
  background: rgba(248, 250, 252, 0.08);
  color: #F8FAFC;
  font-weight: 900;
}

.dnx-relationship-panel {
  grid-template-columns: 1fr;
}

.dnx-relationship-panel span {
  position: relative;
  display: block;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  background: rgba(16, 185, 129, 0.09);
  color: #F8FAFC;
  font-size: 0.86rem;
  font-weight: 900;
}

.dnx-relationship-panel span + span::before {
  position: absolute;
  top: -0.72rem;
  left: 1.1rem;
  width: 2px;
  height: 0.72rem;
  background: rgba(16, 185, 129, 0.55);
  content: "";
}

.dnx-service-story__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.2rem;
}

.dnx-service-story--text-only .dnx-service-story__body {
  padding-top: 1.4rem;
}

.dnx-service-story__status {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.32rem 0.58rem;
  background: rgba(16, 185, 129, 0.14);
  color: #A7F3D0;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dnx-service-story h2,
.dnx-service-story h3 {
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
  color: #F8FAFC;
  font-family: var(--dnx-font-body);
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 850;
  line-height: 1.08;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.dnx-service-story__chips,
.dnx-service-story__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dnx-service-story__chips li {
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  color: #CBD5E1;
  font-size: 0.78rem;
  font-weight: 800;
}

.dnx-service-story__proof {
  display: grid;
  gap: 0.5rem;
  color: #CBD5E1;
}

.dnx-service-story__proof li {
  border-left: 3px solid rgba(16, 185, 129, 0.7);
  padding-left: 0.7rem;
}

.dnx-service-story__link {
  align-self: flex-start;
  margin-top: auto;
  color: #F8FAFC;
  font-weight: 900;
  text-decoration-color: var(--dnx-color-copper);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.dnx-service-story:focus-within {
  border-color: rgba(16, 185, 129, 0.72);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.18), 0 18px 44px rgba(8, 12, 20, 0.16);
}

.dnx-service-story__link:hover {
  color: #A7F3D0;
}

.dnx-section--paper + .dnx-section {
  border-top: 1px solid rgba(248, 250, 252, 0.08);
}

.dnx-proof-card {
  position: relative;
  box-shadow: 0 16px 42px rgba(8, 12, 20, 0.14);
}

.dnx-proof-card::after {
  position: absolute;
  inset: auto 1rem 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--dnx-color-emerald), var(--dnx-color-copper));
  content: "";
  opacity: 0.7;
}

.dnx-proof-card__demo {
  position: relative;
  background: #0F172A;
}

.dnx-proof-card__demo::before,
.dnx-proof-card__demo::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.dnx-proof-card__demo::before {
  inset: 1rem 1.15rem auto auto;
  width: 5rem;
  height: 3.15rem;
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(rgba(248, 250, 252, 0.22), rgba(248, 250, 252, 0.22)) 0.75rem 0.75rem / 2.7rem 0.28rem no-repeat,
    linear-gradient(rgba(16, 185, 129, 0.42), rgba(16, 185, 129, 0.42)) 0.75rem 1.45rem / 3.4rem 0.28rem no-repeat,
    rgba(8, 12, 20, 0.42);
}

.dnx-proof-card__demo::after {
  right: 2rem;
  bottom: 1.15rem;
  width: 36%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0), rgba(16, 185, 129, 0.72), rgba(182, 83, 63, 0.76));
}

.dnx-work-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(18rem, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.dnx-work-stack {
  display: grid;
  gap: 1rem;
}

.dnx-work-card h2,
.dnx-work-card h3 {
  font-family: var(--dnx-font-body);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 850;
}

.dnx-work-card {
  min-height: auto;
}

.dnx-work-card__link {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.75rem;
  color: var(--dnx-color-deep);
  font-weight: 900;
  text-decoration-color: var(--dnx-color-copper);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}

.dnx-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.dnx-timeline::before {
  position: absolute;
  top: 2.25rem;
  right: 8%;
  left: 8%;
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(4, 120, 87, 0.18), rgba(4, 120, 87, 0.62), rgba(182, 83, 63, 0.5)),
    rgba(15, 23, 42, 0.16);
  content: "";
}

.dnx-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.6rem;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 8px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.dnx-step__artifact {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 999px;
  padding: 0.28rem 0.58rem;
  background: rgba(4, 120, 87, 0.1);
  color: #065F46;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dnx-step__number {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 999px;
  background: var(--dnx-color-deep);
  color: var(--dnx-color-paper);
  font-weight: 900;
}

.dnx-step h2,
.dnx-step h3 {
  color: var(--dnx-color-deep);
  font-family: var(--dnx-font-body);
  font-size: 1.55rem;
  font-weight: 850;
}

.dnx-evidence {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: center;
}

.dnx-evidence picture {
  display: block;
  aspect-ratio: 30 / 13;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 8px;
  background: #fff;
}

.dnx-evidence .dnx-proof-card picture {
  aspect-ratio: 5 / 3;
}

.dnx-evidence img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dnx-evidence .dnx-proof-card img {
  object-fit: contain;
}

.dnx-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dnx-principle-card {
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 1.2rem;
  background: #121A29;
  color: #DCE6EF;
}

.dnx-principle-card h2,
.dnx-principle-card h3 {
  color: #F8FAFC;
  font-family: var(--dnx-font-body);
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 850;
}

.dnx-field[hidden] {
  display: none;
}

.dnx-pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.dnx-price {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.dnx-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dnx-list li {
  position: relative;
  padding-left: 1.35rem;
}

.dnx-list li::before {
  position: absolute;
  left: 0;
  color: var(--dnx-color-emerald);
  content: ">";
  font-weight: 900;
}

.dnx-form {
  display: grid;
  gap: 1rem;
}

.dnx-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dnx-field {
  display: grid;
  gap: 0.35rem;
}

.dnx-field label {
  color: var(--dnx-color-paper);
  font-weight: 800;
}

.dnx-section--paper .dnx-field label {
  color: var(--dnx-color-deep);
}

.dnx-field input,
.dnx-field select,
.dnx-field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(15, 23, 42, 0.28);
  border-radius: 7px;
  padding: 0.75rem;
  background: #fff;
  color: var(--dnx-color-deep);
}

.dnx-field textarea {
  min-height: 150px;
  resize: vertical;
}

.dnx-form__note,
.dnx-status {
  color: inherit;
  opacity: 0.8;
  font-size: 0.92rem;
}

.dnx-status {
  border-left: 4px solid var(--dnx-color-emerald);
  padding: 0.8rem 1rem;
  background: rgba(16, 185, 129, 0.1);
}

.dnx-status[data-state="error"] {
  border-left-color: var(--dnx-color-copper);
  background: rgba(182, 83, 63, 0.12);
}

.dnx-faq {
  display: grid;
  gap: 0.75rem;
}

.dnx-faq details {
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: var(--dnx-radius);
  padding: 1rem;
  background: #fff;
}

.dnx-faq summary {
  cursor: pointer;
  color: var(--dnx-color-deep);
  font-weight: 850;
}

/* Whole-site visual polish - DIS-3836 */
.dnx-page {
  --dnx-page-art: image-set(
    url("/assets/img/sitewide-visual-kit-blender/dnx-owned-files-route-1600w.webp") 2x,
    url("/assets/img/sitewide-visual-kit-blender/dnx-owned-files-route-600w.webp") 1x
  );
}

.dnx-page-services,
.dnx-page-how {
  --dnx-page-art: image-set(
    url("/assets/img/sitewide-visual-kit-blender/dnx-migration-handoff-1200w.webp") 2x,
    url("/assets/img/sitewide-visual-kit-blender/dnx-migration-handoff-600w.webp") 1x
  );
}

.dnx-page-pricing,
.dnx-page-ecommerce {
  --dnx-page-art: image-set(
    url("/assets/img/sitewide-visual-kit-blender/dnx-approved-terms-1200w.webp") 2x,
    url("/assets/img/sitewide-visual-kit-blender/dnx-approved-terms-600w.webp") 1x
  );
}

.dnx-page-contact {
  --dnx-page-art: image-set(
    url("/assets/img/sitewide-visual-kit-blender/dnx-contact-route-1200w.webp") 2x,
    url("/assets/img/sitewide-visual-kit-blender/dnx-contact-route-600w.webp") 1x
  );
}

.dnx-page-work,
.dnx-page-about {
  --dnx-page-art: image-set(
    url("/assets/img/sitewide-visual-kit-blender/dnx-owned-files-route-1600w.webp") 2x,
    url("/assets/img/sitewide-visual-kit-blender/dnx-owned-files-route-600w.webp") 1x
  );
}

.dnx-page:not(.dnx-page-home) main > .dnx-section:first-child {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--dnx-color-line);
  background:
    radial-gradient(circle at 82% 18%, rgba(16, 185, 129, 0.18), transparent 28rem),
    radial-gradient(circle at 14% 78%, rgba(182, 83, 63, 0.16), transparent 20rem),
    linear-gradient(135deg, #080C14 0%, #0F172A 58%, #121A29 100%);
}

.dnx-page:not(.dnx-page-home) main > .dnx-section:first-child .dnx-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(18rem, 0.45fr);
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.dnx-page:not(.dnx-page-home) main > .dnx-section:first-child .dnx-container::after {
  display: block;
  min-height: clamp(15rem, 30vw, 23rem);
  border: 1px solid rgba(248, 250, 252, 0.18);
  border-radius: var(--dnx-radius);
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.14), rgba(248, 250, 252, 0.02)),
    center / cover no-repeat var(--dnx-page-art);
  box-shadow: var(--dnx-shadow);
  content: "";
}

.dnx-page:not(.dnx-page-home) main > .dnx-section:first-child .dnx-container::before {
  position: absolute;
  right: min(3vw, 2rem);
  bottom: clamp(2rem, 5vw, 4rem);
  z-index: 2;
  width: min(42%, 22rem);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0), var(--dnx-color-emerald), var(--dnx-color-copper));
  content: "";
}

.dnx-section--paper,
.dnx-section--soft {
  position: relative;
}

.dnx-section--paper::before,
.dnx-section--soft::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--dnx-color-emerald), transparent 34%, var(--dnx-color-copper));
  content: "";
  opacity: 0.65;
}

.dnx-section--paper .dnx-card,
.dnx-section--soft .dnx-card,
.dnx-principle-card,
.dnx-step,
.dnx-faq details {
  position: relative;
  overflow: hidden;
}

.dnx-section--paper .dnx-card::before,
.dnx-section--soft .dnx-card::before,
.dnx-principle-card::before,
.dnx-step::before,
.dnx-faq details::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--dnx-color-emerald), var(--dnx-color-copper));
  content: "";
  opacity: 0.82;
}

.dnx-pricing .dnx-card,
.dnx-faq details {
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.dnx-evidence > picture,
.dnx-work-card picture,
.dnx-proof-card picture,
.dnx-service-story__visual picture,
.dnx-service-story__visual .dnx-demo-panel {
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.dnx-service-story__visual {
  background:
    linear-gradient(90deg, rgba(16, 185, 129, 0.18), transparent 24%, transparent 76%, rgba(182, 83, 63, 0.16)),
    linear-gradient(135deg, rgba(248, 250, 252, 0.08), rgba(248, 250, 252, 0.02)),
    #0F172A;
}

.dnx-service-story__visual::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(248, 250, 252, 0.08);
  border-radius: 7px;
  content: "";
  pointer-events: none;
}

.dnx-work-layout {
  position: relative;
}

.dnx-work-layout::before {
  position: absolute;
  inset: 1.4rem -0.7rem auto auto;
  width: min(36vw, 19rem);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0), var(--dnx-color-emerald), var(--dnx-color-copper));
  content: "";
}

/* Legacy marketing/content pages moved onto the dnx shell. */
.dnx-legacy-page {
  --color-bg: var(--dnx-color-midnight);
  --color-bg-warm: var(--dnx-color-soft);
  --color-bg-warm-2: #DDEBE7;
  --color-surface: #fff;
  --color-ink: var(--dnx-color-deep);
  --color-ink-soft: #334155;
  --color-ink-muted: #475569;
  --color-ink-dim: #64748B;
  --color-ink-fade: #94A3B8;
  --color-line: rgba(15, 23, 42, 0.14);
  --color-line-strong: rgba(15, 23, 42, 0.24);
  --color-accent: var(--dnx-color-copper);
  --color-accent-dark: var(--dnx-color-copper-hover);
  --color-accent-deep: #843525;
  --color-accent-tint: rgba(182, 83, 63, 0.12);
  --color-success: var(--dnx-color-emerald-contrast);
  --color-success-tint: rgba(16, 185, 129, 0.12);
  --color-save: var(--dnx-color-emerald-contrast);
  --color-save-tint: rgba(16, 185, 129, 0.12);
  --color-price-bg: var(--dnx-color-deep);
  --color-hero-from: var(--dnx-color-midnight);
  --color-hero-to: var(--dnx-color-deep);
  --color-ink-on-dark: #CBD5E1;
  --color-ink-on-dark-2: #E2E8F0;
  --font-display: var(--dnx-font-display);
  --font-body: var(--dnx-font-body);
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --radius-sm: 6px;
  --radius: var(--dnx-radius);
  --radius-lg: var(--dnx-radius);
  --radius-xl: var(--dnx-radius);
  --shadow-card: 0 18px 48px rgba(15, 23, 42, 0.12);
  --shadow-card-h: 0 24px 60px rgba(15, 23, 42, 0.18);
  --container-w: 1120px;
  --pad-x: 1rem;
  background: var(--dnx-color-midnight);
}

.dnx-legacy-page .container {
  width: min(var(--container-w), calc(100% - 2rem));
  max-width: none;
  margin-inline: auto;
  padding: 0;
}

.dnx-legacy-page main {
  background: var(--dnx-color-midnight);
}

.dnx-legacy-page .section,
.dnx-legacy-page .pgh-section,
.dnx-legacy-page .pgh-cta,
.dnx-legacy-page .founding-hero,
.dnx-legacy-page .blog-article,
.dnx-legacy-page .post-hero {
  padding-block: clamp(3.5rem, 8vw, 6rem);
}

.dnx-legacy-page .section-light,
.dnx-legacy-page .pgh-hero,
.dnx-legacy-page .founding-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(16, 185, 129, 0.16), transparent 26rem),
    radial-gradient(circle at 12% 16%, rgba(182, 83, 63, 0.17), transparent 23rem),
    linear-gradient(135deg, var(--dnx-color-midnight), var(--dnx-color-deep));
  color: #D7E0EA;
}

.dnx-legacy-page .section-light::after,
.dnx-legacy-page .pgh-hero::after,
.dnx-legacy-page .founding-hero::after {
  position: absolute;
  inset: auto max(1rem, calc((100vw - 1120px) / 2)) 2.5rem auto;
  width: min(34vw, 24rem);
  aspect-ratio: 5 / 3;
  border: 1px solid var(--dnx-color-line);
  border-radius: var(--dnx-radius);
  background: center / cover no-repeat var(--dnx-legacy-art, image-set(url("/assets/img/sitewide-visual-kit-blender/dnx-owned-files-route-1600w.webp") 2x, url("/assets/img/sitewide-visual-kit-blender/dnx-owned-files-route-600w.webp") 1x));
  box-shadow: var(--dnx-shadow);
  opacity: 0.78;
  content: "";
}

.dnx-legacy-owned { --dnx-legacy-art: image-set(url("/assets/img/sitewide-visual-kit-blender/dnx-owned-files-route-1600w.webp") 2x, url("/assets/img/sitewide-visual-kit-blender/dnx-owned-files-route-600w.webp") 1x); }
.dnx-legacy-migration { --dnx-legacy-art: image-set(url("/assets/img/sitewide-visual-kit-blender/dnx-migration-handoff-1200w.webp") 2x, url("/assets/img/sitewide-visual-kit-blender/dnx-migration-handoff-600w.webp") 1x); }
.dnx-legacy-support { --dnx-legacy-art: image-set(url("/assets/img/sitewide-visual-kit-blender/dnx-support-export-800w.webp") 2x, url("/assets/img/sitewide-visual-kit-blender/dnx-support-export-600w.webp") 1x); }
.dnx-legacy-terms { --dnx-legacy-art: image-set(url("/assets/img/sitewide-visual-kit-blender/dnx-approved-terms-1200w.webp") 2x, url("/assets/img/sitewide-visual-kit-blender/dnx-approved-terms-600w.webp") 1x); }
.dnx-legacy-contact { --dnx-legacy-art: image-set(url("/assets/img/sitewide-visual-kit-blender/dnx-contact-route-1200w.webp") 2x, url("/assets/img/sitewide-visual-kit-blender/dnx-contact-route-600w.webp") 1x); }
.dnx-legacy-article,
.dnx-legacy-location { --dnx-legacy-art: image-set(url("/assets/img/sitewide-visual-kit-blender/dnx-field-note-location-800w.webp") 2x, url("/assets/img/sitewide-visual-kit-blender/dnx-field-note-location-600w.webp") 1x); }

.dnx-legacy-page .section-light > .container,
.dnx-legacy-page .pgh-hero > .container,
.dnx-legacy-page .founding-hero > .container {
  position: relative;
  z-index: 1;
}

.dnx-legacy-page .section-white,
.dnx-legacy-page .pgh-section,
.dnx-legacy-page .blog-list,
.dnx-legacy-page .blog-article,
.dnx-legacy-page .post-content {
  background: var(--dnx-color-paper);
  color: var(--dnx-color-deep);
}

.dnx-legacy-page .section-warm,
.dnx-legacy-page .pgh-section-warm {
  background: var(--dnx-color-soft);
  color: var(--dnx-color-deep);
}

.dnx-legacy-page .section-accent,
.dnx-legacy-page .section-dark,
.dnx-legacy-page .pgh-cta {
  background: var(--dnx-color-deep);
  color: var(--dnx-color-paper);
}

.dnx-legacy-page h1,
.dnx-legacy-page h2 {
  font-family: var(--dnx-font-display);
  letter-spacing: 0;
}

.dnx-legacy-page .section-light h1,
.dnx-legacy-page .section-light h2,
.dnx-legacy-page .pgh-hero h1,
.dnx-legacy-page .founding-hero h1,
.dnx-legacy-page .section-accent h2,
.dnx-legacy-page .pgh-cta h2 {
  color: var(--dnx-color-paper);
}

.dnx-legacy-page .section-white h1,
.dnx-legacy-page .section-white h2,
.dnx-legacy-page .section-white h3,
.dnx-legacy-page .section-warm h1,
.dnx-legacy-page .section-warm h2,
.dnx-legacy-page .section-warm h3,
.dnx-legacy-page .pgh-section h1,
.dnx-legacy-page .pgh-section h2,
.dnx-legacy-page .pgh-section h3,
.dnx-legacy-page .blog-list h1,
.dnx-legacy-page .blog-list a,
.dnx-legacy-page .post-content h1,
.dnx-legacy-page .post-content h2,
.dnx-legacy-page .post-content h3 {
  color: var(--dnx-color-deep);
}

.dnx-legacy-page .hero,
.dnx-legacy-page .section-label,
.dnx-legacy-page .section-header,
.dnx-legacy-page .post-hero,
.dnx-legacy-page .blog-list {
  max-width: 760px;
}

.dnx-legacy-page .hero p,
.dnx-legacy-page .subtitle,
.dnx-legacy-page .section-light p,
.dnx-legacy-page .founding-hero p {
  max-width: 62ch;
  color: #D7E0EA !important;
  font-size: clamp(1.06rem, 2vw, 1.24rem);
}

.dnx-legacy-page .section-label,
.dnx-legacy-page .section-header {
  margin-inline: auto;
  margin-bottom: 2rem;
  text-align: center;
}

.dnx-legacy-page .section-label p,
.dnx-legacy-page .section-header p,
.dnx-legacy-page .pgh-section p,
.dnx-legacy-page .blog-list p,
.dnx-legacy-page .post-excerpt,
.dnx-legacy-page .post-meta-line {
  color: #475569;
}

.dnx-legacy-page .eyebrow,
.dnx-legacy-page .section-header .eyebrow,
.dnx-legacy-page .pgh-hero .eyebrow,
.dnx-legacy-page .founding-badge,
.dnx-legacy-page .spoke-card-label,
.dnx-legacy-page .status-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 0.32rem 0.58rem;
  background: rgba(16, 185, 129, 0.14);
  color: #065F46;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dnx-legacy-page .section-light .eyebrow,
.dnx-legacy-page .pgh-hero .eyebrow,
.dnx-legacy-page .founding-badge {
  color: #A7F3D0;
  background: rgba(16, 185, 129, 0.18);
}

.dnx-legacy-page .card-grid,
.dnx-legacy-page .spokes-grid,
.dnx-legacy-page .directory-grid,
.dnx-legacy-page .proof-strip,
.dnx-legacy-page .comparison-grid,
.dnx-legacy-page .benefit-grid,
.dnx-legacy-page .faq-grid,
.dnx-legacy-page .timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: 1rem;
}

.dnx-legacy-page .card,
.dnx-legacy-page .spoke-card,
.dnx-legacy-page .directory-card,
.dnx-legacy-page .proof-tile,
.dnx-legacy-page .offer-card,
.dnx-legacy-page .faq-item,
.dnx-legacy-page .status-card,
.dnx-legacy-page .pgh-stat-box,
.dnx-legacy-page .methodology-box,
.dnx-legacy-page .comparison-card,
.dnx-legacy-page .benefit-card,
.dnx-legacy-page .step,
.dnx-legacy-page .timeline-item {
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: var(--dnx-radius);
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #fff;
  color: #27364A;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  text-decoration: none;
}

.dnx-legacy-page .card,
.dnx-legacy-page .spoke-card,
.dnx-legacy-page .directory-card,
.dnx-legacy-page .proof-tile,
.dnx-legacy-page .offer-card,
.dnx-legacy-page .faq-item,
.dnx-legacy-page .status-card,
.dnx-legacy-page .pgh-stat-box,
.dnx-legacy-page .methodology-box,
.dnx-legacy-page .comparison-card,
.dnx-legacy-page .benefit-card,
.dnx-legacy-page .step,
.dnx-legacy-page .timeline-item {
  position: relative;
  overflow: hidden;
}

.dnx-legacy-page .card::before,
.dnx-legacy-page .spoke-card::before,
.dnx-legacy-page .directory-card::before,
.dnx-legacy-page .proof-tile::before,
.dnx-legacy-page .offer-card::before,
.dnx-legacy-page .faq-item::before,
.dnx-legacy-page .status-card::before,
.dnx-legacy-page .pgh-stat-box::before,
.dnx-legacy-page .methodology-box::before,
.dnx-legacy-page .comparison-card::before,
.dnx-legacy-page .benefit-card::before,
.dnx-legacy-page .step::before,
.dnx-legacy-page .timeline-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--dnx-color-emerald), var(--dnx-color-copper));
  content: "";
  opacity: 0.74;
}

.dnx-legacy-page .card:hover,
.dnx-legacy-page .spoke-card:hover,
.dnx-legacy-page .directory-card:hover,
.dnx-legacy-page .proof-tile:hover {
  border-color: rgba(182, 83, 63, 0.45);
  box-shadow: var(--shadow-card-h);
  color: inherit;
}

.dnx-legacy-page .steps {
  display: grid;
  gap: 1rem;
}

.dnx-legacy-page .step {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
}

.dnx-legacy-page .step-number,
.dnx-legacy-page .timeline-number {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 999px;
  background: var(--dnx-color-deep);
  color: var(--dnx-color-paper);
  font-weight: 900;
}

.dnx-legacy-page .btn,
.dnx-legacy-page .nav-cta,
.dnx-legacy-page .cta-button,
.dnx-legacy-page .try-submit,
.dnx-legacy-page button[type="submit"] {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0.75rem 1rem;
  background: var(--dnx-color-copper);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.dnx-legacy-page .btn:hover,
.dnx-legacy-page .cta-button:hover,
.dnx-legacy-page .try-submit:hover,
.dnx-legacy-page button[type="submit"]:hover {
  background: var(--dnx-color-copper-hover);
  color: #fff;
}

.dnx-legacy-page .btn-secondary {
  border-color: rgba(248, 250, 252, 0.25);
  background: rgba(248, 250, 252, 0.06);
  color: var(--dnx-color-paper);
}

.dnx-legacy-page .section-white .btn-secondary,
.dnx-legacy-page .section-warm .btn-secondary,
.dnx-legacy-page .pgh-section .btn-secondary {
  border-color: rgba(15, 23, 42, 0.28);
  background: #fff;
  color: var(--dnx-color-deep);
}

.dnx-legacy-page .table-scroll {
  overflow-x: auto;
}

.dnx-legacy-page table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: var(--dnx-radius);
  background: #fff;
}

.dnx-legacy-page th,
.dnx-legacy-page td {
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  padding: 0.85rem;
  text-align: left;
  vertical-align: top;
}

.dnx-legacy-page thead th {
  background: var(--dnx-color-deep);
  color: var(--dnx-color-paper);
}

.dnx-legacy-page input,
.dnx-legacy-page select,
.dnx-legacy-page textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(15, 23, 42, 0.28);
  border-radius: 7px;
  padding: 0.75rem;
  background: #fff;
  color: var(--dnx-color-deep);
}

.dnx-legacy-page label {
  color: var(--dnx-color-deep);
  font-weight: 800;
}

.dnx-legacy-page textarea {
  min-height: 150px;
  resize: vertical;
}

.dnx-legacy-page .blog-list {
  padding-inline: 0;
}

.dnx-legacy-page .blog-list ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dnx-legacy-page .blog-list li {
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: var(--dnx-radius);
  padding: 1rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.dnx-legacy-page .blog-list a {
  font-family: var(--dnx-font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.15;
  text-decoration-color: var(--dnx-color-copper);
  text-decoration-thickness: 2px;
}

.dnx-legacy-page article,
.dnx-legacy-page .post-content {
  max-width: 760px;
  margin-inline: auto;
}

.dnx-legacy-page article p,
.dnx-legacy-page article li,
.dnx-legacy-page .post-content p,
.dnx-legacy-page .post-content li {
  color: #334155;
  font-size: 1.02rem;
}

.dnx-legacy-page article a,
.dnx-legacy-page .post-content a,
.dnx-legacy-page .section-white a,
.dnx-legacy-page .section-warm a,
.dnx-legacy-page .pgh-section a {
  color: var(--dnx-color-copper-hover);
}

.dnx-legacy-page .pgh-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.7fr);
  gap: 2rem;
  align-items: center;
}

.dnx-legacy-page .status-dot {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--dnx-color-emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.dnx-legacy-page .status-card {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dnx-legacy-page .result-box.success,
.dnx-legacy-page .status-headline {
  border-left: 4px solid var(--dnx-color-emerald-contrast);
  background: rgba(16, 185, 129, 0.12);
  color: var(--dnx-color-deep);
}

.dnx-legacy-page .result-box.error {
  border-left: 4px solid var(--dnx-color-copper);
  background: rgba(182, 83, 63, 0.12);
  color: var(--dnx-color-deep);
}

@media (max-width: 920px) {
  .dnx-legacy-page .section-light::after,
  .dnx-legacy-page .pgh-hero::after,
  .dnx-legacy-page .founding-hero::after {
    position: relative;
    inset: auto;
    display: block;
    width: min(100%, 28rem);
    margin: 2rem auto 0;
  }

  .dnx-legacy-page .pgh-intro-grid,
  .dnx-legacy-page .step {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .dnx-page:not(.dnx-page-home) main > .dnx-section:first-child .dnx-container {
    grid-template-columns: 1fr;
  }

  .dnx-page:not(.dnx-page-home) main > .dnx-section:first-child .dnx-container::after {
    min-height: 0;
    width: min(100%, 28rem);
    aspect-ratio: 5 / 3;
  }

  .dnx-page:not(.dnx-page-home) main > .dnx-section:first-child .dnx-container::before,
  .dnx-work-layout::before {
    display: none;
  }
}

@media (min-width: 921px) {
  .dnx-legacy-page .section-light .hero,
  .dnx-legacy-page .pgh-hero > .container,
  .dnx-legacy-page .founding-hero > .container {
    width: min(52vw, 640px);
    margin-right: auto;
    margin-left: max(1rem, calc((100vw - 1120px) / 2));
  }
}

.dnx-footer {
  border-top: 1px solid var(--dnx-color-line);
  padding-block: 2.5rem;
  background: #050812;
  color: var(--dnx-color-muted);
}

.dnx-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
}

.dnx-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dnx-footer a:hover {
  color: var(--dnx-color-paper);
}

.dnx-footer__meta {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
}

.dnx-reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .dnx-hero__artifact-map,
  .dnx-service-story,
  .dnx-service-story__visual img,
  .dnx-proof-card,
  .dnx-step,
  .dnx-artifact-line {
    transition: border-color 220ms ease, box-shadow 220ms ease, opacity 220ms ease, transform 220ms ease;
  }

  .dnx-hero__artifact-map:hover,
  .dnx-service-story:hover,
  .dnx-proof-card:hover,
  .dnx-step:hover {
    transform: translateY(-4px);
  }

  .dnx-service-story:hover .dnx-service-story__visual img {
    transform: scale(1.018);
  }

  .dnx-hero__artifact-map:hover .dnx-artifact-line {
    opacity: 0.95;
    transform: scaleX(1.05) rotate(var(--dnx-artifact-line-angle, 0deg));
  }

  .dnx-artifact-line--one {
    --dnx-artifact-line-angle: 16deg;
  }

  .dnx-artifact-line--two {
    --dnx-artifact-line-angle: -21deg;
  }

  .dnx-js .dnx-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms ease;
    transition-delay: min(var(--dnx-reveal-index, 0) * 80ms, 240ms);
  }

  .dnx-js .dnx-reveal.dnx-is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .dnx-menu-button {
    display: inline-flex;
  }

  .dnx-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    max-height: calc(100vh - 76px);
    overflow: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--dnx-color-line);
    background: var(--dnx-color-midnight);
    padding: 1rem;
  }

  .dnx-nav[data-open="true"] {
    display: flex;
  }

  .dnx-nav__link,
  .dnx-nav .dnx-button {
    justify-content: flex-start;
    width: 100%;
  }

  .dnx-nav__mobile-group {
    display: grid;
    gap: 0.2rem;
    margin-block: 0.5rem;
    border-block: 1px solid var(--dnx-color-line);
    padding-block: 0.5rem;
  }

  .dnx-nav__mobile-label {
    color: var(--dnx-color-muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .dnx-section__intro,
  .dnx-grid,
  .dnx-grid--two,
  .dnx-hero--proof .dnx-container,
  .dnx-work-layout,
  .dnx-timeline,
  .dnx-evidence,
  .dnx-principles,
  .dnx-pricing,
  .dnx-footer__grid {
    grid-template-columns: 1fr;
  }

  .dnx-hero__artifact-map {
    display: none;
  }

  .dnx-hero-proof--offset {
    width: 100%;
  }

  .dnx-hero-proof {
    grid-template-columns: minmax(0, 1fr);
  }

  .dnx-timeline::before {
    top: 0;
    bottom: 0;
    left: 1.25rem;
    width: 2px;
    height: auto;
  }

  .dnx-hero {
    min-height: auto;
  }

  .dnx-hero__content {
    padding-block: 4rem;
  }
}

@media (min-width: 921px) {
  .dnx-nav__mobile-group {
    display: none;
  }
}

@media (max-width: 560px) {
  .dnx-container {
    width: min(100% - 1.25rem, 1120px);
  }

  .dnx-header__inner {
    min-height: 68px;
  }

  .dnx-nav {
    top: 68px;
    max-height: calc(100vh - 68px);
  }

  h1,
  .dnx-display {
    font-size: 3rem;
  }

  .dnx-form__grid,
  .dnx-actions {
    grid-template-columns: 1fr;
  }

  .dnx-actions,
  .dnx-button,
  .dnx-card__link,
  .dnx-form button {
    width: 100%;
  }
}
