/* ══════════════════════════════════════
   SITE FOOTER — shared across all panels
   ══════════════════════════════════════ */
.site-footer {
  padding: 40px 40px 28px;
  text-align: center;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-link {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 4px 6px;
}

.footer-link:hover {
  color: var(--ll-amber);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  user-select: none;
}

.footer-copy {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 14px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   CTA BUTTONS — inside Light Work card
   ══════════════════════════════════════ */
.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 2rem;
}

.cta-btn {
  font-family: "Share Tech Mono", monospace;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 14px 36px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.cta-btn--primary {
  background: linear-gradient(135deg, var(--ll-amber), var(--ll-gold));
  color: #111;
  border: none;
  font-weight: 600;
  box-shadow:
    0 4px 20px rgba(255, 180, 0, 0.25),
    0 0 40px rgba(255, 180, 0, 0.08);
}

.cta-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 28px rgba(255, 180, 0, 0.35),
    0 0 60px rgba(255, 180, 0, 0.12);
  filter: brightness(1.1);
}

.cta-btn--ghost {
  background: transparent;
  color: var(--ll-gold);
  border: 1px solid rgba(255, 180, 0, 0.3);
  font-weight: 400;
  box-shadow: 0 0 20px rgba(255, 180, 0, 0.04);
}

.cta-btn--ghost:hover {
  background: rgba(255, 180, 0, 0.08);
  border-color: rgba(255, 180, 0, 0.5);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(255, 180, 0, 0.12);
}

/* ══════════════════════════════════════
   LEGAL / PRIVACY — simple dark panel cards
   ══════════════════════════════════════ */
.legal-card {
  max-width: 820px;
  margin: 60px auto 40px;
  padding: 48px 56px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.legal-card h2 {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.8rem;
  color: var(--ll-gold);
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

.legal-card .legal-updated {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.legal-card h3 {
  font-family: "Share Tech Mono", monospace;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 28px 0 12px;
  letter-spacing: 0.03em;
}

.legal-card p {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin: 0 0 16px;
}

.legal-card ul {
  padding-left: 20px;
  margin: 0 0 16px;
}

.legal-card ul li {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 4px;
}

.legal-card a {
  color: var(--ll-amber);
  text-decoration: none;
}

.legal-card a:hover {
  text-decoration: underline;
}
