/* the ?v= is a cache key, not a variable: /assets/* is served with a one-day max-age,
   so a token change is invisible to returning visitors until this string changes too. */
@import url("tokens.css?v=a2");
/* ulopro.com — layout and type. Every colour comes from tokens.css; no literals here. */

html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--up-paper); color: var(--up-ink);
  font-family: var(--up-sans); font-size: 16px; line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
a:hover, a:focus-visible { color: var(--up-blue); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--up-blue); outline-offset: 3px; }
img { max-width: 100%; }
h1, h2, p { overflow-wrap: break-word; }
[hidden] { display: none !important; }

.page {
  min-height: 100vh; box-sizing: border-box;
  padding: 28px var(--up-page-pad) 36px;
  display: flex; flex-direction: column; gap: var(--up-gap);
}

/* header ------------------------------------------------------------------ */
header.top { display: flex; flex-direction: column; }
.topbar { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; padding-bottom: 16px; }
.lockup { display: block; text-decoration: none; }
.lockup img { display: block; width: 140px; height: auto; }
.mainnav { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px; font-family: var(--up-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.mainnav a { text-decoration: none; color: var(--up-mute); }
.mainnav a:hover, .mainnav a:focus-visible { color: var(--up-blue); }
.mainnav .navtel { color: var(--up-ink); font-weight: 500; }
.accent { height: 3px; background: var(--up-grad); }

/* body -------------------------------------------------------------------- */
main { display: flex; flex-direction: column; gap: 44px; max-width: 680px; }
section { display: flex; flex-direction: column; gap: 14px; }
h1 { margin: 0; font-size: 34px; line-height: 1.12; font-weight: 600; letter-spacing: -0.02em; text-wrap: pretty; }
h2 { margin: 0; font-size: 22px; line-height: 1.25; font-weight: 600; letter-spacing: -0.01em; text-wrap: pretty; }
p { margin: 0; text-wrap: pretty; }
.label { font-family: var(--up-mono); font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--up-mute); }
.note { font-size: 14px; color: var(--up-mute); }
.num { font-family: var(--up-mono); font-variant-numeric: tabular-nums; }

.hero { gap: 18px; }

/* calls to action --------------------------------------------------------- */
.cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 8px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box;
  min-height: var(--up-control-h); padding: 0 28px; border-radius: var(--up-radius-pill);
  /* --up-grad-cta, not --up-grad: the full ramp runs out to cyan, where a white label is 1.68:1.
     --up-on-blue rather than --up-paper, which flips to near-black in dark mode. */
  background: var(--up-grad-cta); color: var(--up-on-blue);
  font-family: var(--up-sans); font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  text-decoration: none;
}
.btn:hover, .btn:focus-visible { filter: brightness(1.07); }
.btn-text { text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* bordered fact rows ------------------------------------------------------ */
.facts { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--up-ink); }
.facts > div { display: flex; flex-direction: column; gap: 6px; padding: 16px 0; border-bottom: 1px solid var(--up-rule); }

/* footer ------------------------------------------------------------------ */
footer.bottom {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--up-ink);
  font-family: var(--up-mono); font-size: 11px; line-height: 1.7; color: var(--up-mute);
  display: flex; flex-direction: column; gap: 8px;
}
footer.bottom a { text-decoration: none; }
footer.bottom a:hover, footer.bottom a:focus-visible { color: var(--up-blue); }
footer.bottom .footnav { display: flex; gap: 14px; flex-wrap: wrap; }

/* wide -------------------------------------------------------------------- */
@media (min-width: 900px) {
  .page { padding: 40px 56px 48px; gap: 48px; }
  body { font-size: 17px; }
  .topbar { flex-direction: row; align-items: center; justify-content: space-between; gap: 32px; padding-bottom: 20px; }
  .lockup img { width: 160px; }
  main { gap: 52px; }
  h1 { font-size: 40px; }
}
