/**
 * OKG public shell — shared nav + footer styling.
 * Matches the Brand v2 landing grid aesthetic: glass, orange accent,
 * JetBrains Mono eyebrows, subtle gradient borders.
 *
 * Scoped with .okg-* to avoid collisions with page-level CSS.
 */

/* Reserve space so the fixed nav doesn't overlap hero copy on first paint */
.okg-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  border-bottom: 1px solid rgba(15,23,42,.8);
  background: rgba(10,15,26,.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: env(safe-area-inset-top);
}
.okg-nav .wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.okg-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 12px; }

.okg-nav-brand { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.okg-brand-mark { width: 32px; height: 32px; object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(245,158,11,.4)); flex-shrink: 0;
}
.okg-brand-name { font-weight: 700; letter-spacing: -.01em; font-size: 15px; color: #e2e8f0; }
.okg-brand-name b { color: #fb923c; font-weight: 700; }

.okg-nav-links { display: none; align-items: center; gap: 32px; font-size: 14px; color: #94a3b8; }
.okg-nav-links a { color: inherit; text-decoration: none; transition: color .15s; }
.okg-nav-links a:hover,
.okg-nav-links a.active { color: #fff; }

.okg-nav-cta { display: none; align-items: center; gap: 12px; }
.okg-nav-cta .okg-signin { font-size: 14px; color: #94a3b8; text-decoration: none; transition: color .15s; }
.okg-nav-cta .okg-signin:hover { color: #fff; }
.okg-nav-cta .okg-req { font-size: 14px; font-weight: 500; padding: 8px 16px; border-radius: 8px;
  background: #fff; color: #0f172a; text-decoration: none; transition: background .15s;
}
.okg-nav-cta .okg-req:hover { background: #f1f5f9; }

.okg-nav-burger { margin-right: -8px; padding: 10px; color: #e2e8f0;
  min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; cursor: pointer;
}

@media (min-width: 768px) {
  .okg-nav-links, .okg-nav-cta { display: flex; }
  .okg-nav-burger { display: none; }
}

.okg-mobile-menu { display: none; border-top: 1px solid rgba(15,23,42,.8);
  background: rgba(10,15,26,.95); backdrop-filter: blur(20px); padding: 16px 20px;
}
.okg-mobile-menu.open { display: block; }
.okg-mobile-menu a { display: block; font-size: 14px; color: #cbd5e1;
  padding: 6px 0; text-decoration: none;
}
.okg-mobile-menu a.active { color: #fff; }
.okg-mobile-menu .okg-req { display: block; text-align: center; margin-top: 12px;
  padding: 10px 16px; border-radius: 8px; background: #fff; color: #0f172a; font-weight: 500;
}

/* Footer */
.okg-footer { position: relative; border-top: 1px solid rgba(15,23,42,.8);
  background: rgba(8,12,20,.6); padding: 32px 0;
}
.okg-footer .wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.okg-footer-inner { display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start; justify-content: space-between;
}
@media (min-width: 640px) {
  .okg-footer-inner { flex-direction: row; align-items: center; }
}
.okg-footer-brand { display: flex; align-items: center; gap: 10px; }
.okg-footer-mark { width: 24px; height: 24px; object-fit: contain; opacity: .9; }
.okg-footer-name { font-weight: 600; font-size: 14px; color: #cbd5e1; }
.okg-footer-name b { color: #fb923c; font-weight: 700; }
.okg-footer-copy { color: #64748b; font-size: 13px; margin-left: 8px; }

.okg-footer-links { display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px; color: #94a3b8; }
.okg-footer-links a { color: inherit; text-decoration: none; transition: color .15s; }
.okg-footer-links a:hover { color: #fff; }
