  :root {
    /* Palette shifted from petrol-green toward teal-blue, keeping the
       original family. The azure is referenced from the cobalt field in
       Ndebele wall-painting; all geometry on this page is original work
       in that tradition, not a reproduction of any artist's painting. */
    --ground:      #0F2E38;
    --ground-deep: #0A2029;
    --ground-lift: #164252;
    --ivory:       #F4EEDD;
    --teal:        #3FB3AC;
    --azure:       #4A8FD8;
    --teal-soft:   #D7E8E9;
    --amber:       #E9A54D;
    --red:         #C63B2D;
    /* The original petrol green, kept rather than discarded: it now fills
       the secondary button and tints all non-heading body copy. */
    --green:       #1B4A40;
    --muted:       #A9C5B9;
    --body-text:   #CFE0D8;
    --line:        rgba(244, 238, 221, 0.14);

    --display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
    --body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

    --measure: 68ch;
    --shell: 1320px;
    --radius: 22px;
  }

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

  /* Nav anchors glide to their section instead of snapping. scroll-padding
     keeps the section heading off the very top edge on arrival. */
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 28px;
  }

  body {
    margin: 0;
    background-color: var(--ground);
    /* Original Ndebele-idiom geometry: stepped diamonds, paired chevrons
       and a zigzag base rail, held at very low contrast so it reads as
       wall texture behind the content rather than decoration on top. */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cg fill='none' stroke='%23F4EEDD' stroke-opacity='0.055' stroke-width='2'%3E%3Cpath d='M75 8l24 24-24 24-24-24z'/%3E%3Cpath d='M75 22l10 10-10 10-10-10z'/%3E%3Cpath d='M6 86l19-19 19 19M6 100l19-19 19 19'/%3E%3Cpath d='M106 86l19-19 19 19M106 100l19-19 19 19'/%3E%3Cpath d='M0 128h18v12h19v-12h19v12h19v-12h19v12h19v-12h19v12h18'/%3E%3C/g%3E%3C/svg%3E");
    color: var(--ivory);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3 {
    font-family: var(--display);
    font-weight: 800;
    line-height: 1.05;
    text-wrap: balance;
    margin: 0;
  }

  p { margin: 0; }
  a { color: inherit; }

  :focus-visible {
    outline: 3px solid var(--amber);
    outline-offset: 3px;
    border-radius: 4px;
  }

  .skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--amber);
    color: var(--ground-deep);
    padding: 12px 18px;
    font-weight: 700;
    z-index: 50;
  }
  .skip:focus { left: 12px; top: 12px; }

  .shell {
    /* Gutter scales with the viewport: ~16px a side on a small phone,
       up to 36px a side before the max width takes over. */
    width: min(100% - clamp(32px, 5vw, 72px), var(--shell));
    margin-inline: auto;
  }

  .eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin: 0;
  }

  /* ---------- nav ---------- */
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 0;
  }
  .wordmark {
    font-family: var(--display);
    font-weight: 800;
    font-size: 30px;
    letter-spacing: -0.02em;
    color: var(--ivory);
    text-decoration: none;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
  }
  .nav-links a { color: var(--muted); text-decoration: none; }
  .nav-links a:hover { color: var(--ivory); }
  /* Keep navigation on small screens rather than dropping it: this is a
     single-page scroller, so hiding the links removes the only way to reach
     pricing and contact without scrolling the whole page. */
  @media (max-width: 700px) {
    .nav { flex-wrap: wrap; gap: 10px; padding: 18px 0; }
    .nav-links {
      width: 100%;
      gap: 18px;
      font-size: 13px;
      overflow-x: auto;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .nav-links::-webkit-scrollbar { display: none; }
    .nav-links a { white-space: nowrap; }
    .wordmark { font-size: 26px; }
  }

  /* ---------- hero ---------- */
  .hero {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
    padding: 56px 0 88px;
  }
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; gap: 48px; padding: 32px 0 64px; }
  }

  .hero-copy { display: flex; flex-direction: column; gap: 22px; }
  .hero h1 { font-size: clamp(34px, 6.2vw, 68px); letter-spacing: -0.03em; }
  .hero .lede { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: var(--measure); }
  .hero .lede strong { color: var(--ivory); font-weight: 600; }

  .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    font-family: var(--body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: transform 0.15s ease, background-color 0.15s ease;
  }
  .btn-primary { background: var(--amber); color: var(--ground-deep); }
  .btn-primary:hover { background: #f2b463; transform: translateY(-1px); }
  .btn-ghost { background: var(--green); border-color: var(--green); color: var(--ivory); }
  .btn-ghost:hover { background: #225A4E; border-color: #225A4E; transform: translateY(-1px); }

  .name-note {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
    border-left: 2px solid var(--teal);
    padding: 2px 0 2px 16px;
    max-width: 46ch;
  }
  .name-note em { color: var(--ivory); font-style: normal; font-weight: 600; }

  /* ---------- the app card ---------- */
  .device {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    width: min(100%, 380px);
    margin-inline: auto;
  }
  .card {
    position: relative;
    width: 100%;
    background: #FFFFFF;
    color: var(--ground-deep);
    border-radius: 28px;
    padding: 52px 26px 26px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.35);
    overflow: hidden;
  }
  .card::before, .card::after {
    content: "";
    position: absolute;
    top: 0;
    width: 62px;
    height: 62px;
  }
  .card::before { left: 0; background: var(--amber); border-bottom-right-radius: 100%; }
  .card::after  { right: 0; background: var(--ground); border-bottom-left-radius: 100%; }

  .card-inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 20px; }
  .card h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--ground-deep);
  }
  .field-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #587873;
    margin-bottom: 8px;
    display: block;
  }
  .field {
    background: var(--teal-soft);
    border: 1px solid #C3DCD5;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 17px;
    color: #6E8A85;
  }
  .field.amount {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
  }
  .field.amount .rand { color: var(--teal); margin-right: 8px; }
  .card-btn {
    /* Was white on pale teal: 1.86:1, which read as a disabled control in
       the one screenshot that has to show the product working. Amber on
       dark matches the site's own primary action at 6.78:1. */
    background: var(--amber);
    color: var(--ground-deep);
    border-radius: 18px;
    text-align: center;
    padding: 18px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  /* The "Live" status pill was removed before launch: the service is not
     live until a PSP relationship exists, and a badge saying otherwise is
     exactly what a compliance reviewer would pick up on. Restore it, inside
     the card, once real payments are running. */

  /* ---------- ndebele band ----------
     Height MUST equal the pattern tile height. The pattern uses
     userSpaceOnUse units and the SVG has no viewBox, so it maps 1:1 to
     CSS pixels — a shorter band clips the bottom of every motif. */
  .band { display: block; width: 100%; height: 96px; }

  /* ---------- sections ---------- */
  section { padding: 84px 0; }
  .section-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 48px; max-width: var(--measure); }
  .section-head h2 { font-size: clamp(30px, 4vw, 42px); letter-spacing: -0.02em; }
  .section-head p { color: var(--muted); }

  /* On wide screens a single left column left the heading marooned against
     half a screen of empty space, while the grid beneath it ran the full
     width — the mismatch read as unfinished. Heading left, supporting line
     right, both sitting on the same baseline. */
  @media (min-width: 900px) {
    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      grid-template-areas:
        "eyebrow ."
        "title   body";
      column-gap: 72px;
      row-gap: 14px;
      align-items: end;
      max-width: none;
    }
    .section-head .eyebrow { grid-area: eyebrow; }
    .section-head h2 { grid-area: title; max-width: 18ch; }
    .section-head > p:not(.eyebrow) {
      grid-area: body;
      max-width: 52ch;
      padding-bottom: 5px; /* optically level with the heading baseline */
    }
  }

  /* Semi-transparent so the wall texture runs continuously through the
     alternating bands instead of being masked by them. */
  .alt { background: rgba(6, 22, 29, 0.55); }

  /* steps */
  .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
  .step { display: flex; flex-direction: column; gap: 12px; }
  .step-n {
    font-family: var(--display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ground-deep);
    background: var(--teal);
    width: 38px; height: 38px;
    border-radius: 50%;
    display: grid; place-items: center;
  }
  .step h3 { font-size: 21px; font-weight: 700; }
  .step p { color: var(--muted); font-size: 16px; }

  /* features */
  .features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  @media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px) { .features { grid-template-columns: 1fr; } }
  .feature {
    background: var(--ground-lift);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .feature h3 { font-size: 18px; font-weight: 700; }
  .feature p { color: var(--muted); font-size: 15px; }

  /* pricing */
  .price-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
  @media (max-width: 860px) { .price-wrap { grid-template-columns: 1fr; gap: 32px; } }
  .price-card {
    background: var(--ground-lift);
    /* The fee is the single most load-bearing commercial fact on the page.
       An amber-tinted edge ties the card to the number it contains instead
       of leaving it as one more grey box. */
    border: 1px solid rgba(233, 165, 77, 0.32);
    border-radius: var(--radius);
    padding: 40px 34px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .price-big {
    font-family: var(--display);
    font-size: clamp(56px, 5.4vw, 76px);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--amber);
    line-height: 1;
    font-variant-numeric: tabular-nums;
  }
  .price-card .per { color: var(--muted); font-size: 15px; }
  .price-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
  .price-list li { display: flex; gap: 14px; align-items: baseline; font-size: 16px; color: var(--body-text); }
  .price-list .tick { color: var(--teal); font-weight: 700; }
  .price-list span.free { color: var(--muted); }

  /* audience */
  .chips { display: flex; flex-wrap: wrap; gap: 12px; }
  .chip {
    /* Same lift as .feature so the chips read as part of the same surface
       family rather than floating outlines on the section background. */
    background: var(--ground-lift);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--ivory);
  }

  /* trust */
  .trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  @media (max-width: 760px) { .trust { grid-template-columns: 1fr; } }
  .trust-item { display: flex; flex-direction: column; gap: 8px; border-top: 2px solid var(--teal); padding-top: 18px; }
  .trust-item h3 { font-size: 17px; font-weight: 700; }
  .trust-item p { color: var(--muted); font-size: 15px; }

  /* contact */
  .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact-item { display: flex; flex-direction: column; gap: 6px; }
  .contact-item .k { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
  .contact-item .v { font-size: 18px; font-weight: 600; }
  .contact-item a { text-decoration: none; }
  .contact-item a:hover { color: var(--amber); }

  /* footer */
  footer { background: rgba(6, 22, 29, 0.55); padding: 56px 0 44px; border-top: 1px solid var(--line); }
  .foot-top { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 34px; }
  .foot-legal { color: var(--muted); font-size: 14px; max-width: 44ch; display: flex; flex-direction: column; gap: 6px; }
  .foot-links { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
  .foot-links a { color: var(--ivory); text-decoration: none; }
  .foot-links a:hover { color: var(--amber); text-decoration: underline; }
  .foot-bottom { border-top: 1px solid var(--line); padding-top: 22px; color: var(--muted); font-size: 13px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

  /* ---------- small screens ----------
     Desktop vertical rhythm (84px between sections) reads as dead space on a
     phone, where the whole screen is about that tall. Tighten spacing, scale
     the display type down, and let the buttons go full width so they are
     comfortable thumb targets. */
  @media (max-width: 620px) {
    section { padding: 52px 0; }
    .section-head { margin-bottom: 32px; }
    .price-big { font-size: 48px; }
    .price-card { padding: 26px 22px; }
    .feature { padding: 22px 20px; }
    .cta-row { gap: 10px; }
    .cta-row .btn { flex: 1 1 100%; }
    .foot-top { gap: 24px; margin-bottom: 26px; }
    footer { padding: 44px 0 36px; }
  }

  @media (max-width: 400px) {
    section { padding: 44px 0; }
    .price-big { font-size: 42px; }
    .name-note { padding-left: 12px; }
  }

  @media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    /* animation/transition:none does not cover scroll-behavior, and smooth
       scrolling is a known vestibular trigger — it has to be turned off
       explicitly for anyone who has asked for less motion. */
    html { scroll-behavior: auto; }
  }

/* ============================================================
   Legal / document pages (terms, privacy, complaints)
   Prose layout: narrow measure, clear hierarchy, readable tables.
   ============================================================ */

.doc-header { padding: 40px 0 24px; }
.doc-header .back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.doc-header .back:hover { color: var(--amber); }

.doc {
  padding: 8px 0 88px;
}
.doc-inner {
  width: min(100% - 40px, 760px);
  margin-inline: auto;
}
.doc h1 {
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.doc-meta {
  color: var(--muted);
  font-size: 15px;
  border-left: 2px solid var(--teal);
  padding-left: 16px;
  margin-bottom: 44px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.doc h2 {
  font-size: 23px;
  font-weight: 700;
  margin: 48px 0 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.doc h2:first-of-type { border-top: none; padding-top: 0; }
.doc h3 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; }
.doc p { margin: 0 0 16px; color: var(--body-text); }
.doc p strong, .doc li strong { color: var(--ivory); font-weight: 700; }
.doc ul { margin: 0 0 18px; padding-left: 22px; display: flex; flex-direction: column; gap: 10px; }
.doc li { color: var(--body-text); }
.doc a { color: var(--teal); text-underline-offset: 3px; }
.doc a:hover { color: var(--amber); }
.doc code {
  background: rgba(244,238,221,0.09);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 0.92em;
}

.doc .table-wrap { overflow-x: auto; margin: 0 0 22px; }
.doc table { border-collapse: collapse; width: 100%; font-size: 15px; }
.doc th, .doc td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.doc th {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  white-space: nowrap;
}
.doc td { color: var(--body-text); }

.callout {
  background: var(--ground-lift);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 0 0 26px;
}
.callout p:last-child { margin-bottom: 0; }
