@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&display=swap");

:root {
  --ink: #111111;
  --canvas: #ffffff;
  --charcoal: #272625;
  --muted: #6d6c6b;
  --whisper: #f4f3ef;
  --taupe: #ecebea;
  --orange: #e8400d;
  --indigo: #10054d;
  --pink: #ffd7f0;
  --mint: #b7efb2;
  --yellow: #ffef99;
  --gold: #d8a021;
  --lavender: #e2ddfd;
  --blue: #328efa;
  --green: #47d096;
  --border: rgba(17, 17, 17, 0.08);
  --border-strong: rgba(17, 17, 17, 0.16);
  --font-main: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: var(--font-main);
  --shadow-soft: rgba(17, 17, 17, 0.05) 0 0 0 1px inset;
  --shadow-float: rgba(17, 17, 17, 0.05) 0 0 1px 0, rgba(17, 17, 17, 0.04) 1px 1px 1px 0, rgba(17, 17, 17, 0.03) 2px 3px 2px 0, rgba(17, 17, 17, 0.01) 4px 4px 2px 0;
  --shadow-card: rgba(17, 17, 17, 0.02) 0 -6px 6px 0, rgba(17, 17, 17, 0.01) 0 -23px 9px 0;
  --shadow-action: rgba(17, 17, 17, 0.04) 0 1px 2px 0, rgba(17, 17, 17, 0.04) 0 4px 8px 0;
  --shell: min(calc(100% - 64px), 1600px);
}

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

html {
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-main);
  font-feature-settings: "ss02", "ss01";
  text-rendering: geometricPrecision;
}

.story-page,
.story-page *,
.khach-le-landing,
.khach-le-landing *,
.agent-overview-map,
.agent-overview-map * {
  font-family: var(--font-main) !important;
}

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

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

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Minimal utility layer for the prebuilt React markup. */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-3 { top: 12px; }
.left-3 { left: 12px; }
.left-1\/2 { left: 50%; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-\[120\] { z-index: 120; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-20 { transform: translateY(-5rem); }
.focus\:translate-y-0:focus { transform: translateY(0); }
.block { display: block; }
.hidden { display: none; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-grid { display: inline-grid; }
.grid { display: grid; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-stretch { align-items: stretch; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.self-start { align-self: flex-start; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-10 { gap: 40px; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-5 { width: 20px; }
.w-6 { width: 24px; }
.w-12 { width: 48px; }
.h-5 { height: 20px; }
.h-6 { height: 24px; }
.h-10 { height: 40px; }
.h-12 { height: 48px; }
.min-h-screen { min-height: 100vh; }
.min-h-14 { min-height: 56px; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-\[1920px\] { max-width: 1920px; }
.object-contain { object-fit: contain; }
.bg-cover { background-size: cover; }
.bg-center { background-position: center; }
.bg-no-repeat { background-repeat: no-repeat; }
.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.rounded-full { border-radius: 999px; }
[class*="rounded-"] { border-radius: 12px; }
.p-1 { padding: 4px; }
.p-2 { padding: 8px; }
.p-4 { padding: 16px; }
.p-6 { padding: 24px; }
.px-2 { padding-inline: 8px; }
.px-3 { padding-inline: 12px; }
.px-4 { padding-inline: 16px; }
.px-5 { padding-inline: 20px; }
.px-6 { padding-inline: 24px; }
.px-8 { padding-inline: 32px; }
.py-1 { padding-block: 4px; }
.py-1\.5 { padding-block: 6px; }
.py-2 { padding-block: 8px; }
.py-2\.5 { padding-block: 10px; }
.py-3 { padding-block: 12px; }
.py-4 { padding-block: 16px; }
.py-5 { padding-block: 20px; }
.py-12 { padding-block: 48px; }
.py-16 { padding-block: 64px; }
.pt-2 { padding-top: 8px; }
.pt-3 { padding-top: 12px; }
.pt-6 { padding-top: 24px; }
.pt-28 { padding-top: 112px; }
.pb-2 { padding-bottom: 8px; }
.pb-6 { padding-bottom: 24px; }
.pb-10 { padding-bottom: 40px; }
.pr-4 { padding-right: 16px; }
.mt-0\.5 { margin-top: 2px; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }
.mb-10 { margin-bottom: 40px; }
.space-y-3 > * + * { margin-top: 12px; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-base { font-size: 16px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; }
.text-3xl { font-size: 30px; }
.text-4xl { font-size: 36px; }
.text-5xl { font-size: 48px; }
.leading-tight { line-height: 1.1; }
.leading-relaxed { line-height: 1.55; }
.leading-5 { line-height: 20px; }
.leading-6 { line-height: 24px; }
.leading-7 { line-height: 28px; }
.leading-8 { line-height: 32px; }
.tracking-\[0\.12em\],
.tracking-\[0\.14em\],
.tracking-\[0\.16em\],
.tracking-\[0\.18em\],
.tracking-\[0\.22em\],
.tracking-\[0\.24em\],
.tracking-\[0\.3em\],
.tracking-\[0\.38em\] {
  letter-spacing: 0.03em;
}
.transition,
.transition-all,
.transition-colors,
.transition-transform {
  transition-duration: 180ms;
  transition-timing-function: ease;
}
.duration-300 { transition-duration: 300ms; }
.lucide {
  width: 20px;
  height: 20px;
}

@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:px-4 { padding-inline: 16px; }
  .sm\:px-5 { padding-inline: 20px; }
  .sm\:px-8 { padding-inline: 32px; }
  .sm\:p-6 { padding: 24px; }
  .sm\:p-7 { padding: 28px; }
  .sm\:p-8 { padding: 32px; }
  .sm\:pt-4 { padding-top: 16px; }
  .sm\:pt-36 { padding-top: 144px; }
  .sm\:pb-14 { padding-bottom: 56px; }
  .sm\:py-20 { padding-block: 80px; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:p-8 { padding: 32px; }
}

@media (min-width: 768px) {
  .story-page nav > .story-shell.md\:hidden,
  .story-page nav > div.md\:hidden {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lg\:items-center { align-items: center; }
  .lg\:items-end { align-items: flex-end; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:flex-col { flex-direction: column; }
  .lg\:self-auto { align-self: auto; }
  .lg\:p-7 { padding: 28px; }
  .lg\:pt-40 { padding-top: 160px; }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:items-end { align-items: flex-end; }
  .xl\:flex-row { flex-direction: row; }
  .xl\:justify-self-end { justify-self: end; }
  .xl\:p-10 { padding: 40px; }
  .xl\:py-24 { padding-block: 96px; }
}

.story-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(48rem 30rem at 12% 0%, rgba(232, 64, 13, 0.12), transparent 62%),
    radial-gradient(42rem 28rem at 88% 6%, rgba(153, 255, 249, 0.28), transparent 64%),
    var(--canvas);
}

.story-shell,
.khach-le-landing .story-shell {
  width: var(--shell);
  margin-inline: auto;
}

.story-page nav {
  position: fixed;
  inset: 0 auto auto 50%;
  z-index: 50;
  width: 100%;
  max-width: 1920px;
  padding: 16px 0 0;
  transform: translateX(-50%);
}

.story-page nav > .story-shell,
.story-page nav .story-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-float);
  backdrop-filter: blur(18px);
}

.story-page nav .story-shell > div:not(.story-scroll-row):not(.hidden):has(> .story-cta-hover) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.story-page nav a:first-child {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 0;
}

.story-page nav img {
  width: auto;
  height: 42px;
  object-fit: contain;
}

.story-page nav a:first-child span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.story-page nav .story-shell > div > div:has(> .story-nav-link):not(.hidden) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex: 1 1 auto;
  max-width: min(52vw, 960px);
  margin-inline: auto;
}

@media (min-width: 768px) {
  .story-page nav .story-shell > div > .hidden.md\:flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex: 1 1 auto;
    max-width: min(52vw, 960px);
    margin-inline: auto;
  }
}

.story-page nav .story-sigil {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  color: transparent;
  background: var(--whisper);
  box-shadow: var(--shadow-soft);
  font-size: 0;
}

.story-page nav .story-sigil::before {
  content: "NK";
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.story-nav-link,
.story-page nav .story-scroll-row a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 8px;
  padding: 8px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.story-nav-link:hover,
.story-page nav .story-scroll-row a:hover {
  color: var(--ink);
  background: var(--whisper);
}

.story-cta-hover,
.kl-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--canvas);
  background: var(--ink);
  box-shadow: var(--shadow-action);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.story-cta-hover *,
.kl-button--primary {
  color: var(--canvas);
}

.kl-button--secondary,
.story-tab-hover {
  color: var(--indigo);
  background: var(--canvas);
  box-shadow: var(--shadow-soft);
}

.story-section-wrap {
  position: relative;
  border-bottom: 1px solid var(--border);
}

.story-section-wrap:nth-of-type(even) {
  background:
    radial-gradient(34rem 22rem at 88% 0%, rgba(208, 178, 255, 0.18), transparent 64%),
    var(--whisper);
}

.story-section-wrap > section,
.story-section-wrap > div {
  padding-block: clamp(72px, 9vw, 112px);
}

.story-section-hero > section {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 128px;
  padding-bottom: 56px;
}

.story-section-hero section > .absolute.inset-0:first-child {
  opacity: 0.08;
  filter: grayscale(1) contrast(1.08);
}

.story-section-hero section > .absolute.inset-0:nth-child(2),
.story-hero-grid {
  background:
    radial-gradient(42rem 28rem at 20% 8%, rgba(232, 64, 13, 0.16), transparent 62%),
    radial-gradient(36rem 24rem at 80% 14%, rgba(153, 255, 249, 0.24), transparent 64%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.98) 72%, rgba(244, 243, 239, 0.74));
}

#hero .story-shell > .grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: clamp(40px, 4vw, 72px);
  align-items: center;
}

#hero .story-shell > .grid > div:first-child {
  max-width: 760px;
}

.story-section-heading,
.story-page h1,
.story-page h2,
.story-page h3,
.story-page h4,
.kl-hero h1,
.kl-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-main);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.02;
  text-wrap: balance;
}

#hero h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(54px, 4.1vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  padding-bottom: 0.06em;
}

#hero h1 span {
  white-space: normal;
}

.story-section-heading:not(#hero h1),
.kl-section h2 {
  max-width: min(100%, 1480px);
  font-size: clamp(38px, 3.35vw, 58px);
  line-height: 1.04;
}

.story-executive-card h2:not(.story-section-heading),
.story-card-hover h2:not(.story-section-heading),
article h2:not(.story-section-heading),
.nk-response-genre h3 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(20px, 1.35vw, 28px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.story-section-eyebrow,
.story-section-eyebrow span,
.kl-kicker,
.agent-overview-map .aov-map-title span {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 12px;
  padding: 8px 10px;
  color: var(--canvas);
  background: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

#hero .story-rune-drift,
.story-section-copy,
.story-page p,
.story-page li,
.kl-copy,
.kl-note,
.kl-hero__lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
  letter-spacing: 0.01em;
}

#hero .story-rune-drift {
  max-width: 640px;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#hero .story-section-copy {
  max-width: 590px;
  margin-top: 24px;
  font-size: 16px;
}

#hero .story-shell > .grid > div:first-child > .flex,
.kl-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.story-split-line {
  height: 1px;
  min-width: 80px;
  background: var(--border);
}

.story-executive-card,
.story-card-hover,
.story-panel-hover,
.kl-role,
.kl-scoreboard article,
.kl-file-list article {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.story-card-hover,
.story-panel-hover {
  padding: 20px;
}

.story-executive-card {
  padding: 14px;
}

.story-card-index,
.aov-node__badge {
  display: inline-grid;
  min-width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 12px;
  color: var(--canvas);
  background: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.story-section-header {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 20px;
  width: 100%;
  max-width: none;
  margin-bottom: 44px;
}

.story-section-header > *,
.story-section-header > div {
  width: 100%;
  max-width: 100% !important;
}

.story-section-header > p,
.story-section-header .story-section-copy {
  max-width: 860px;
}

.nk-two-line-heading,
.story-section-header h2,
.kl-section-head h2 {
  max-width: min(100%, 1480px) !important;
}

#problem .story-section-header {
  margin-bottom: clamp(56px, 4.5vw, 72px);
}

#problem .story-shell > .grid:not(.story-section-header),
#offers .story-shell > .grid,
#proof .story-shell > .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

#problem article h3,
#offers article h3,
#proof article h3,
.story-card-hover h3 {
  margin-top: 14px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.story-list-row {
  position: relative;
  padding-left: 18px;
}

.story-list-row::before,
.kl-problem-list p::before,
.kl-pipeline-step::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(232, 64, 13, 0.1);
}

.story-list-row::before {
  left: 0;
  top: 0.7em;
}

.story-scroll-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.story-scroll-row::-webkit-scrollbar {
  display: none;
}

.agent-overview-map {
  color: var(--ink);
}

.agent-overview-map .aov-map-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
}

.agent-overview-map .aov-map-title strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.agent-overview-map .aov-network {
  position: relative;
  min-height: clamp(520px, 34vw, 620px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    radial-gradient(24rem 18rem at 14% 12%, rgba(232, 64, 13, 0.15), transparent 64%),
    radial-gradient(22rem 18rem at 84% 18%, rgba(153, 255, 249, 0.26), transparent 62%),
    var(--whisper);
  background-size: 38px 38px, 38px 38px, auto, auto, auto;
  box-shadow: var(--shadow-float);
}

.agent-overview-map .aov-network::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(232, 64, 13, 0.08), transparent);
  transform: translateX(-100%);
  animation: aovMapSweep 5.4s ease-in-out infinite;
}

.aov-network__svg,
.aov-network__glow {
  position: absolute;
  inset: 0;
}

.aov-network__svg {
  z-index: 1;
  width: 100%;
  height: 100%;
}

.aov-network__glow {
  z-index: 0;
  filter: blur(42px);
  opacity: 0.6;
}

.aov-network__glow--left {
  background: radial-gradient(circle at 22% 32%, rgba(232, 64, 13, 0.2), transparent 32%);
}

.aov-network__glow--right {
  background: radial-gradient(circle at 78% 24%, rgba(153, 255, 249, 0.28), transparent 32%);
}

.aov-link {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-width: 1.15;
  stroke: rgba(71, 85, 105, 0.5);
  stroke-dasharray: 5 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 4px rgba(71, 85, 105, 0.22));
}

.aov-link--active {
  stroke: rgba(232, 64, 13, 0.95);
  stroke-width: 2.1;
  stroke-dasharray: 6 4;
  filter: drop-shadow(0 0 7px rgba(232, 64, 13, 0.42));
  animation: aovDash 4s linear infinite;
}


.aov-link--hub {
  stroke: rgba(51, 65, 85, 0.58);
  stroke-width: 1.25;
}

.aov-link--neutral.aov-link--handoff {
  stroke: rgba(30, 64, 175, 0.58);
  stroke-width: 1.35;
  filter: drop-shadow(0 0 5px rgba(30, 64, 175, 0.22));
}

.aov-node {
  position: absolute;
  z-index: 2;
  width: clamp(96px, 8.2vw, 128px);
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  transform: translate(-50%, -50%);
}

.aov-node--hub {
  width: clamp(108px, 9vw, 140px);
  text-align: center;
}

.aov-node__header,
.aov-focus__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.aov-chip,
.aov-focus__status {
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  padding: 5px 7px;
  color: var(--canvas);
  background: var(--charcoal);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.aov-node__copy {
  display: grid;
  gap: 4px;
  margin-top: 8px;
}

.aov-node__copy strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.12;
}

.aov-node__copy span,
.aov-node__metrics,
.aov-focus__topline {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.aov-node__metrics {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  text-transform: uppercase;
}

.aov-node__pulse,
.aov-node__ring {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(232, 64, 13, 0.24);
  border-radius: 16px;
  pointer-events: none;
  animation: cleanPulse 2.2s ease-in-out infinite;
}

.aov-node.is-focused {
  border-color: rgba(232, 64, 13, 0.34);
  animation: aovFocusPulse 2.8s ease-in-out infinite;
  will-change: box-shadow;
}

.aov-focus__status i {
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 999px;
  background: var(--orange);
  animation: aovBlink 1.35s ease-in-out infinite;
}

.aov-focus {
  margin-top: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--canvas);
  box-shadow: var(--shadow-float);
}

.aov-focus strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.nk-response-genre {
  display: grid;
  gap: 28px;
  margin-top: clamp(64px, 5vw, 88px);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(24px, 3vw, 40px);
  background:
    radial-gradient(40rem 24rem at 92% 0%, rgba(153, 255, 249, 0.2), transparent 62%),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-float);
}

.nk-deep-data-layer {
  position: relative;
  overflow: hidden;
  margin-top: clamp(72px, 5vw, 96px) !important;
  border: 1px solid rgba(232, 64, 13, 0.22) !important;
  border-radius: 12px !important;
  padding: clamp(28px, 3.4vw, 48px) !important;
  background:
    radial-gradient(44rem 28rem at 6% 0%, rgba(232, 64, 13, 0.14), transparent 62%),
    radial-gradient(34rem 24rem at 96% 12%, rgba(153, 255, 249, 0.25), transparent 64%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 243, 239, 0.9)) !important;
  box-shadow:
    rgba(17, 17, 17, 0.08) 0 18px 50px -28px,
    rgba(17, 17, 17, 0.05) 0 0 0 1px inset !important;
}

.nk-deep-data-layer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange), rgba(153, 255, 249, 0.9), transparent 76%);
}

.nk-deep-data-layer > .grid {
  position: relative;
  z-index: 1;
}

.nk-deep-data-label {
  display: inline-flex !important;
  width: fit-content;
  border-radius: 12px;
  padding: 8px 10px;
  color: var(--canvas) !important;
  background: var(--orange);
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.nk-deep-data-heading {
  max-width: 1040px;
  color: var(--ink) !important;
  font-size: clamp(34px, 3vw, 54px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
}

.nk-deep-data-layer p {
  color: var(--charcoal) !important;
  font-size: 16px !important;
  line-height: 1.65 !important;
}

.nk-deep-data-layer .story-list-row {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  padding: 14px 16px 14px 34px;
  background: rgba(255, 255, 255, 0.74);
}

.nk-deep-data-layer .story-list-row::before {
  left: 16px;
  top: 23px;
}

.nk-deep-data-layer .story-list-row span {
  color: var(--ink);
  font-weight: 700;
}

.nk-response-genre__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.nk-response-genre__intro h2,
.nk-response-genre__catalog-head h2 {
  max-width: min(100%, 1480px);
  color: var(--ink);
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.nk-response-genre__intro p:not(.story-section-eyebrow) {
  max-width: 980px;
}

.nk-response-genre__intro p,
.nk-response-genre__catalog-head p,
.nk-genre-card p,
.nk-genre-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.nk-response-genre__outcomes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.nk-response-genre__outcomes article {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: var(--whisper);
  box-shadow: none;
}

.nk-response-genre__outcomes span,
.nk-genre-card__meta span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nk-response-genre__outcomes strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.12;
}

.nk-response-genre__catalog {
  display: grid;
  gap: 22px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.nk-genre-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.nk-genre-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  background: var(--canvas);
  box-shadow: var(--shadow-card);
}

.nk-genre-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nk-genre-card__meta b {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  color: var(--canvas);
  background: var(--ink);
  font-size: 12px;
}

.nk-genre-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nk-genre-card li {
  position: relative;
  padding-left: 16px;
}

.nk-genre-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.nk-tech-system {
  padding-block: clamp(72px, 9vw, 112px);
}

.nk-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.nk-tech-card {
  display: grid;
  align-content: start;
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(18px, 1.8vw, 24px);
  background: var(--canvas);
  box-shadow: var(--shadow-card);
}

.nk-tech-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nk-tech-card__top span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--canvas);
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.nk-tech-card__top b {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nk-tech-card h3 {
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 1.7vw, 32px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.nk-tech-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.nk-tech-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.nk-tech-card li {
  position: relative;
  padding-left: 17px;
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.nk-tech-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
}

.nk-tech-deep {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.nk-tech-control-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.nk-tech-control-list span {
  display: flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.nk-tech-pipeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(24px, 3vw, 40px);
}

.nk-tech-pipeline article {
  position: relative;
  display: grid;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: var(--whisper);
  box-shadow: var(--shadow-soft);
}

.nk-tech-pipeline article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  z-index: 1;
  width: 12px;
  height: 1px;
  background: var(--border-strong);
}

.nk-tech-pipeline b {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}

.nk-tech-pipeline span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.1;
}

.nk-contract-matrix {
  margin-top: clamp(24px, 3vw, 40px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(214, 113, 25, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.nk-contract-matrix__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
}

.nk-contract-matrix__head span {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.nk-contract-matrix__scroller {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nk-contract-matrix table {
  width: 100%;
  min-width: 1180px;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--story-font-ui, "Be Vietnam Pro", sans-serif);
}

.nk-contract-matrix th,
.nk-contract-matrix td {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
}

.nk-contract-matrix thead th {
  color: rgba(68, 45, 26, 0.78);
  background: rgba(250, 245, 235, 0.92);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nk-contract-matrix th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  min-width: 220px;
  color: var(--ink);
  background: rgba(255, 251, 244, 0.98);
  text-align: left;
}

.nk-contract-matrix thead th:first-child {
  z-index: 3;
  color: rgba(68, 45, 26, 0.82);
}

.nk-contract-matrix tbody tr:last-child th,
.nk-contract-matrix tbody tr:last-child td {
  border-bottom: 0;
}

.nk-contract-matrix th:last-child,
.nk-contract-matrix td:last-child {
  border-right: 0;
}

.nk-contract-matrix tbody tr:hover th,
.nk-contract-matrix tbody tr:hover td {
  background-color: rgba(255, 247, 237, 0.9);
}

.nk-contract-matrix td.is-enabled {
  color: #b45309;
  font-size: 14px;
}

.nk-contract-matrix td.is-muted {
  color: rgba(68, 45, 26, 0.32);
}

.nk-contract-matrix td.is-note {
  color: #9a3412;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nk-pricing-section,
.nk-answer-section,
.nk-proof-section,
.nk-cta-section {
  padding-block: clamp(72px, 9vw, 112px);
}

.nk-answer-section h2 {
  max-width: min(100%, 1500px);
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(44px, 4.1vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.nk-answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.nk-answer-grid article {
  min-height: 210px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(20px, 2vw, 28px);
  background: var(--canvas);
  box-shadow: var(--shadow-card);
}

.nk-answer-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 1.6vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.nk-answer-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.nk-pricing-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 44px;
}

.nk-pricing-sale {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(232, 64, 13, 0.24);
  border-radius: 12px;
  padding: clamp(18px, 2.4vw, 28px);
  background:
    radial-gradient(24rem 16rem at 88% 0%, rgba(232, 64, 13, 0.16), transparent 66%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 243, 239, 0.86));
  box-shadow: var(--shadow-float);
}

.nk-pricing-sale span,
.nk-pricing-sale small,
.nk-pricing-card__sale,
.nk-pricing-saving {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.nk-pricing-sale strong {
  display: block;
  max-width: 860px;
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(28px, 2.5vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.nk-pricing-sale p {
  max-width: 780px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.nk-pricing-sale__metric {
  display: grid;
  min-width: 190px;
  justify-items: center;
  border-radius: 12px;
  padding: 18px;
  color: var(--canvas);
  background: var(--ink);
}

.nk-pricing-sale__metric b {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.nk-pricing-sale__metric small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.nk-pricing-head h2,
.nk-proof-section h2,
.nk-cta-card h2 {
  max-width: min(100%, 1480px);
  margin: 24px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 3.35vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.nk-pricing-toggle {
  position: relative;
  display: grid;
  width: min(100%, 520px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 4px;
  background: var(--whisper);
  box-shadow: var(--shadow-float);
}

.nk-pricing-toggle i {
  position: absolute;
  inset-block: 4px;
  left: 4px;
  z-index: 0;
  width: calc(50% - 4px);
  border-radius: 8px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.nk-pricing-section[data-mode="shared"] .nk-pricing-toggle i {
  transform: translateX(100%);
}

.nk-pricing-toggle button {
  position: relative;
  z-index: 1;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.nk-pricing-toggle button[aria-selected="true"] {
  color: var(--canvas);
}

.nk-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.nk-pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.nk-pricing-card.is-featured {
  border-color: rgba(232, 64, 13, 0.32);
  background:
    radial-gradient(24rem 18rem at 100% 0%, rgba(232, 64, 13, 0.1), transparent 64%),
    var(--canvas);
  box-shadow: var(--shadow-float);
}

.nk-pricing-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nk-pricing-card__top span,
.nk-pricing-card__top b,
.nk-pricing-card__badge {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nk-pricing-card__top span {
  border: 1px solid rgba(232, 64, 13, 0.16);
  border-radius: 999px;
  padding: 6px 8px;
  color: var(--orange);
  background: rgba(232, 64, 13, 0.08);
}

.nk-pricing-card h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.nk-pricing-card__badge {
  width: fit-content;
  margin-top: 16px;
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--charcoal);
  background: var(--whisper);
}

.nk-pricing-card__sale {
  width: fit-content;
  margin-top: 14px;
  border-radius: 999px;
  padding: 7px 9px;
  color: var(--canvas);
  background: var(--orange);
}

.nk-pricing-price {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.nk-pricing-price del,
.nk-order-summary del {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration-color: rgba(232, 64, 13, 0.7);
  text-decoration-thickness: 2px;
}

.nk-pricing-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(28px, 2vw, 36px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.nk-pricing-card em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.nk-pricing-saving {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.25;
}

.nk-pricing-card p {
  margin: 18px 0 32px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.nk-pricing-card .nk-order-button {
  width: 100%;
  margin-top: auto;
}

.nk-order-button,
.nk-cta-primary,
.nk-cta-secondary,
.nk-order-detail a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.nk-order-button,
.nk-cta-primary,
.nk-order-detail a {
  margin-top: 24px;
  color: var(--canvas);
  background: var(--ink);
  box-shadow: var(--shadow-action);
}

.story-page nav a.nk-gold-cta,
.nk-hero-contact {
  border: 1px solid rgba(178, 125, 20, 0.42) !important;
  color: var(--ink) !important;
  background:
    linear-gradient(135deg, #fff2a8 0%, #f2c94c 34%, #d8a021 68%, #fff0a0 100%) !important;
  box-shadow:
    rgba(138, 92, 12, 0.2) 0 12px 30px -16px,
    rgba(255, 255, 255, 0.52) 0 1px 0 inset !important;
}

.story-page nav a.nk-gold-cta *,
.nk-hero-contact * {
  color: inherit !important;
}

.story-page nav a.nk-gold-cta:hover,
.nk-hero-contact:hover {
  filter: saturate(1.08) brightness(1.02);
}

.nk-order-button {
  border: 1px solid rgba(127, 29, 29, 0.34) !important;
  color: #ffffff !important;
  background:
    linear-gradient(135deg, #ef4444 0%, #dc2626 46%, #991b1b 100%) !important;
  box-shadow:
    rgba(153, 27, 27, 0.24) 0 14px 34px -18px,
    rgba(255, 255, 255, 0.18) 0 1px 0 inset !important;
}

.nk-order-button:hover {
  filter: saturate(1.08) brightness(1.02);
}

.nk-hero-contact {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

body.nk-modal-open {
  overflow: hidden;
}

.nk-pricing-note {
  margin: 24px 0 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--muted);
  background: var(--whisper);
  font-size: 14px;
  line-height: 1.55;
}

.nk-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.nk-proof-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.nk-proof-copy .story-section-copy {
  margin: 0;
}

.nk-proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nk-proof-copy a {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--canvas);
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-action);
}

.nk-proof-copy a:last-child {
  color: var(--canvas);
  background: var(--ink);
}

.nk-proof-grid article {
  min-height: 250px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  background: var(--canvas);
  box-shadow: var(--shadow-card);
}

.nk-proof-grid span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nk-proof-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(24px, 1.8vw, 32px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.nk-proof-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.nk-cta-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 64, 13, 0.2);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 56px);
  background:
    radial-gradient(42rem 28rem at 4% 0%, rgba(232, 64, 13, 0.16), transparent 64%),
    radial-gradient(34rem 24rem at 92% 12%, rgba(153, 255, 249, 0.24), transparent 62%),
    var(--canvas);
  box-shadow: rgba(17, 17, 17, 0.08) 0 24px 70px -42px;
}

.nk-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.nk-cta-card h2 {
  max-width: 1120px;
  font-size: clamp(42px, 4vw, 72px);
  line-height: 0.98;
  text-wrap: balance;
}

.nk-cta-card p {
  max-width: 820px;
  margin: 22px 0 0;
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.65;
}

.nk-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.nk-cta-primary,
.nk-cta-secondary {
  min-height: 52px;
  min-width: 180px;
  margin-top: 0;
}

.nk-cta-secondary {
  border: 1px solid var(--border);
  color: var(--ink);
  background: var(--canvas);
  box-shadow: var(--shadow-soft);
}

.nk-cta-steps {
  display: grid;
  gap: 12px;
}

.nk-cta-steps article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.nk-cta-steps b {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  color: var(--canvas);
  background: var(--ink);
  font-size: 12px;
}

.nk-cta-steps span {
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.55;
}

.nk-order-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: 16px;
}

.nk-order-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 17, 0.54);
  backdrop-filter: blur(10px);
}

.nk-order-modal {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: min(92vh, 820px);
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: var(--canvas);
  box-shadow: rgba(17, 17, 17, 0.22) 0 30px 80px -32px;
}

.nk-order-close {
  position: absolute;
  right: 14px;
  top: 14px;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--ink);
  background: var(--canvas);
  font-size: 22px;
}

.nk-order-summary {
  padding-right: 46px;
}

.nk-order-summary span,
.nk-order-detail dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nk-order-summary h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.nk-order-summary strong {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.nk-order-summary del {
  display: block;
  margin-top: 16px;
}

.nk-order-summary p {
  max-width: 760px;
  color: var(--muted);
}

.nk-order-body {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.nk-order-qr {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: var(--whisper);
}

.nk-order-qr img {
  width: 100%;
  border-radius: 8px;
  background: var(--canvas);
}

.nk-order-detail {
  display: grid;
  gap: 16px;
}

.nk-order-detail dl,
.nk-order-detail ol {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: var(--whisper);
}

.nk-order-detail dl {
  display: grid;
  gap: 12px;
}

.nk-order-detail dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.nk-order-detail ol {
  padding-left: 34px;
  color: var(--muted);
  line-height: 1.6;
}

.nk-order-detail a {
  margin-top: 0;
}

.nk-demo-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 22px);
}

.nk-demo-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 17, 17, 0.62);
  backdrop-filter: blur(12px);
}

.nk-demo-modal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(100%, 1180px);
  height: min(92vh, 860px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--canvas);
  box-shadow: rgba(17, 17, 17, 0.24) 0 34px 90px -34px;
}

.nk-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding: 14px clamp(14px, 2vw, 22px);
  background: var(--canvas);
}

.nk-demo-head span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nk-demo-head h3 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.05;
}

.nk-demo-head p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.nk-demo-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nk-demo-actions a,
.nk-demo-actions button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--whisper);
  font-size: 13px;
  font-weight: 800;
}

.nk-demo-actions button {
  width: 40px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
}

.nk-demo-viewer {
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background: var(--whisper);
}

.nk-demo-loading,
.nk-demo-error {
  width: min(100%, 560px);
  margin: 24px auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  color: var(--muted);
  background: var(--canvas);
  font-size: 14px;
  line-height: 1.55;
}

.nk-demo-error strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.nk-demo-reader {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  min-height: 0;
  height: 100%;
}

.nk-demo-toc {
  min-height: 0;
  overflow: auto;
  border-right: 1px solid var(--border);
  background: color-mix(in srgb, var(--canvas) 86%, var(--gold) 14%);
}

.nk-demo-toc-head {
  position: sticky;
  top: 0;
  z-index: 1;
  border-bottom: 1px solid var(--border);
  padding: 18px;
  background: color-mix(in srgb, var(--canvas) 91%, var(--gold) 9%);
}

.nk-demo-toc-head span,
.nk-demo-content-head span {
  display: block;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nk-demo-toc-head strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.nk-demo-toc-list {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.nk-demo-chapter-button {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.nk-demo-chapter-button:hover,
.nk-demo-chapter-button.is-active {
  border: 1px solid var(--border);
  color: var(--ink);
  background: var(--canvas);
}

.nk-demo-chapter-button.is-active {
  border-color: color-mix(in srgb, var(--gold) 58%, var(--border));
  box-shadow: inset 3px 0 0 var(--gold);
}

.nk-demo-chapter-button span,
.nk-demo-chapter-button small {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nk-demo-chapter-button strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 15px;
  line-height: 1.25;
}

.nk-demo-chapter-button small {
  margin-top: 8px;
  color: var(--muted);
}

.nk-demo-content {
  min-width: 0;
  min-height: 0;
  overflow: auto;
  padding: clamp(20px, 4vw, 48px);
  color: var(--ink);
  background: var(--canvas);
}

.nk-demo-content-head {
  max-width: 780px;
  margin: 0 auto 22px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
}

.nk-demo-content-head h4 {
  margin: 8px 0 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.04;
}

.nk-demo-prose {
  width: min(100%, 780px);
  margin: 0 auto;
  white-space: pre-wrap;
  color: color-mix(in srgb, var(--ink) 88%, var(--muted));
  font-family: var(--font-main);
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.78;
  letter-spacing: 0;
}

.nk-demo-page {
  width: fit-content;
  max-width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--canvas);
  box-shadow: rgba(17, 17, 17, 0.08) 0 18px 48px -28px;
}

.nk-demo-page canvas {
  display: block;
  max-width: 100%;
  height: auto !important;
}

.story-page footer,
.story-page > footer,
.story-page footer .story-shell {
  color: var(--muted);
  background: var(--canvas);
  border-color: var(--border);
}

/* Khach-le clean theme */
.khach-le-landing {
  width: 100%;
  color: var(--ink);
  background:
    radial-gradient(42rem 26rem at 16% 2%, rgba(232, 64, 13, 0.13), transparent 64%),
    radial-gradient(36rem 22rem at 88% 10%, rgba(153, 255, 249, 0.26), transparent 62%),
    var(--canvas);
}

.kl-hero,
.kl-section {
  position: relative;
  border-bottom: 1px solid var(--border);
  padding-block: clamp(72px, 9vw, 112px);
}

.kl-hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 128px;
  background:
    radial-gradient(34rem 22rem at 76% 12%, rgba(208, 178, 255, 0.2), transparent 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 243, 239, 0.78));
}

.kl-hero__inner,
.kl-split,
.kl-canon-grid,
.kl-quality-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
}

.kl-hero h1 {
  max-width: 860px;
  font-size: clamp(64px, 6.4vw, 116px);
  line-height: 0.88;
}

.kl-section h2 {
  max-width: min(100%, 1480px);
  font-size: clamp(42px, 3.6vw, 64px);
  line-height: 1.02;
}

.kl-hero__lead,
.kl-copy,
.kl-note,
.kl-problem-list p,
.kl-role p,
.kl-pipeline-step p,
.kl-scoreboard p,
.kl-file-list p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.kl-control-plane {
  position: relative;
  min-height: clamp(430px, 43vw, 620px);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(153, 255, 249, 0.24), transparent 0 42%),
    var(--whisper);
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: var(--shadow-float);
}

.kl-control-plane__head {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  width: min(230px, 48%);
  min-height: 128px;
  place-items: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--ink);
  background: var(--canvas);
  box-shadow: var(--shadow-action);
  transform: translate(-50%, -50%);
}

.kl-control-plane__head span,
.kl-runtime-line span,
.kl-role span,
.kl-pipeline-step span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.kl-control-plane__head strong {
  color: var(--ink);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 0.95;
}

.kl-control-plane__grid {
  position: absolute;
  inset: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.kl-control-plane__grid span {
  display: flex;
  align-items: flex-start;
  min-height: 110px;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.kl-agent-ring {
  position: absolute;
  inset: 12%;
  z-index: 2;
  border: 1px dashed var(--border-strong);
  border-radius: 999px;
  animation: klSpin 28s linear infinite;
}

.kl-agent-ring i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(232, 64, 13, 0.1);
  transform: rotate(calc(var(--i) * 72deg)) translateX(clamp(118px, 15vw, 210px));
}

.kl-agent-ring b {
  display: none;
}

.kl-runtime-line {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.86);
  scrollbar-width: none;
}

.kl-runtime-line::-webkit-scrollbar {
  display: none;
}

.kl-runtime-line i {
  flex: 0 0 24px;
  height: 1px;
  background: var(--border-strong);
}

.kl-section--problem,
.kl-section--quality,
.kl-section--final {
  background:
    radial-gradient(38rem 24rem at 88% 0%, rgba(232, 64, 13, 0.08), transparent 64%),
    var(--whisper);
}

.kl-section-head {
  max-width: 1100px;
  margin-bottom: 40px;
}

.kl-problem-list {
  display: grid;
  gap: 4px;
}

.kl-problem-list p {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--border);
  padding: 16px 16px 16px 34px;
}

.kl-problem-list p::before {
  left: 10px;
  top: 25px;
}

.kl-role-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.kl-role {
  min-height: 210px;
  padding: 20px;
}

.kl-role h3,
.kl-pipeline-step h3,
.kl-scoreboard strong {
  margin: 14px 0 0;
  font-size: 24px;
  line-height: 1.05;
}

.kl-memory-stack,
.kl-file-list,
.kl-scoreboard {
  display: grid;
  gap: 12px;
}

.kl-memory-stack {
  margin-top: 28px;
}

.kl-memory-stack span {
  border-left: 2px solid var(--orange);
  padding: 12px 16px;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(232, 64, 13, 0.08), transparent);
  font-size: 14px;
  font-weight: 700;
}

.kl-file-list article {
  padding: 16px 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.kl-file-list code {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.kl-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--border);
}

.kl-pipeline__rail {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  z-index: 1;
  height: 2px;
  overflow: hidden;
  background: var(--border);
}

.kl-pipeline__rail span {
  display: block;
  width: 24%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: cleanSweep 4.5s ease-in-out infinite;
}

.kl-pipeline-step {
  position: relative;
  min-height: 240px;
  padding: 52px 20px 20px;
  background: var(--canvas);
}

.kl-pipeline-step::before {
  left: 20px;
  top: 28px;
}

.kl-scoreboard article {
  display: grid;
  grid-template-columns: minmax(110px, 0.45fr) minmax(78px, auto) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.kl-scoreboard span {
  color: var(--orange);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.kl-final {
  max-width: 1080px;
}

[role="dialog"] {
  color: var(--ink);
}

[role="dialog"] > div,
[role="dialog"] section,
[role="dialog"] aside,
[role="dialog"] header {
  border-color: var(--border);
  color: var(--ink);
  background: var(--canvas);
}

[role="dialog"] input,
[role="dialog"] textarea,
[role="dialog"] select {
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--ink);
  background: var(--canvas);
}

@keyframes cleanRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cleanSweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(520%); }
}

@keyframes cleanPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.03); }
}

@keyframes aovDash {
  to { stroke-dashoffset: -40; }
}

@keyframes aovFocusPulse {
  0%, 100% { box-shadow: var(--shadow-card), 0 0 0 0 rgba(232, 64, 13, 0); }
  50% { box-shadow: var(--shadow-card), 0 0 0 6px rgba(232, 64, 13, 0.1); }
}

@keyframes aovBlink {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes aovMapSweep {
  0% { transform: translateX(-100%); opacity: 0; }
  20%, 72% { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

@keyframes klSpin {
  to { transform: rotate(360deg); }
}

@media (hover: hover) and (pointer: fine) {
  .story-cta-hover:hover,
  .kl-button:hover {
    transform: translateY(-1px);
    box-shadow: rgba(17, 17, 17, 0.08) 0 10px 24px -10px;
  }
}

@media (max-width: 1120px) {
  #hero .story-shell > .grid,
  .kl-hero__inner,
  .kl-split,
  .kl-canon-grid,
  .kl-quality-grid,
  .nk-tech-deep,
  .nk-response-genre__top {
    grid-template-columns: 1fr;
  }

  #hero .story-shell > .grid > div:first-child,
  #hero h1 {
    max-width: 780px;
  }

  #hero h1 span {
    white-space: normal;
  }

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

  .nk-response-genre__outcomes,
  .nk-genre-grid,
  .nk-tech-grid,
  .nk-answer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nk-pricing-head,
  .nk-pricing-sale,
  .nk-cta-card {
    grid-template-columns: 1fr;
  }

  .nk-pricing-toggle {
    width: 100%;
  }

  .nk-pricing-grid,
  .nk-tech-pipeline,
  .nk-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nk-tech-pipeline article::after {
    display: none;
  }

  .kl-pipeline {
    grid-template-columns: 1fr;
  }

  .kl-pipeline__rail,
  .nk-process-track {
    display: none;
  }
}

@media (max-width: 767px) {
  :root {
    --shell: min(calc(100% - 24px), 1600px);
  }

  .story-page nav {
    padding-inline: 12px;
  }

  .story-page nav > .story-shell,
  .story-page nav .story-shell {
    min-height: 62px;
    gap: 12px;
  }

  .story-page nav .hidden.md\:flex {
    display: none !important;
  }

  .story-page nav img {
    height: 34px;
  }

  .story-section-hero > section,
  .kl-hero {
    min-height: auto;
    padding-top: 190px;
  }

  #hero h1,
  .kl-hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 13.5vw, 62px);
  }

  #hero h1 span {
    white-space: normal;
  }

  .story-section-heading:not(#hero h1),
  .kl-section h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  #problem .story-shell > .grid:not(.story-section-header),
  #offers .story-shell > .grid,
  #proof .story-shell > .grid,
  .kl-role-grid,
  .nk-response-genre__outcomes,
  .nk-genre-grid,
  .nk-tech-grid,
  .nk-tech-control-list,
  .nk-tech-pipeline {
    grid-template-columns: 1fr;
  }

  .agent-overview-map .aov-map-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .agent-overview-map .aov-network {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 12px;
  }

  .aov-network__svg,
  .aov-network__glow,
  .aov-node__pulse,
  .aov-node__ring {
    display: none;
  }

  .aov-node,
  .aov-node--hub {
    position: static !important;
    width: 100% !important;
    transform: none !important;
    animation: none !important;
  }

  .kl-control-plane {
    min-height: 520px;
  }

  .kl-control-plane__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, minmax(72px, auto));
  }

  .kl-agent-ring {
    display: none;
  }

  .kl-scoreboard article {
    grid-template-columns: 1fr;
  }

  .kl-button,
  .kl-actions {
    width: 100%;
  }

  .nk-pricing-head,
  .nk-pricing-sale,
  .nk-answer-grid,
  .nk-pricing-grid,
  .nk-proof-grid,
  .nk-order-body {
    grid-template-columns: 1fr;
  }

  .nk-pricing-card {
    min-height: auto;
  }

  .nk-tech-card {
    min-height: auto;
  }

  .nk-pricing-card p {
    min-height: auto;
  }

  .nk-pricing-toggle button {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .nk-proof-grid article {
    min-height: auto;
  }

  .nk-cta-card {
    padding: 24px;
  }

  .nk-cta-card h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .nk-cta-actions,
  .nk-cta-primary,
  .nk-cta-secondary {
    width: 100%;
  }

  .nk-order-modal {
    max-height: 92vh;
  }

  .nk-demo-overlay {
    padding: 8px;
  }

  .nk-demo-modal {
    height: 94vh;
  }

  .nk-demo-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .nk-demo-actions {
    width: 100%;
    justify-content: space-between;
  }

  .nk-demo-reader {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .nk-demo-toc {
    max-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .nk-demo-content {
    padding: 20px;
  }

  .nk-order-qr {
    max-width: 280px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}


.nk-pricing-card em + em {
  margin-top: 6px;
}

.nk-pricing-features {
  display: grid;
  gap: 8px;
  margin: 8px 0 22px;
  padding: 0;
  list-style: none;
}

.nk-pricing-features li {
  position: relative;
  padding-left: 18px;
  color: rgba(68, 64, 60, 0.9);
  font-size: 0.9rem;
  line-height: 1.55;
}

.nk-pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(232, 64, 13, 0.82);
  box-shadow: 0 0 0 3px rgba(232, 64, 13, 0.12);
}


.nk-pricing-features li.is-highlight {
  font-weight: 700;
  color: rgba(232, 64, 13, 0.95);
  padding-left: 18px;
}

.nk-pricing-features li.is-highlight::before {
  background: rgba(232, 64, 13, 1);
  box-shadow: 0 0 0 4px rgba(232, 64, 13, 0.18), 0 0 12px rgba(232, 64, 13, 0.25);
}

.nk-pricing-features li.is-sub {
  padding-left: 28px;
  font-size: 0.82rem;
  color: rgba(87, 83, 78, 0.85);
}

.nk-pricing-features li.is-sub::before {
  display: none;
}


.story-page nav a.nk-gold-cta {
  display: none !important;
}

/* ── Enterprise Banner ── */
.nk-enterprise-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
  border: 1px solid rgba(232, 64, 13, 0.18);
  border-radius: 16px;
  padding: 32px 36px;
  background:
    radial-gradient(36rem 20rem at 100% 0%, rgba(232, 64, 13, 0.06), transparent 64%),
    var(--canvas);
  box-shadow: var(--shadow-card);
}

.nk-enterprise-banner__tag {
  display: inline-block;
  border: 1px solid rgba(232, 64, 13, 0.16);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--orange);
  background: rgba(232, 64, 13, 0.08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nk-enterprise-banner__head h3 {
  margin: 12px 0 8px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nk-enterprise-banner__head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.nk-enterprise-banner__features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nk-enterprise-banner__features li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
}

.nk-enterprise-banner__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.nk-enterprise-banner__features li.is-highlight {
  font-weight: 700;
  color: var(--orange);
}

.nk-enterprise-banner__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nk-enterprise-banner__cta em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
}

.nk-order-button--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  padding: 10px 24px;
  color: var(--orange);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nk-order-button--ghost:hover {
  background: var(--orange);
  color: #fff;
}

@media (max-width: 768px) {
  .nk-enterprise-banner {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
}

/* ── Enterprise Pricing Card Override ── */
.nk-enterprise-banner {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr) !important;
  gap: 28px !important;
  align-items: stretch !important;
  margin-top: 18px !important;
  border: 1px solid rgba(232, 64, 13, 0.24) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  background:
    radial-gradient(28rem 18rem at 100% 0%, rgba(232, 64, 13, 0.1), transparent 65%),
    rgba(255, 255, 255, 0.96) !important;
  box-shadow: var(--shadow-card) !important;
}

.nk-enterprise-banner__left,
.nk-enterprise-banner__right {
  display: flex;
  flex-direction: column;
}

.nk-enterprise-banner__left h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.nk-enterprise-banner__left em {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.5;
}

.nk-enterprise-banner__left p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.nk-enterprise-banner__right {
  justify-content: space-between;
  border-left: 1px solid var(--border);
  padding-left: 28px;
}

.nk-enterprise-banner__right .nk-pricing-features {
  margin-top: 0;
  gap: 8px;
}

.nk-enterprise-banner__right .nk-order-button {
  width: fit-content;
  min-width: 180px;
  margin-top: 22px;
}

@media (max-width: 900px) {
  .nk-enterprise-banner {
    grid-template-columns: 1fr !important;
  }

  .nk-enterprise-banner__right {
    border-left: 0;
    border-top: 1px solid var(--border);
    padding-left: 0;
    padding-top: 20px;
  }
}
