/* Exact Onboarding chrome — NDC Operational profile */
[data-profile="operational"] h1 {
  font-family: var(--font-display);
  font-size: var(--text-h5);
  font-weight: var(--weight-bold);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  margin: 0;
}

[data-profile="operational"] h2 {
  font-family: var(--font-display);
  font-size: var(--text-h6);
  font-weight: var(--weight-semibold);
  margin: 0;
}

[data-profile="operational"] h3 {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  margin: 0;
}

[data-profile="operational"] p { margin: 0; }

.ndc-shell {
  background: var(--ndc-navy);
  color: var(--fg-inverse);
}

.ndc-bar {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: 0 var(--space-6);
  min-height: 56px;
}

.ndc-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--fg-inverse);
  text-decoration: none;
  flex-shrink: 0;
}

.ndc-brand:hover {
  color: var(--fg-inverse);
  text-decoration: none;
}

.ndc-brand img {
  height: 28px;
  width: auto;
  display: block;
}

.ndc-brand strong {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-tight);
}

.ndc-brand small {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--weight-medium);
}

.ndc-tabs {
  display: flex;
  align-self: stretch;
  gap: var(--space-4);
}

.ndc-tabs a {
  display: flex;
  align-items: center;
  padding: 0 var(--space-1);
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border-bottom: 3px solid transparent;
  text-decoration: none;
}

.ndc-tabs a:hover {
  color: #fff;
  text-decoration: none;
}

.ndc-tabs a.active {
  color: #fff;
  font-weight: var(--weight-bold);
  border-bottom-color: var(--ndc-red);
}

.ndc-signout {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  text-decoration: none;
}

.ndc-signout:hover {
  color: #fff;
  text-decoration: none;
}

.page-head {
  display: flex;
  justify-content: space-between;
  gap: var(--space-6);
  align-items: flex-end;
  padding: var(--space-5) var(--space-6);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border-default);
}

.eyebrow {
  margin: 0 0 var(--space-1);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--fg-secondary);
}

.lede {
  max-width: 44rem;
  margin: var(--space-2) 0 0;
  color: var(--fg-secondary);
  font-size: var(--text-sm);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: flex-end;
  align-items: center;
}

.btn,
button.primary,
button.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1-5);
  min-height: 32px;
  padding: 6px 12px;
  border-radius: var(--radius-button);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

button.primary,
.btn-primary {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-primary-fg);
}

button.primary:hover:not(:disabled),
.btn-primary:hover:not(:disabled) {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

button.ghost,
.btn-secondary {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-default);
  color: var(--fg-primary);
}

button.ghost:hover:not(:disabled),
.btn-secondary:hover:not(:disabled) {
  background: var(--bg-subtle);
}

button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

input[type="search"],
input[type="text"],
select {
  min-height: var(--input-height);
  padding: 0 var(--space-2-5);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-input);
  background: var(--bg-surface);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
}

input[type="search"] { width: 18rem; }

.banner {
  margin: 0;
  padding: var(--space-3) var(--space-6);
  background: var(--color-danger-light);
  color: var(--color-danger);
  border-bottom: 1px solid var(--color-danger-border);
  font-size: var(--text-sm);
}

.banner.ok {
  background: var(--color-success-light);
  color: var(--color-success);
  border-color: var(--color-success-border);
}

.banner.warn {
  background: var(--color-warning-light);
  color: var(--color-warning);
  border-color: var(--color-warning-border);
}

.hidden,
button.hidden,
button.ghost.hidden,
button.primary.hidden {
  display: none;
}

.home {
  max-width: 56rem;
  margin: 0 auto;
  padding: var(--space-8) var(--space-6) var(--space-12);
}

.home .lede { margin-bottom: var(--space-6); }

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.feature {
  display: block;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: var(--space-5);
  text-decoration: none;
  color: inherit;
}

.feature:hover {
  text-decoration: none;
  color: inherit;
  border-color: var(--border-strong);
}

.feature h2 { margin-bottom: var(--space-2); }
.feature p { color: var(--fg-secondary); font-size: var(--text-sm); }
.feature .outcomes {
  margin: var(--space-3) 0 0;
  padding-left: 1.15em;
  color: var(--fg-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-snug);
}
.feature .outcomes li + li { margin-top: var(--space-1); }
.feature .go {
  margin-top: var(--space-4);
  font-weight: var(--weight-semibold);
  color: var(--color-link);
}

.feature.onboard { border-left: 4px solid var(--product-guardian); }
.feature.runs { border-left: 4px solid var(--product-enrichment); }
.feature.migrate { border-left: 4px solid var(--ndc-navy); }
.feature.workos { border-left: 4px solid var(--product-rfms); }
.feature.self-service { border-left: 4px solid var(--color-care); }
.feature.docs { border-left: 4px solid var(--product-compliance); }

.feature.coming-soon {
  cursor: default;
  pointer-events: none;
}

.feature.coming-soon .go {
  color: var(--fg-secondary);
}

@media (max-width: 800px) {
  .features { grid-template-columns: 1fr; }
  .ndc-bar { flex-wrap: wrap; padding-top: var(--space-3); }
  input[type="search"] { width: 100%; }
}
