/* Lokentra Research — shared nav/footer for report pages */

.lokentra-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 24px;
}

.lokentra-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 52px;
}

.lokentra-wordmark {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f5f5f5;
  text-decoration: none;
}

.lokentra-wordmark:hover {
  text-decoration: none;
  color: #ffffff;
}

.lokentra-nav-link {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 150ms ease;
}

.lokentra-nav-link:hover {
  color: #f5f5f5;
  text-decoration: none;
}

.lokentra-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 24px 40px;
  background: #0a0a0a;
}

.lokentra-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.lokentra-footer-nav {
  margin-bottom: 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.lokentra-footer-nav a {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 150ms ease;
}

.lokentra-footer-nav a:hover {
  color: #f5f5f5;
}

.lokentra-footer-copy {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.75rem;
  color: #525252;
}

/* PDF gate modal */
.pdf-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeInOverlay 200ms ease;
}

@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pdf-gate-modal {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 32px;
  max-width: 400px;
  width: 100%;
  animation: slideUp 200ms ease;
}

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

.pdf-gate-modal h3 {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #f5f5f5;
  margin: 0 0 8px 0;
}

.pdf-gate-modal p {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 0.875rem;
  color: #a3a3a3;
  margin: 0 0 20px 0;
  line-height: 1.5;
  text-align: left;
}

.pdf-gate-modal input {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: #f5f5f5;
  font-size: 0.875rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  outline: none;
  transition: border-color 150ms ease;
  box-sizing: border-box;
}

.pdf-gate-modal input:focus {
  border-color: rgba(255, 255, 255, 0.3);
}

.pdf-gate-modal input::placeholder {
  color: #525252;
}

.pdf-gate-submit {
  display: block;
  width: 100%;
  padding: 10px 16px;
  margin-top: 16px;
  background: #f5f5f5;
  color: #0a0a0a;
  border: none;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  cursor: pointer;
  transition: opacity 150ms ease;
}

.pdf-gate-submit:hover:not(:disabled) {
  opacity: 0.9;
}

.pdf-gate-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pdf-gate-cancel {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  background: none;
  border: none;
  color: #525252;
  font-size: 0.75rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  cursor: pointer;
}

.pdf-gate-cancel:hover {
  color: #a3a3a3;
}

.pdf-gate-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 8px;
}
