/*
  Shared base styles for every High Five Hosting page (landing + legal docs).
  Design tokens mirror the app theme (Montserrat, dark surface, mint accent
  #4edea3). Page-specific layout lives in the page (landing) or in legal.css.
*/
:root {
  --bg: #0f1114;
  --surface: #191c21;
  --text: #f4f6f8;
  --muted: #9aa2ad;
  --accent: #4edea3;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

/* ── Language switcher (ES / EN / DE) ─────────────────────────────────────── */
.langbar {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 20;
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(25, 28, 33, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}
.langbar button {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--muted);
  background: transparent;
  padding: 6px 10px;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}
.langbar button:hover {
  color: var(--text);
}
.langbar button[aria-pressed="true"] {
  color: #06231a;
  background: var(--accent);
}
