/* ════════════════════════════════════════════════════════════════════
   TENORA — shared styling for the legal pages (privacy, terms).
   Same palette as the apex site, but built for reading, not for awe:
   generous measure, big headings, no motion, no starfield.
   Created 2026-07-28 (GTM-2, required before the public launch).
   ════════════════════════════════════════════════════════════════════ */
:root {
  --void: #030309;
  --accent: #6085FF;
  --star: #A9C0FF;
  --t1: #f2effa;
  --t2: #b9b7c9;
  --t3: #807e92;
  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "Plus Jakarta Sans", system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--void);
  color: var(--t2);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

/* a single soft glow up top so the page still feels like Tenora */
body::before {
  content: "";
  position: fixed; top: -340px; left: 50%; transform: translateX(-50%);
  width: min(900px, 120vw); height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(169,192,255,0.11), rgba(96,133,255,0.04) 45%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.wrap { position: relative; z-index: 1; width: min(720px, 90vw); margin: 0 auto; padding: 0 0 90px; }

header.bar {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 30px 0 0;
}
/* Canonical wordmark, 2026-08-11. The markup used to hard-space the letters
   ("T E N O R A") ON TOP of 0.42em tracking, so this bar rendered wider than
   any other surface in the product. The literal spaces are gone from all 11
   pages; the tracking does the work now, once. */
.wordmark {
  font-family: var(--display); font-weight: 400; font-size: 13px;
  letter-spacing: 0.90em; padding-left: 0.90em;
  text-transform: uppercase;
  color: var(--t1); text-decoration: none;
  /* The generic `a` rule below hangs a border-bottom on every link. On a
     wordmark that rule draws a rule under the LOCKUP, and with 0.90em tracking
     it runs past the final A into the trailing space. A wordmark is not a link
     you underline. */
  border-bottom: none;
}
.wordmark:hover { color: var(--star); }
.bar nav { display: flex; gap: 20px; font-size: 13.5px; }
.bar nav a { color: var(--t3); text-decoration: none; }
.bar nav a:hover, .bar nav a[aria-current] { color: var(--star); }

h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(38px, 7vw, 58px); line-height: 1.05; letter-spacing: -0.02em;
  color: var(--t1); margin: 54px 0 14px;
}
.stamp { color: var(--t3); font-size: 14px; margin-bottom: 42px; }

/* the plain-English summary box, always first */
.tldr {
  border: 1px solid rgba(169,192,255,0.22);
  background: linear-gradient(160deg, rgba(96,133,255,0.09), rgba(96,133,255,0.02));
  border-radius: 20px; padding: 26px 28px; margin-bottom: 52px;
}
.tldr h2 {
  font-family: var(--display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--star);
  margin-bottom: 14px;
}
.tldr p { color: var(--t1); font-size: 18.5px; line-height: 1.66; }
.tldr p + p { margin-top: 12px; }

h2 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(23px, 3.4vw, 29px); line-height: 1.22; letter-spacing: -0.01em;
  color: var(--t1); margin: 46px 0 14px;
}
h3 {
  font-family: var(--display); font-weight: 600; font-size: 17.5px;
  color: var(--t1); margin: 30px 0 8px;
}
p + p { margin-top: 15px; }
ul { margin: 14px 0 0 22px; }
li { margin-bottom: 10px; }
li::marker { color: var(--star); }
strong { color: var(--t1); font-weight: 600; }
a { color: var(--star); text-decoration: none; border-bottom: 1px solid rgba(169,192,255,0.3); }
a:hover { border-bottom-color: var(--star); }

/* the one callout per page that matters most */
.flag {
  border-left: 3px solid var(--accent);
  background: rgba(96,133,255,0.06);
  border-radius: 0 14px 14px 0;
  padding: 20px 24px; margin: 26px 0;
}
.flag p { color: var(--t1); }

table { width: 100%; border-collapse: collapse; margin: 20px 0 4px; font-size: 15.5px; }
th, td { text-align: left; padding: 13px 14px 13px 0; vertical-align: top; border-bottom: 1px solid rgba(210,215,235,0.09); }
th { font-family: var(--display); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t3); font-weight: 600; }
td:first-child { color: var(--t1); font-weight: 500; white-space: nowrap; padding-right: 22px; }

/* footer.end (the old one-row legal footer) deleted 2026-08-11 — every page
   that used it now carries the shared directory footer from /footer.css. */

@media (max-width: 560px) {
  body { font-size: 16.5px; }
  .tldr { padding: 22px; }
  .tldr p { font-size: 17.5px; }

  /* The wordmark breaks onto two lines next to the nav at 390px. Stack the bar
     and drop the SIZE (never the tracking, which is the identity). */
  header.bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .wordmark { font-size: 10.5px; letter-spacing: 0.90em; padding-left: 0.90em; white-space: nowrap; }
  .bar nav { gap: 16px; font-size: 13px; }

  h1 { margin-top: 40px; }

  /* A 3-column table has no room at 390px, so drop the header row and stack
     each service as its own labelled block. */
  table, tbody, tr, td { display: block; width: 100%; }
  /* The column headers are a plain first row of <th>, not a <thead>, so hide
     the row itself or it renders as an empty bordered block. */
  tr:first-child, th { display: none; }
  tr { padding: 16px 0; border-bottom: 1px solid rgba(210,215,235,0.09); }
  td { border: 0; padding: 0; }
  td:first-child {
    white-space: normal; font-family: var(--display); font-size: 16px;
    margin-bottom: 4px; padding-right: 0;
  }
  td:not(:first-child) { font-size: 15px; color: var(--t2); }
  td:not(:first-child)::before { content: "→ "; color: var(--star); }
}

/* Conspicuous clauses. Warranty disclaimers and class-action waivers are held to
   a visibility standard in several US states — burying them in body copy is one
   of the ways they get thrown out. Uppercase is the convention that satisfies
   it, so it is here for enforceability, not for shouting. */
.caps {
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  line-height: 1.65;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line, rgba(0,0,0,0.14));
  border-radius: 8px;
  background: rgba(0,0,0,0.02);
}
