/* ════════════════════════════════════════════════════
   nda.css — NURI Pitch · Confidentiality Summary page
   Depends on: tokens.css
   ════════════════════════════════════════════════════ */

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── Header ───────────────────────────────────────── */
.nda-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(5,8,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10;
}
.nda-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nda-logo-mark {
  width: 32px; height: 32px;
  background: var(--blue-dim);
  border: 1px solid rgba(41,121,255,0.3);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--cond);
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
}
.nda-logo-name {
  font-family: var(--cond);
  font-size: 14px;
  font-weight: 700;
  color: var(--text2);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nda-confidential-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Page wrap ────────────────────────────────────── */
.nda-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

.nda-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nda-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--blue);
  opacity: 0.5;
}

.nda-title {
  font-family: var(--cond);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 20px;
}

.nda-version {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.nda-version span:not(:last-child)::after {
  content: '·';
  margin-left: 12px;
  opacity: 0.5;
}

.nda-intro {
  font-size: 14.5px;
  color: var(--text2);
  line-height: 1.75;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 48px;
}

/* ── Sections ─────────────────────────────────────── */
.nda-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.nda-section:first-of-type { border-top: none; }

.nda-section-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.nda-section-title {
  font-family: var(--cond);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.nda-section-body {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.75;
}
.nda-section-body p { margin-top: 12px; }
.nda-section-body strong { color: var(--text); font-weight: 600; }

.nda-clause-list {
  margin: 16px 0 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nda-clause-list li {
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.6;
}

.nda-highlight {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--green-dim);
  border: 1px solid rgba(0,230,118,0.2);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 13.5px;
  color: var(--text2);
  line-height: 1.65;
}
.nda-highlight strong { color: var(--green); font-weight: 700; }

.nda-ref {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text3);
  letter-spacing: 0.3px;
}

/* ── Close button ─────────────────────────────────── */
.nda-close-wrap {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.nda-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r-md);
  color: var(--text2);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--t-base), border-color var(--t-base), color var(--t-base);
}
.nda-close-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
  color: var(--text);
}

/* ── Mobile ───────────────────────────────────────── */
@media (max-width: 600px) {
  .nda-header { padding: 16px 20px; }
  .nda-wrap { padding: 40px 20px 72px; }
  .nda-logo-name { font-size: 12px; }
  .nda-section { padding: 24px 0; }
  .nda-section-title { font-size: 18px; }
}
