/* Halt — standalone styles for the /halt section. Never imported by the
   Friio pages; friio.io/styles.css is never imported here. */
:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --ink: #0e1116;
  --muted: #5c6570;
  --faint: #98a1ab;
  --accent: #0fb5a6;
  --accent-soft: #e0f5f2;
  --hairline: #e3e7eb;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Instrument Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.halt-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.halt-brand-dot { width: 12px; height: 12px; border-radius: 4px; background: var(--accent); }

/* -------------------------------------------- minimal holding page */
.halt-min { min-height: 100vh; display: flex; flex-direction: column; }
.halt-min-main {
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 20vh 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.halt-min-brand { margin-bottom: 26px; }
.halt-min h1 {
  font-size: clamp(34px, 6vw, 54px);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.08;
  margin: 0 0 16px;
  text-wrap: balance;
}
.halt-min-sub { color: var(--muted); font-size: 17px; max-width: 52ch; margin: 0; }
[dir="rtl"] .halt-min-main { align-items: flex-end; text-align: right; }

/* -------------------------------------------------- legal documents */
.halt-header {
  position: sticky;
  top: 0;
  background: rgba(246, 247, 249, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
  z-index: 10;
}
.halt-header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.halt-nav { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.halt-nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; }
.halt-nav a:hover { color: var(--ink); }
.halt-langs { display: flex; gap: 2px; margin-left: 6px; }
.halt-langs a {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--faint);
  text-decoration: none;
  padding: 3px 6px;
  border-radius: 6px;
}
.halt-langs a:hover { color: var(--ink); }
.halt-langs a.on { color: var(--accent); background: var(--accent-soft); }

.halt-legal { max-width: 760px; margin: 0 auto; padding: 56px 24px 80px; }
.halt-legal h1 { font-size: clamp(30px, 4.5vw, 40px); letter-spacing: -0.02em; margin: 0 0 10px; }
.halt-legal .lead { color: var(--muted); font-size: 16.5px; }
.halt-legal .updated { color: var(--faint); font-size: 13.5px; margin-bottom: 34px; }
.halt-legal h2 { font-size: 21px; letter-spacing: -0.01em; margin: 36px 0 10px; }
.halt-legal h3 { font-size: 16.5px; margin: 22px 0 8px; }
.halt-legal p, .halt-legal li { color: #2a323c; font-size: 15.5px; }
.halt-legal ul { padding-left: 22px; }
.halt-legal a { color: var(--accent); }
.halt-legal strong { color: var(--ink); }
.halt-note { background: var(--accent-soft); border-radius: 12px; padding: 14px 18px; font-size: 14.5px; }

/* --------------------------------------------------------- CTA / misc */
.halt-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}
.halt-cta {
  display: inline-block;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 34px;
  border-radius: 999px;
}
.halt-cta:hover { opacity: 0.9; }
.halt-cta-sub { display: block; margin-top: 12px; color: var(--faint); font-size: 13px; }

/* ---------------------------------------------------------------- footer */
.halt-footer { border-top: 1px solid var(--hairline); padding: 26px 24px 44px; }
.halt-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  color: var(--faint);
  font-size: 13.5px;
}
.halt-footer a { color: var(--muted); text-decoration: none; margin-right: 18px; }
.halt-footer a:hover { color: var(--ink); }

@media (max-width: 760px) {
  .halt-min-main { padding-top: 14vh; }
  .halt-footer-inner { flex-direction: column; align-items: flex-start; }
}
