/* Pokus legal pages — shared styles */
:root {
  --bg: #F4F6FA;
  --bg-2: #ECEFF6;
  --line: rgba(20,30,55,0.10);
  --line-2: rgba(20,30,55,0.22);
  --fg: #0F1729;
  --fg-dim: rgba(15,23,41,0.62);
  --fg-mute: rgba(15,23,41,0.42);
  --accent: #6D28D9;
  --accent-2: #A855F7;
}
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 400;
  font-variation-settings: 'opsz' 14;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01' 1;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  line-height: 1.5;
}
::selection { background: var(--accent); color: #FFFBF3; }
a { color: inherit; text-decoration: none; }
.mono { font-family: 'Geist Mono', ui-monospace, monospace; letter-spacing: -0.01em; }
.serif { font-family: 'Gloock', Georgia, serif; letter-spacing: -0.02em; }
.display {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-variation-settings: 'opsz' 96, 'wght' 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

/* Top nav */
.legal-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244,246,250,0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.legal-nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.legal-logo { font-size: 24px; font-weight: 700; letter-spacing: -0.04em; }
.legal-logo .dot { color: var(--accent); }
.legal-nav-back {
  font-size: 13px; color: var(--fg-dim);
  display: inline-flex; align-items: center; gap: 8px;
}
.legal-nav-back:hover { color: var(--fg); }

/* Hero */
.legal-hero {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 32px 32px;
}
.legal-kicker {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-mute);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 10px;
}
.legal-kicker .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
}
.legal-h1 {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 16px;
}
.legal-h1 .dot { color: var(--accent); }
.legal-meta {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; color: var(--fg-mute);
  letter-spacing: 0.04em;
}

/* Body */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 32px 120px;
}
.legal-body section { margin-bottom: 56px; }
.legal-body h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  display: flex; gap: 14px; align-items: baseline;
}
.legal-body h2 .num {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-weight: 500;
  flex-shrink: 0;
  width: 40px;
}
.legal-body h3 {
  font-size: 16px; font-weight: 600;
  letter-spacing: -0.01em;
  margin: 24px 0 10px;
  color: var(--fg);
}
.legal-body p {
  font-size: 16px;
  color: var(--fg-dim);
  margin-bottom: 14px;
  text-wrap: pretty;
}
.legal-body p strong { color: var(--fg); font-weight: 600; }
.legal-body ul {
  list-style: none;
  margin: 12px 0 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.legal-body ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  color: var(--fg-dim);
  line-height: 1.55;
}
.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 4px; top: 11px;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0.55;
}
.legal-callout {
  margin: 24px 0;
  padding: 18px 22px;
  background: rgba(109,40,217,0.05);
  border: 1px solid rgba(109,40,217,0.18);
  border-radius: 14px;
}
.legal-callout .label {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}
.legal-callout p { color: var(--fg); margin: 0; font-size: 15px; }
.legal-contact {
  border: 1px solid var(--line-2);
  border-radius: 16px;
  padding: 22px 24px;
  background: #fff;
  margin-top: 8px;
}
.legal-contact .name {
  font-weight: 700; letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--fg);
}
.legal-contact .row {
  font-size: 14.5px; color: var(--fg-dim);
  line-height: 1.55;
}
.legal-contact a { color: var(--accent); }

/* Cross-links between legal pages */
.legal-also {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.legal-also a {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: transform 200ms, border-color 200ms;
}
.legal-also a:hover {
  transform: translateY(-2px);
  border-color: var(--line-2);
}
.legal-also .lbl {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 10px;
  display: block;
}
.legal-also .ttl {
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.02em;
}
.legal-also a.active {
  background: var(--fg);
  color: var(--bg);
}
.legal-also a.active .lbl { color: rgba(244,246,250,0.55); }

/* Footer */
.legal-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.legal-footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 60px 32px 36px;
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
  gap: 40px;
}
.legal-footer h4 {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: 14px;
  font-weight: 500;
}
.legal-footer .brand-name {
  font-size: 28px; font-weight: 700; letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.legal-footer .brand-tag {
  font-size: 14px; color: var(--fg-dim);
}
.legal-footer p, .legal-footer a {
  font-size: 14px; color: var(--fg-dim);
  line-height: 1.55;
}
.legal-footer a:hover { color: var(--fg); }
.legal-footer .company-name { color: var(--fg); font-weight: 600; margin-bottom: 8px; display: block; }
.legal-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.legal-footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 32px;
  text-align: center;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: var(--fg-mute);
  letter-spacing: 0.04em;
}

@media (max-width: 760px) {
  .legal-hero { padding: 56px 24px 24px; }
  .legal-body { padding: 40px 24px 80px; }
  .legal-also { grid-template-columns: 1fr; }
  .legal-footer-inner { grid-template-columns: 1fr 1fr; }
  .legal-body h2 { flex-direction: column; gap: 4px; }
  .legal-body h2 .num { width: auto; }
}
