/* Tiger Tracks brand tokens — op-legal.
   Copied from op-dashboard app/tokens.css + app/globals.css so these pages
   look like the dashboard without sharing a build with it. If the brand
   changes, change it there first (docs/BRAND.md is authoritative) and mirror
   it here. No Tailwind, no build step — this file is the whole design system
   for two static pages. */

@import url('/fonts/fonts.css');

:root {
  --tt-orange: #FE5E16;
  --tt-ink:    #052E3F;
  --tt-paper:  #EFF0EF;
  --tt-white:  #FFFFFF;

  --tt-text:    var(--tt-ink);
  --tt-bg:      var(--tt-paper);
  --tt-surface: var(--tt-white);
  --tt-border:  #DFE1DF;

  --tt-radius: 8px;

  --font-display: 'Work Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-eyebrow: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--tt-bg);
  color: var(--tt-text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
}

/* Ink header bar, white lockup — the dashboard's own chrome (BRAND.md). */
.bar {
  background: var(--tt-ink);
  color: var(--tt-white);
}
.bar-inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
}
/* Native aspect 260x143. 96px wide on mobile, 120px desktop (BRAND.md). */
.bar img { display: block; width: 96px; height: 53px; }
@media (min-width: 640px) {
  .bar img { width: 120px; height: 66px; }
}

main {
  max-width: 768px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

/* One white card on the Paper ground, 1px border, 8px radius, no shadow. */
.card {
  background: var(--tt-surface);
  border: 1px solid var(--tt-border);
  border-radius: var(--tt-radius);
  padding: 28px 24px;
}
@media (min-width: 640px) {
  main { padding: 56px 24px 80px; }
  .card { padding: 40px; }
}

.eyebrow {
  font-family: var(--font-eyebrow);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
@media (min-width: 640px) { h1 { font-size: 38px; } }

.effective {
  font-family: var(--font-eyebrow);
  font-weight: 400;
  font-size: 14px;
  margin: 10px 0 0;
}

.body > p { margin: 0 0 20px; }
.body > p:last-child { margin-bottom: 0; }
.body { margin-top: 28px; }

/* Paragraph lead-ins in the privacy copy. Ink, weight only — Orange is the
   accent and it is reserved; it also fails 4.5:1 on white at this size. */
.body strong { font-weight: 500; }

a { color: var(--tt-ink); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }

:focus-visible {
  outline: 2px solid var(--tt-orange);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Orange clears 4.65:1 on Ink but not on Paper — on the bar, focus is white. */
.bar :focus-visible { outline-color: var(--tt-white); }

footer {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 24px 48px;
  font-size: 14px;
}
footer nav { display: flex; gap: 20px; flex-wrap: wrap; }
/* 44px minimum tap target (BRAND.md). */
footer a { display: inline-flex; align-items: center; min-height: 44px; }
