/* Shared styling for the standalone legal pages. Kept separate from the app
   bundle so these stay plain static HTML that works with JavaScript disabled. */

:root {
  --navy: #0f1437;
  --navy-800: #141a4a;
  --orange: #fe5d14;
  --cream: #f6f4ef;
  --steel: #e9eef6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: "Public Sans", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2 { font-family: "Zilla Slab", Georgia, serif; line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); margin: 0.2rem 0 0.4rem; }
h2 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); margin: 2.4rem 0 0.6rem; }

a { color: var(--orange); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { text-decoration: none; }

/* header bar */
.bar {
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem clamp(1.1rem, 4vw, 2.5rem);
}
.brand img { height: 44px; width: auto; display: block; }
.back { color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 600; text-decoration: none; }
.back:hover { color: var(--orange); }

main {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.1rem, 4vw, 2.5rem) 4rem;
}

.eyebrow {
  color: var(--orange); font-weight: 700; text-transform: uppercase;
  letter-spacing: .2em; font-size: .72rem; margin: 0;
}
.updated { color: rgba(15,20,55,.5); font-size: .88rem; margin: 0 0 2rem; }
.lead { font-size: 1.12rem; color: rgba(15,20,55,.8); }

ul { padding-left: 1.15rem; }
li { margin-bottom: .5rem; }

.links {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(15,20,55,.12);
  font-weight: 600;
}

.foot {
  background: var(--navy); color: rgba(255,255,255,.5);
  padding: 1.4rem clamp(1.1rem, 4vw, 2.5rem);
  display: flex; flex-wrap: wrap; gap: .4rem 1.5rem;
  justify-content: space-between; font-size: .8rem;
}
.foot p { margin: 0; }
.foot a { color: rgba(255,255,255,.7); }

:where(a):focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
