/* استعدادیابی ملی — هویت بصری مستقل (روشن، ملی، کارتوگرافیک) */
:root {
  --nt-bg: #f3efe4;
  --nt-bg-2: #ebe4d4;
  --nt-ink: #14201f;
  --nt-ink-soft: #3a4a48;
  --nt-mute: #6b7876;
  --nt-teal: #0b3d3a;
  --nt-teal-mid: #1a6b66;
  --nt-teal-soft: #d7ebe8;
  --nt-gold: #c9a227;
  --nt-gold-bright: #e8c547;
  --nt-line: rgba(20, 32, 31, .12);
  --nt-line-strong: rgba(20, 32, 31, .22);
  --nt-max: 1120px;
  --nt-nav-h: 68px;
  --nt-font: "Vazirmatn", "Tahoma", sans-serif;
  --nt-display: "Noto Naskh Arabic", "Vazirmatn", serif;
  --nt-ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--nt-font);
  color: var(--nt-ink);
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(232, 197, 71, .18), transparent 55%),
    radial-gradient(900px 600px at -5% 30%, rgba(26, 107, 102, .10), transparent 50%),
    linear-gradient(180deg, #f7f3ea 0%, var(--nt-bg) 40%, #efe8d8 100%);
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }

.nt-skip {
  position: absolute;
  inset-inline-start: -999px;
  top: 0;
  background: var(--nt-teal);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
}
.nt-skip:focus { inset-inline-start: 12px; }

.nt-wrap {
  width: min(var(--nt-max), calc(100% - 40px));
  margin-inline: auto;
}

/* ─── Nav ─── */
.nt-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nt-nav-h);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--nt-ease), border-color .35s, backdrop-filter .35s;
}
.nt-nav.is-scrolled {
  background: rgba(243, 239, 228, .88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--nt-line);
}
.nt-nav-inner {
  height: var(--nt-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nt-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.nt-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, var(--nt-teal) 0%, var(--nt-teal-mid) 70%),
    var(--nt-teal);
  position: relative;
  flex-shrink: 0;
}
.nt-mark::after {
  content: "";
  position: absolute;
  inset: 9px 11px 8px;
  border: 2px solid var(--nt-gold-bright);
  border-bottom: 0;
  border-radius: 2px 2px 0 0;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.nt-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nt-brand-text strong {
  font-size: 15.5px;
  font-weight: 800;
}
.nt-brand-text small {
  font-size: 10.5px;
  letter-spacing: .08em;
  color: var(--nt-mute);
  font-weight: 500;
  margin-top: 3px;
}
.nt-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nt-nav-links a:not(.nt-btn) {
  padding: 8px 12px;
  font-size: 14px;
  color: var(--nt-ink-soft);
  border-radius: 8px;
  transition: background .2s, color .2s;
}
.nt-nav-links a:not(.nt-btn):hover {
  background: rgba(11, 61, 58, .06);
  color: var(--nt-teal);
}
.nt-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--nt-line-strong);
  border-radius: 10px;
  background: rgba(255,255,255,.45);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nt-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--nt-ink);
}

/* ─── Buttons ─── */
.nt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .2s var(--nt-ease), background .2s, border-color .2s, color .2s;
}
.nt-btn:hover { transform: translateY(-1px); }
.nt-btn:active { transform: translateY(0); }
.nt-btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 13.5px;
  background: var(--nt-teal);
  color: #f7f3ea;
}
.nt-btn-sm:hover { background: #0e4a46; }
.nt-btn-primary {
  background: var(--nt-teal);
  color: #f7f3ea;
}
.nt-btn-primary:hover { background: #0e4a46; }
.nt-btn-secondary {
  background: transparent;
  border-color: var(--nt-line-strong);
  color: var(--nt-teal);
}
.nt-btn-secondary:hover {
  background: rgba(11, 61, 58, .05);
  border-color: var(--nt-teal-mid);
}
.nt-btn-ghost {
  background: transparent;
  color: var(--nt-ink-soft);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
  min-height: 40px;
}
.nt-btn-ghost:hover { color: var(--nt-teal); }

.nt-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.nt-cta-center { justify-content: center; }

/* ─── Hero: one composition, full-bleed visual ─── */
.nt-hero {
  position: relative;
  min-height: clamp(640px, 94vh, 900px);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.nt-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nt-hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(243, 239, 228, .15) 0%, rgba(243, 239, 228, .55) 55%, rgba(243, 239, 228, .96) 100%),
    linear-gradient(105deg, rgba(11, 61, 58, .08) 0%, transparent 45%);
  z-index: 2;
}
.nt-hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .35;
  background-image:
    linear-gradient(rgba(11, 61, 58, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 61, 58, .07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000 20%, transparent 75%);
  animation: nt-grid-drift 28s linear infinite;
}
.nt-hero-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.nt-nodes circle {
  fill: var(--nt-teal);
  opacity: .7;
}
.nt-nodes circle:nth-child(3),
.nt-nodes circle:nth-child(6) {
  fill: var(--nt-gold);
  opacity: .85;
}
.nt-pulse-ring circle {
  fill: none;
  stroke: var(--nt-gold);
  stroke-width: 1.2;
  opacity: 0;
  animation: nt-pulse 4.8s var(--nt-ease) infinite;
}
.nt-pulse-ring circle:nth-child(2) { animation-delay: .6s; }
.nt-pulse-ring circle:nth-child(3) { animation-delay: 1.2s; }
.nt-constellation path {
  stroke-dasharray: 12 10;
  animation: nt-dash 22s linear infinite;
}

.nt-hero-copy {
  position: relative;
  z-index: 3;
  padding: 0 0 clamp(48px, 10vh, 96px);
  max-width: 720px;
  margin-inline: auto 0;
  margin-inline-start: max(20px, calc((100% - var(--nt-max)) / 2));
  width: min(720px, calc(100% - 40px));
  animation: nt-rise .9s var(--nt-ease) both;
}
.nt-brand-hero {
  margin: 0 0 14px;
  font-family: var(--nt-display);
  font-size: clamp(28px, 4.6vw, 44px);
  font-weight: 700;
  color: var(--nt-teal);
  line-height: 1.25;
  letter-spacing: -.01em;
}
.nt-hero h1 {
  margin: 0;
  font-size: clamp(26px, 4.2vw, 42px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.02em;
  color: var(--nt-ink);
  max-width: 16ch;
}
.nt-lead {
  margin: 18px 0 28px;
  font-size: clamp(15.5px, 1.7vw, 18px);
  color: var(--nt-ink-soft);
  max-width: 38ch;
  font-weight: 500;
}
.nt-lane-hint {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--nt-mute);
}
.nt-lane-hint a {
  color: var(--nt-teal-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Reading progress */
.nt-progress {
  position: fixed;
  top: 0;
  inset-inline: 0;
  height: 3px;
  z-index: 60;
  pointer-events: none;
  background: transparent;
}
.nt-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--nt-teal), var(--nt-gold-bright));
  transition: width .12s linear;
}

/* Result frame */
.nt-result {
  padding-top: clamp(40px, 6vw, 72px);
  padding-bottom: clamp(24px, 4vw, 40px);
  border-bottom: 1px solid var(--nt-line);
  background: linear-gradient(180deg, rgba(11, 61, 58, .06), transparent 70%);
}
.nt-result[hidden] { display: none !important; }
.nt-result-panel {
  max-width: 720px;
}
.nt-result-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 22px 0 16px;
}
.nt-result-stat {
  display: grid;
  gap: 4px;
  min-width: 120px;
}
.nt-result-k {
  font-size: 12px;
  font-weight: 700;
  color: var(--nt-mute);
  letter-spacing: .06em;
}
.nt-result-v {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--nt-teal);
  line-height: 1.1;
}
.nt-result-m {
  font-size: 13px;
  color: var(--nt-ink-soft);
}
.nt-result-tops {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.nt-result-tops li {
  font-size: 14px;
  color: var(--nt-ink-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--nt-line);
}
.nt-result-note {
  margin: 0 0 18px;
  font-size: 13.5px;
  color: var(--nt-mute);
  max-width: 58ch;
  line-height: 1.8;
}
.nt-result-badge {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--nt-teal);
  background: rgba(232, 197, 71, .22);
  border: 1px solid rgba(201, 162, 39, .45);
  border-radius: 8px;
}

/* QC panel in #result */
.nt-qc-panel {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--nt-line);
  background: rgba(255,255,255,.45);
  max-width: 640px;
}
.nt-qc-panel[hidden] { display: none !important; }
.nt-qc-panel--pass {
  border-color: rgba(26, 107, 102, .35);
  background: rgba(26, 107, 102, .08);
}
.nt-qc-panel--hold {
  border-color: rgba(201, 162, 39, .45);
  background: rgba(232, 197, 71, .12);
}
.nt-qc-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 14px;
  margin-bottom: 8px;
}
.nt-qc-head strong {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-qc-status {
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  background: rgba(11, 61, 58, .1);
  color: var(--nt-teal);
}
.nt-qc-panel--hold .nt-qc-status {
  background: rgba(201, 162, 39, .22);
  color: #8a6a12;
}
.nt-qc-reasons {
  margin: 0 0 10px;
  padding: 0 1.1em 0 0;
  font-size: 13.5px;
  color: var(--nt-ink-soft);
  line-height: 1.7;
}
.nt-qc-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--nt-mute);
  line-height: 1.6;
}

/* Self-assess */
.nt-selfassess {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--nt-line);
  max-width: 640px;
}
.nt-selfassess[hidden] { display: none !important; }
.nt-selfassess-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-selfassess-sub {
  margin: 0 0 16px;
  font-size: 13.5px;
  color: var(--nt-mute);
  line-height: 1.75;
}
.nt-selfassess-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}
.nt-sa-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  font-size: 13.5px;
  color: var(--nt-ink-soft);
}
.nt-sa-row select {
  min-width: 64px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--nt-line-strong);
  font: inherit;
  background: #fff;
}
.nt-selfassess-out {
  margin: 0 0 14px;
  padding: 14px 0;
  border-top: 1px dashed var(--nt-line);
  font-size: 14px;
  color: var(--nt-ink-soft);
}
.nt-selfassess-out ol { margin: 8px 0; padding-inline-start: 22px; }
.nt-sa-note { font-size: 12.5px; color: var(--nt-mute); }

/* Lead next steps */
.nt-lead-next {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--nt-line);
}
.nt-lead-next[hidden] { display: none !important; }
.nt-lead-next-title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-lead-next ol {
  margin: 0 0 14px;
  padding-inline-start: 20px;
  font-size: 13.5px;
  color: var(--nt-ink-soft);
  line-height: 1.8;
}

/* Funnel local */
.nt-funnel { border-top: 1px solid var(--nt-line); }
.nt-funnel[hidden] { display: none !important; }
.nt-funnel-stages {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
  max-width: 900px;
}
.nt-funnel-stage {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 10px;
  background: rgba(255, 255, 255, .55);
  border: 1px solid var(--nt-line);
  border-radius: 10px;
  min-height: 88px;
}
.nt-funnel-stage-label {
  font-size: 12px;
  color: var(--nt-mute);
  font-weight: 600;
}
.nt-funnel-stage-n {
  font-size: 22px;
  font-weight: 800;
  color: var(--nt-teal);
  line-height: 1.2;
}
.nt-funnel-stage-rate {
  font-size: 12px;
  color: var(--nt-teal-mid);
}
.nt-funnel-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px 16px;
  max-width: 720px;
  margin-bottom: 18px;
}
.nt-funnel-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--nt-line);
  font-size: 13.5px;
  color: var(--nt-ink-soft);
}
.nt-funnel-item strong { color: var(--nt-teal); font-weight: 800; }
.nt-funnel-actions { margin-top: 8px; }

/* Dual paths */
.nt-paths { padding-top: clamp(40px, 6vw, 72px); }
.nt-paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 18px;
}
.nt-path-card {
  padding: 28px 24px 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .72), rgba(243, 239, 228, .4)),
    rgba(255, 255, 255, .5);
  border: 1px solid var(--nt-line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(20, 32, 31, .04);
}
.nt-path-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--nt-gold);
}
.nt-path-card h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-path-steps {
  margin: 0 0 20px;
  padding-inline-start: 20px;
  color: var(--nt-ink-soft);
  font-size: 14.5px;
  line-height: 1.85;
}
.nt-path-steps a {
  color: var(--nt-teal-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nt-path-steps a:hover { color: var(--nt-teal); }

/* Focus a11y */
:focus-visible {
  outline: 2px solid var(--nt-gold);
  outline-offset: 3px;
}
.nt-btn:focus-visible,
.nt-nav-links a:focus-visible,
.nt-burger:focus-visible {
  outline: 2px solid var(--nt-gold);
  outline-offset: 3px;
}

/* ─── Sections ─── */
.nt-section { padding: clamp(64px, 10vw, 110px) 0; }
.nt-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--nt-teal-mid);
  text-transform: none;
}
.nt-sec-head { max-width: 640px; margin-bottom: 40px; }
.nt-sec-head h2,
.nt-why-copy h2,
.nt-start-band h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.02em;
}
.nt-sub {
  margin: 0;
  color: var(--nt-ink-soft);
  font-size: 16px;
  max-width: 52ch;
}

/* Why */
.nt-why {
  border-top: 1px solid var(--nt-line);
  background: linear-gradient(180deg, rgba(255,255,255,.35), transparent 40%);
}
.nt-why-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.nt-why-copy p:last-child {
  margin: 0;
  color: var(--nt-ink-soft);
  font-size: 16.5px;
  max-width: 46ch;
}
.nt-why-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 22px;
  border-inline-start: 2px solid var(--nt-gold);
  padding-inline-start: 22px;
}
.nt-why-points li {
  display: grid;
  gap: 4px;
}
.nt-why-points strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-why-points span {
  font-size: 14.5px;
  color: var(--nt-ink-soft);
}

/* Goals */
.nt-goals {
  border-top: 1px solid var(--nt-line);
  background: rgba(255,255,255,.28);
}
.nt-goal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}
.nt-goal-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}
.nt-goal-i {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--nt-gold);
  padding-top: 4px;
}
.nt-goal-list h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-goal-list p {
  margin: 0;
  font-size: 14.5px;
  color: var(--nt-ink-soft);
  line-height: 1.75;
  max-width: 42ch;
}

/* Process — timeline, not cards */
.nt-process {
  background:
    linear-gradient(180deg, transparent, rgba(11, 61, 58, .04) 30%, transparent 100%);
}
.nt-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: none;
  position: relative;
}
.nt-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  inset-inline: 8% 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--nt-teal-mid), var(--nt-gold), transparent);
  opacity: .45;
}
.nt-steps li {
  padding: 0 16px;
  position: relative;
}
.nt-step-i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--nt-line-strong);
  color: var(--nt-teal);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px -16px rgba(11, 61, 58, .45);
}
.nt-steps h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
}
.nt-steps p {
  margin: 0 0 10px;
  font-size: 14.5px;
  color: var(--nt-ink-soft);
  max-width: 28ch;
}
.nt-step-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--nt-teal-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Capabilities */
.nt-capabilities {
  border-top: 1px solid var(--nt-line);
}
.nt-cap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 36px;
}
.nt-cap-list li {
  display: grid;
  gap: 6px;
  padding-inline-start: 16px;
  border-inline-start: 2px solid var(--nt-teal-soft);
}
.nt-cap-list strong {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-cap-list span {
  font-size: 14px;
  color: var(--nt-ink-soft);
  line-height: 1.75;
}
.nt-cap-list a {
  color: var(--nt-teal-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.nt-cap-list code {
  font-size: 12.5px;
  padding: 1px 5px;
  border-radius: 4px;
  background: rgba(11, 61, 58, .06);
}

/* Outputs */
.nt-outputs {
  background: linear-gradient(180deg, rgba(11, 61, 58, .035), transparent 70%);
}
.nt-out-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 28px;
}
.nt-out-item {
  padding: 4px 0 4px 14px;
  border-inline-start: 2px solid var(--nt-gold);
}
.nt-out-item h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-out-item p {
  margin: 0;
  font-size: 14px;
  color: var(--nt-ink-soft);
  line-height: 1.75;
  max-width: 36ch;
}

/* Start band */
.nt-start { padding-top: 40px; }
.nt-start-band {
  text-align: center;
  padding: clamp(40px, 7vw, 72px) 28px;
  border-radius: 20px;
  background:
    radial-gradient(600px 280px at 70% 0%, rgba(232, 197, 71, .22), transparent 60%),
    linear-gradient(145deg, #0b3d3a 0%, #134f4b 55%, #1a6b66 100%);
  color: #f3efe4;
  position: relative;
  overflow: hidden;
}
.nt-start-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: .4;
  pointer-events: none;
  mask-image: linear-gradient(180deg, #000, transparent);
}
.nt-start-band > * { position: relative; z-index: 1; }
.nt-start-band .nt-eyebrow { color: var(--nt-gold-bright); }
.nt-start-band h2 { color: #fff; }
.nt-start-band .nt-sub {
  margin: 0 auto 28px;
  color: rgba(243, 239, 228, .78);
}
.nt-start-band .nt-btn-primary {
  background: var(--nt-gold-bright);
  color: var(--nt-teal);
}
.nt-start-band .nt-btn-primary:hover { background: #f0d56a; }
.nt-start-band .nt-btn-secondary {
  border-color: rgba(243, 239, 228, .35);
  color: #f3efe4;
}
.nt-start-band .nt-btn-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(243, 239, 228, .55);
}
.nt-start-band .nt-btn-ghost { color: rgba(243, 239, 228, .8); }

/* Domains */
.nt-domains {
  border-top: 1px solid var(--nt-line);
  background: rgba(255,255,255,.22);
}
.nt-domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 22px;
}
.nt-domain-item {
  padding: 4px 0 4px 14px;
  border-inline-start: 2px solid var(--nt-teal-soft);
  display: grid;
  gap: 6px;
}
.nt-domain-item strong {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-domain-item span {
  font-size: 13.5px;
  color: var(--nt-ink-soft);
  line-height: 1.7;
}

/* Career tracks */
.nt-careers {
  border-top: 1px solid var(--nt-line);
  background: rgba(255,255,255,.18);
}
.nt-career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 24px;
}
.nt-career-item {
  display: grid;
  gap: 8px;
  padding: 4px 0 4px 14px;
  border-inline-start: 2px solid var(--nt-gold, #c9a227);
}
.nt-career-item strong {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-career-short {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--nt-ink-soft);
  line-height: 1.65;
}
.nt-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.nt-chip {
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(11, 61, 58, .08);
  color: var(--nt-teal-mid, #1a6b66);
}
.nt-career-roles {
  margin: 0;
  font-size: 12.5px;
  color: var(--nt-mute);
  line-height: 1.6;
}
.nt-career-growth {
  margin: 0;
  font-size: 12.5px;
  color: var(--nt-ink-soft);
  line-height: 1.65;
}

/* AI agents */
.nt-agents {
  background: linear-gradient(180deg, transparent, rgba(201, 162, 39, .06) 45%, transparent);
}
.nt-agent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.nt-agent-item {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid var(--nt-line);
  border-radius: 12px;
  background: rgba(255,255,255,.4);
}
.nt-agent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.nt-agent-item strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-agent-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}
.nt-agent-status--live_bridge {
  background: rgba(26, 107, 102, .14);
  color: var(--nt-teal);
}
.nt-agent-status--scaffold {
  background: rgba(201, 162, 39, .18);
  color: #8a6a12;
}
.nt-agent-status--planned {
  background: rgba(11, 61, 58, .06);
  color: var(--nt-mute);
}
.nt-agent-item p {
  margin: 0;
  font-size: 13.5px;
  color: var(--nt-ink-soft);
  line-height: 1.7;
}
.nt-agent-phase {
  font-size: 12px;
  color: var(--nt-mute);
  font-weight: 600;
}

/* Challenge pool */
.nt-pool {
  border-top: 1px solid var(--nt-line);
  background: linear-gradient(180deg, rgba(11, 61, 58, .05), transparent 55%);
}
.nt-pool-panel {
  max-width: 720px;
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid var(--nt-line);
  border-radius: 14px;
  background: rgba(255,255,255,.42);
}
.nt-pool-empty {
  margin: 0 0 16px;
  font-size: 14.5px;
  color: var(--nt-ink-soft);
  line-height: 1.8;
  max-width: 58ch;
}
.nt-pool-empty[hidden] { display: none !important; }
.nt-pool-body[hidden] { display: none !important; }
.nt-pool-status {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}
.nt-pool-k {
  font-size: 12px;
  font-weight: 700;
  color: var(--nt-mute);
  letter-spacing: .04em;
}
.nt-pool-status strong {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  color: var(--nt-teal);
}
.nt-pool-status--needs_review strong { color: #8a6a12; }
.nt-pool-status--in_pool strong { color: var(--nt-teal-mid, #1a6b66); }
.nt-pool-framing-inline,
.nt-pool-name {
  margin: 0 0 10px;
  font-size: 13.5px;
  color: var(--nt-ink-soft);
  line-height: 1.7;
}
.nt-pool-prize {
  margin: 14px 0 16px;
  padding: 12px 14px;
  border-inline-start: 2px solid var(--nt-gold, #c9a227);
}
.nt-pool-prize strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--nt-teal);
  margin-bottom: 6px;
}
.nt-pool-prize p {
  margin: 0 0 8px;
  font-size: 13.5px;
  color: var(--nt-ink-soft);
  line-height: 1.7;
}
.nt-pool-prize ul {
  margin: 0;
  padding: 0 1.1em 0 0;
  font-size: 13px;
  color: var(--nt-mute);
  line-height: 1.7;
}
.nt-pool-in {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--nt-teal);
}
.nt-pool-rules {
  max-width: 640px;
}
.nt-pool-rules h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-pool-rules ul {
  margin: 0 0 14px;
  padding: 0 1.2em 0 0;
  font-size: 14px;
  color: var(--nt-ink-soft);
  line-height: 1.85;
}
.nt-steps--5 {
  grid-template-columns: repeat(5, 1fr);
}

/* Org dimensions */
.nt-orgdims {
  background: linear-gradient(180deg, transparent, rgba(11, 61, 58, .035) 40%, transparent);
}
.nt-context-note {
  margin: -18px 0 28px;
  font-size: 13.5px;
  color: var(--nt-mute);
  max-width: 72ch;
  line-height: 1.85;
}
.nt-context-note strong { color: var(--nt-teal); }
.nt-org-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}
.nt-org-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
}
.nt-org-i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--nt-teal);
  color: #f7f3ea;
  font-weight: 800;
  font-size: 13px;
}
.nt-org-item strong {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--nt-teal);
  margin-bottom: 4px;
}
.nt-org-short {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--nt-ink-soft);
  margin-bottom: 6px;
}
.nt-org-item p {
  margin: 0;
  font-size: 13.5px;
  color: var(--nt-mute);
  line-height: 1.75;
}
.nt-dim-foot {
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--nt-ink-soft);
}
.nt-dim-foot a {
  color: var(--nt-teal-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Orgs + lead */
.nt-orgs { border-top: 1px solid var(--nt-line); }
.nt-orgs-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.nt-orgs-copy p {
  margin: 0 0 22px;
  color: var(--nt-ink-soft);
  font-size: 16px;
  max-width: 46ch;
}
form.nt-lead {
  padding: 22px 22px 18px;
  border: 1px solid var(--nt-line-strong);
  border-radius: 16px;
  background: rgba(255,255,255,.55);
  display: grid;
  gap: 12px;
  max-width: none;
  margin: 0;
}
.nt-lead-title {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-lead-sub {
  margin: -4px 0 4px;
  font-size: 13px;
  color: var(--nt-mute);
}
form.nt-lead label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--nt-ink-soft);
}
form.nt-lead input,
form.nt-lead textarea {
  width: 100%;
  border: 1px solid var(--nt-line-strong);
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
  color: var(--nt-ink);
}
form.nt-lead input:focus,
form.nt-lead textarea:focus {
  outline: 2px solid rgba(26, 107, 102, .35);
  border-color: var(--nt-teal-mid);
}
.nt-lead-msg {
  margin: 0;
  font-size: 13px;
  color: var(--nt-mute);
  min-height: 1.2em;
}
.nt-lead-msg.is-ok { color: var(--nt-teal-mid); }
.nt-lead-msg.is-warn { color: #8a3b2a; }
.nt-lead-msg a { color: var(--nt-teal); text-decoration: underline; }

/* Science */
.nt-science-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
}
.nt-science-list li {
  display: grid;
  gap: 6px;
  padding-inline-start: 16px;
  border-inline-start: 2px solid var(--nt-gold);
}
.nt-science-list strong {
  font-size: 15.5px;
  color: var(--nt-teal);
  font-weight: 800;
}
.nt-science-list span {
  font-size: 14px;
  color: var(--nt-ink-soft);
}

/* FAQ */
.nt-faq-list {
  display: grid;
  gap: 10px;
  max-width: 760px;
}
.nt-faq-list details {
  border-bottom: 1px solid var(--nt-line);
  padding: 12px 0;
}
.nt-faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--nt-teal);
  list-style: none;
}
.nt-faq-list summary::-webkit-details-marker { display: none; }
.nt-faq-list summary::after {
  content: "+";
  float: left;
  color: var(--nt-gold);
  font-weight: 800;
}
.nt-faq-list details[open] summary::after { content: "−"; }
.nt-faq-list p {
  margin: 10px 0 4px;
  font-size: 14.5px;
  color: var(--nt-ink-soft);
  line-height: 1.8;
}
.nt-faq-list a {
  color: var(--nt-teal-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Disclaimer */
.nt-note { padding-top: 8px; padding-bottom: 48px; }
.nt-disclaimer {
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--nt-line);
  font-size: 13.5px;
  color: var(--nt-mute);
  max-width: 68ch;
  line-height: 1.9;
}
.nt-disclaimer p { margin: 0 0 10px; }
.nt-disclaimer p:last-child { margin-bottom: 0; }
.nt-disclaimer strong { color: var(--nt-teal); font-weight: 700; }

/* Footer */
.nt-footer {
  padding: 48px 0 28px;
  border-top: 1px solid var(--nt-line);
  background: rgba(255,255,255,.28);
}
.nt-foot-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.nt-foot-tag {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--nt-mute);
  max-width: 32ch;
}
.nt-foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.nt-foot-links a {
  font-size: 14px;
  color: var(--nt-ink-soft);
}
.nt-foot-links a:hover { color: var(--nt-teal); }
.nt-foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--nt-line);
  font-size: 12.5px;
  color: var(--nt-mute);
}

/* Motion */
@keyframes nt-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes nt-pulse {
  0% { opacity: .55; transform: scale(.55); }
  70% { opacity: 0; transform: scale(1.15); }
  100% { opacity: 0; transform: scale(1.2); }
}
@keyframes nt-dash {
  to { stroke-dashoffset: -220; }
}
@keyframes nt-grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 56px 28px, 28px 56px; }
}
.nt-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--nt-ease), transform .7s var(--nt-ease);
  transition-delay: var(--d, 0s);
}
.nt-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .nt-reveal { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .nt-why-grid,
  .nt-orgs-grid,
  .nt-paths-grid { grid-template-columns: 1fr; }
  .nt-funnel-stages { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nt-steps,
  .nt-steps--5 {
    grid-template-columns: 1fr 1fr;
    gap: 28px 12px;
  }
  .nt-steps::before { display: none; }
  .nt-goal-list,
  .nt-cap-list { grid-template-columns: 1fr; }
  .nt-out-grid { grid-template-columns: 1fr 1fr; }
  .nt-domain-grid,
  .nt-domain-list,
  .nt-career-grid { grid-template-columns: 1fr 1fr; }
  .nt-agent-grid,
  .nt-org-grid { grid-template-columns: 1fr; }
  .nt-science-list { grid-template-columns: 1fr; }
  .nt-domain-list li:nth-child(3n) {
    border-inline-end: 1px solid var(--nt-line);
    padding-inline-end: 20px;
  }
  .nt-domain-list li:nth-child(2n) {
    border-inline-end: 0;
    padding-inline-end: 0;
  }
  .nt-science-grid { grid-template-columns: 1fr; gap: 22px; }
}
@media (max-width: 720px) {
  .nt-burger { display: inline-flex; }
  .nt-nav-links {
    position: fixed;
    inset: var(--nt-nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px 20px 20px;
    background: rgba(243, 239, 228, .97);
    border-bottom: 1px solid var(--nt-line);
    transform: translateY(-120%);
    transition: transform .3s var(--nt-ease);
  }
  .nt-nav-links.is-open { transform: none; }
  .nt-nav-links a:not(.nt-btn) {
    padding: 12px 14px;
    font-size: 15.5px;
  }
  .nt-nav-links .nt-btn { margin-top: 6px; width: 100%; }
  .nt-hero-copy {
    margin-inline: auto;
    text-align: center;
  }
  .nt-hero h1 { max-width: none; margin-inline: auto; }
  .nt-lead { margin-inline: auto; }
  .nt-cta { justify-content: center; }
  .nt-steps { grid-template-columns: 1fr; }
  .nt-steps li { padding: 0; }
  .nt-out-grid,
  .nt-domain-grid,
  .nt-domain-list,
  .nt-career-grid,
  .nt-agent-grid,
  .nt-org-grid { grid-template-columns: 1fr; }
  .nt-domain-list li,
  .nt-domain-list li:nth-child(3n),
  .nt-domain-list li:nth-child(2n) {
    border-inline-end: 0;
    padding-inline-end: 0;
  }
  .nt-start-band .nt-cta { flex-direction: column; align-items: stretch; }
  .nt-start-band .nt-btn { width: 100%; }
  .nt-funnel-stages { grid-template-columns: 1fr 1fr; }
  .nt-form-actions { flex-direction: column; align-items: stretch; }
  .nt-form-actions .nt-btn { width: 100%; }
  .nt-story-grid { grid-template-columns: 1fr; }
  .nt-growth-list { grid-template-columns: 1fr; }
}


/* ─── Process state ─── */
.nt-process-status {
  margin: 0 0 20px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--nt-teal-soft);
  color: var(--nt-teal);
  font-size: 14px;
  font-weight: 600;
}
.nt-steps--5 { grid-template-columns: repeat(5, 1fr); }
.nt-steps li.is-done .nt-step-i {
  background: var(--nt-teal);
  color: #fff;
  border-color: var(--nt-teal);
}
.nt-steps li.is-current .nt-step-i {
  background: var(--nt-gold-bright);
  border-color: var(--nt-gold);
  color: var(--nt-ink);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, .25);
}
.nt-steps li.is-current h3 { color: var(--nt-teal); }

/* ─── Job-fit / growth / profile / stories ─── */
.nt-jobfit {
  margin: 18px 0 8px;
  padding: 16px 18px;
  border: 1px solid var(--nt-line);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
}
.nt-jobfit[hidden] { display: none !important; }
.nt-jobfit-title { margin: 0 0 10px; font-weight: 800; color: var(--nt-teal); }
.nt-jobfit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.nt-jobfit-list li { display: grid; gap: 4px; }
.nt-result-growth-msg {
  margin: 12px 0 0;
  font-size: 15px;
  color: var(--nt-ink-soft);
  font-weight: 600;
}
.nt-career-item.is-suggested {
  outline: 2px solid var(--nt-gold);
  background: rgba(232, 197, 71, .12);
}
.nt-growth-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}
.nt-growth-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--nt-line);
}
.nt-growth-i {
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--nt-line-strong);
  font-weight: 800; color: var(--nt-teal); flex-shrink: 0;
}
.nt-growth-item a { font-weight: 700; color: var(--nt-teal-mid); text-decoration: underline; text-underline-offset: 3px; }
.nt-profile[hidden] { display: none !important; }
.nt-profile-panel {
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--nt-line);
}
.nt-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.nt-story-item {
  margin: 0;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--nt-line);
}
.nt-story-item p { margin: 0 0 12px; font-size: 15px; line-height: 1.8; color: var(--nt-ink-soft); }
.nt-story-item footer { font-size: 13px; font-weight: 700; color: var(--nt-teal); }
.nt-lead-steps {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px;
}
.nt-lead-steps span {
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  background: rgba(20,32,31,.06); color: var(--nt-mute);
}
.nt-lead-steps span.is-on { background: var(--nt-teal-soft); color: var(--nt-teal); }
.nt-lead-pane[hidden] { display: none !important; }
.nt-lead-review {
  font-size: 14px; line-height: 1.7; padding: 12px; border-radius: 10px;
  background: rgba(255,255,255,.7); border: 1px dashed var(--nt-line-strong);
}

/* ─── Intake conversational agent ─── */
.nt-intake {
  background:
    radial-gradient(ellipse 70% 50% at 90% 10%, rgba(232, 197, 71, .12), transparent 55%),
    linear-gradient(180deg, #f7f3ea 0%, var(--nt-bg) 100%);
}
.nt-intake-shell {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 22px 18px;
  border-radius: 18px;
  border: 1px solid var(--nt-line);
  background:
    linear-gradient(165deg, rgba(255,255,255,.82) 0%, rgba(247,243,234,.92) 100%);
  box-shadow: 0 18px 40px rgba(11, 61, 58, .06);
}
.nt-intake-meta {
  display: grid;
  gap: 8px;
}
.nt-intake-progress {
  height: 6px;
  border-radius: 999px;
  background: rgba(11, 61, 58, .1);
  overflow: hidden;
}
.nt-intake-progress-bar {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--nt-teal), var(--nt-gold-bright));
  transition: width .45s var(--nt-ease);
}
.nt-intake-stage {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--nt-teal);
}
.nt-intake-badge {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--nt-mute);
  letter-spacing: .01em;
}
.nt-intake-chat {
  max-height: 320px;
  overflow: auto;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--nt-line);
  background: rgba(11, 61, 58, .03);
  scroll-behavior: smooth;
}
.nt-intake-msg {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 12px;
  animation: nt-rise .45s var(--nt-ease) both;
}
.nt-intake-msg p {
  margin: 4px 0 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--nt-ink-soft);
}
.nt-intake-msg-role {
  font-size: 11px;
  font-weight: 800;
  color: var(--nt-teal-mid);
}
.nt-intake-msg--agent {
  justify-self: start;
  background: #fff;
  border: 1px solid var(--nt-line);
  border-inline-start: 3px solid var(--nt-teal);
}
.nt-intake-msg--user {
  justify-self: end;
  background: var(--nt-teal-soft);
  border: 1px solid rgba(26, 107, 102, .22);
  border-inline-end: 3px solid var(--nt-gold);
}
.nt-intake-form {
  display: grid;
  gap: 12px;
}
.nt-intake-form[hidden] { display: none !important; }
.nt-intake-form-stage {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-intake-field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--nt-ink-soft);
}
.nt-intake-field input,
.nt-intake-field textarea,
.nt-intake-field select {
  font: inherit;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--nt-line-strong);
  background: #fff;
  color: var(--nt-ink);
}
.nt-intake-field input:focus,
.nt-intake-field textarea:focus,
.nt-intake-field select:focus {
  outline: 2px solid rgba(26, 107, 102, .35);
  border-color: var(--nt-teal-mid);
}
.nt-intake-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nt-ink-soft);
  cursor: pointer;
}
.nt-intake-check input { margin-top: 3px; accent-color: var(--nt-teal); }
.nt-intake-fieldset {
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  border: 1px dashed var(--nt-line-strong);
}
.nt-intake-fieldset legend {
  padding: 0 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-intake-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nt-intake-check--chip {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--nt-line);
  background: #fff;
  font-size: 13px;
}
.nt-intake-check--chip:has(input:checked) {
  border-color: var(--nt-teal-mid);
  background: var(--nt-teal-soft);
}
.nt-intake-doc {
  display: grid;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid var(--nt-line);
}
.nt-intake-doc:last-child { border-bottom: 0; }
.nt-intake-doc-status {
  font-size: 12px;
  font-weight: 700;
  color: var(--nt-mute);
}
.nt-intake-doc-note {
  margin: 0 0 8px;
  font-size: 12.5px;
  color: var(--nt-mute);
}
.nt-intake-file {
  display: grid;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--nt-mute);
}
.nt-intake-file input[type="file"] {
  font: inherit;
  font-size: 12px;
}
.nt-intake-form-err {
  margin: 0;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(160, 40, 40, .08);
  color: #7a1f1f;
  font-size: 13px;
  font-weight: 600;
}
.nt-intake-form-err[hidden] { display: none !important; }
.nt-intake-done {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(201, 162, 39, .45);
  background: rgba(232, 197, 71, .12);
}
.nt-intake-done[hidden] { display: none !important; }
.nt-intake-done-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--nt-teal);
}
.nt-intake-done-sub {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--nt-ink-soft);
}
.nt-agent-status--live_ui {
  background: var(--nt-teal-soft);
  color: var(--nt-teal);
}

@media (max-width: 720px) {
  .nt-intake-shell { padding: 16px 14px; }
  .nt-intake-chat { max-height: 260px; }
}
