/*
  DANE DIGITAL — shared styling for the legal pages (16 Sep 2026).

  These four pages exist because the live GoHighLevel site LINKS to them and
  GHL answers every one with the homepage — /privacy-policy, /terms-of-use,
  /sms-terms and /service-disclaimer are all soft-404s. A footer that promises
  a privacy policy and delivers the homepage is the specific thing a carrier
  checks during A2P registration.

  Tokens are the site's own, read out of the live payload rather than guessed:
  ground #080b11, accents #1f7ce0 -> #57c7ff. The typeface is deliberately a
  system stack — the main page's font could not be determined from the payload,
  and a wrong webfont looks worse than a clean native one.
*/
:root {
  --bg: #080b11;
  --bg-2: #0c1119;
  --ink: #e8eef7;
  --ink-2: #9fb0c6;
  /* 4.87:1 on --bg-2. The previous #6b7d94 measured 4.49 against the same
     surface, which is a WCAG AA failure by one hundredth. */
  --ink-3: #70839b;
  --accent: #3d97f0;
  --accent-2: #57c7ff;
  --line: rgba(255, 255, 255, 0.10);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--ink);
  /* Inter matches the main site, which loads it from Google Fonts. Without it
     these pages fell back to -apple-system and did not read as the same brand
     as the page they are linked from. */
  font: 400 17px/1.65 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent-2); }
a:hover { color: #8fd9ff; }

.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.hdr { border-bottom: 1px solid var(--line); background: var(--bg-2); }
.hdr-in { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 24px; flex-wrap: wrap; }
.lockup { display: inline-flex; align-items: baseline; gap: 10px; text-decoration: none; color: var(--ink); }
.lockup b { font-size: 19px; letter-spacing: -0.01em; }
.lockup span { font-size: 13px; color: var(--ink-3); }
.nav { display: flex; gap: 20px; font-size: 15px; }
.nav a { text-decoration: none; color: var(--ink-2); }
.nav a:hover { color: var(--ink); }

.page-hero { padding: 72px 0 46px;
  background: radial-gradient(ellipse at 18% -10%, rgba(31,124,224,.30), transparent 62%); }
.eyebrow { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 46px); line-height: 1.1; letter-spacing: -0.025em; }
.page-hero .meta { margin-top: 10px; color: var(--ink-3); font-size: 15px; }

/*
  THE ARTICLE IS A CARD, AND BOTH REASONS ARE MEASURED (16 Sep 2026).

  MEASURE: body text ran at 84 characters per line. Comfortable running text is
  60-75; past that the eye loses the start of the next line. The card's padding
  pulls the text column to roughly 67 characters without narrowing the page.

  PRESENCE: the main site uses 63 gradients, 209 border-radii and 86 shadows.
  These pages had zero of each, so on a 1440px screen a bare text column on a
  near-black ground read as an undesigned void rather than a quiet page. A card
  borrows the site's own language instead of inventing a second one.
*/
article.legal {
  max-width: 660px;
  margin: -18px auto 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 42px 46px 52px;
  box-shadow: 0 28px 70px -34px rgba(0, 0, 0, .85);
}
article.legal > *:first-child { margin-top: 0; }
article.legal h2 { margin: 34px 0 12px; font-size: 21px; letter-spacing: -0.01em; }
article.legal p, article.legal li { color: var(--ink-2); margin-bottom: 12px; }
article.legal ul { padding-left: 22px; }
article.legal strong { color: var(--ink); }

/* The one box people actually read. Used for the statements a carrier or a
   regulator looks for, so it is never buried in a paragraph. */
.callout { border: 1px solid var(--line); border-left: 3px solid var(--accent);
  background: rgba(31,124,224,.07); border-radius: 10px; padding: 18px 20px; margin: 22px 0; }
.callout p:last-child { margin-bottom: 0; }

.ft { border-top: 1px solid var(--line); background: var(--bg-2); padding: 28px 0 40px; }
.ft p { color: var(--ink-3); font-size: 13.5px; margin-bottom: 8px; }
.ft a { color: var(--ink-2); }
.ft-links { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 14px; font-size: 14px; }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 12px; top: 12px; background: var(--accent); color: #fff;
  padding: 10px 14px; border-radius: 8px; z-index: 50; }
