  @font-face { font-family: Manrope; font-weight: 400; font-display: swap; src: url(/fonts/manrope-400.woff2) format("woff2"); }
  @font-face { font-family: Manrope; font-weight: 500; font-display: swap; src: url(/fonts/manrope-500.woff2) format("woff2"); }
  @font-face { font-family: Manrope; font-weight: 800; font-display: swap; src: url(/fonts/manrope-800.woff2) format("woff2"); }
  :root {
    --bg: #faf9f6;
    --ink: #1c1c1a;
    --muted: #6b6b66;
    --accent: #3d5a73;
    --rule: #e6e4de;
    color-scheme: light dark;
  }
  @media (prefers-color-scheme: dark) {
    :root { --bg: #161615; --ink: #f2f1ec; --muted: #9a9a93; --accent: #8fb0cb; --rule: #2c2c2a; }
  }
  * { box-sizing: border-box; }
  body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  /* One measure for every band. The bands themselves run the full width of the
     viewport so the page has edges; the content inside them lines up. */
  .wrap {
    width: 100%;
    max-width: 68rem;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  }

  .topbar { border-bottom: 1px solid var(--rule); }
  .topbar .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 4.5rem;
  }
  .brand {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.03em;
    text-decoration: none;
    color: var(--ink);
  }
  .brand span { color: var(--accent); }
  .topbar nav { display: flex; gap: clamp(1rem, 3vw, 1.75rem); font-size: 0.95rem; }
  .topbar nav a { font-weight: 500; }
  .topbar nav a[aria-current] { color: var(--muted); text-decoration: none; }

  main { flex: 1; }

  .hero { padding: clamp(3.5rem, 10vw, 7.5rem) 0 clamp(2.5rem, 6vw, 4.5rem); }
  .hero h1 {
    font-weight: 800;
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin: 0 0 1.25rem;
    text-wrap: balance;
  }
  /* "(Pty) Ltd" is the legal form, not part of the name. Setting it smaller and
     lighter lets the name read as a name without dropping the form, which is
     half the reason this page exists. */
  .hero h1 small { font-size: 0.38em; font-weight: 500; letter-spacing: -0.01em; color: var(--muted); }
  .lead {
    font-size: clamp(1.125rem, 2.2vw, 1.45rem);
    line-height: 1.45;
    max-width: 40rem;
    margin: 0;
    text-wrap: pretty;
  }

  .cols { display: grid; gap: 3rem; padding-bottom: clamp(3.5rem, 8vw, 6rem); }
  @media (min-width: 60rem) {
    .cols { grid-template-columns: 1.4fr 1fr; gap: clamp(3rem, 7vw, 6rem); }
  }
  .cols section { padding-top: 1.75rem; border-top: 1px solid var(--rule); }

  p { margin: 0 0 1.25rem; text-wrap: pretty; }

  h2 {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 1.5rem;
  }

  ul.what { list-style: none; margin: 0; padding: 0; }
  ul.what li { margin: 0 0 1.1rem; }
  ul.what li:last-child { margin-bottom: 0; }
  ul.what strong { font-weight: 800; }

  .cols dl { margin: 0; }
  .cols dt { font-size: 0.95rem; color: var(--muted); }
  .cols dt .qual { font-size: 0.8rem; }
  .cols dd { margin: 0.15rem 0 1.4rem; }
  .cols dd:last-child { margin-bottom: 0; }

  a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
  a:hover { color: var(--accent); }
  a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
  ::selection { background: var(--accent); color: var(--bg); }

  .sitefooter { border-top: 1px solid var(--rule); }
  .sitefooter .wrap {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem 2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--muted);
  }

  /* Legal pages. The bands above are shared; only the prose measure differs,
     because 68rem of running legal text is about 145 characters a line. */
  article { max-width: 38rem; padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 5rem); }
  article h1 { font-size: clamp(1.75rem, 4vw, 2.25rem); letter-spacing: -0.03em; margin: 0 0 0.5rem; }
  article h2 { font-size: 1.15rem; font-weight: 800; text-transform: none; letter-spacing: -0.01em; color: var(--ink); margin: 2.5rem 0 0.5rem; }
  article .meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 2.5rem; }
  article ul { padding-left: 1.2rem; margin: 0 0 1.25rem; }
  article li { margin-bottom: 0.4rem; }
  article table { border-collapse: collapse; width: 100%; margin: 0 0 1.25rem; font-size: 0.95rem; }
  article th, article td { text-align: left; padding: 0.5rem 0.6rem 0.5rem 0; border-bottom: 1px solid var(--rule); vertical-align: top; }
  article thead th { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
  @media (max-width: 30rem) {
    article thead { display: none; }
    article th, article td { display: block; }
    article th { border: 0; padding-bottom: 0; font-size: 0.85rem; color: var(--muted); }
  }
  article dl { margin: 0 0 1.25rem; }
  article dt { color: var(--muted); font-size: 0.95rem; }
  article dd { margin: 0.15rem 0 1.1rem; }
