/* MassIO — massio.uk
   One stylesheet, no external requests. Everything a page needs is here or inline,
   because a marketing site that waits on a font CDN loses the visitor it just won. */

:root {
  --ink: #14161a;
  --ink-soft: #3d434e;
  --muted: #5f6775;
  --paper: #ffffff;
  --paper-2: #f5f7fa;
  --paper-3: #eef2f7;
  --line: #e2e7ee;
  --brand: #3d6fb5;
  --brand-strong: #2d5695;
  --brand-soft: #e9f0fa;
  --accent: #2f9e79;
  --ink-invert: #ffffff;
  --shadow: 0 1px 2px rgba(20, 22, 26, .04), 0 8px 24px rgba(20, 22, 26, .06);
  --radius: 14px;
  --wrap: 1120px;
  --step: clamp(3.5rem, 7vw, 6rem);
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e9ecf1;
    --ink-soft: #c3c9d4;
    --muted: #98a1b0;
    --paper: #0f1216;
    --paper-2: #151a20;
    --paper-3: #1b212a;
    --line: #262d38;
    --brand: #7fa9e4;
    --brand-strong: #a3c3ef;
    --brand-soft: #182234;
    --accent: #56c3a0;
    --ink-invert: #0f1216;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 8px 24px rgba(0, 0, 0, .35);
  }
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; }

a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand-strong); }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.022em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.15rem, 5.2vw, 3.5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.16rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.lead { font-size: clamp(1.08rem, 2.1vw, 1.28rem); color: var(--ink-soft); line-height: 1.6; }
.muted { color: var(--muted); }
.small { font-size: .93rem; }
.centred { text-align: center; }
.measure { max-width: 68ch; }
.measure-narrow { max-width: 58ch; }

/* skip link ---------------------------------------------------------------- */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brand); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

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

/* header ------------------------------------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.6) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-head .wrap { display: flex; align-items: center; gap: 18px; min-height: 68px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 118px; height: auto; display: block; }
.brand .logo-dark { display: none; }
@media (prefers-color-scheme: dark) {
  .brand .logo-light { display: none; }
  .brand .logo-dark { display: block; }
}

.nav { margin-left: auto; }
.nav ul { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav a {
  display: block; padding: 9px 13px; border-radius: 9px;
  color: var(--ink-soft); text-decoration: none; font-size: .97rem; font-weight: 500;
}
.nav a:hover { background: var(--paper-2); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--brand); background: var(--brand-soft); }
.nav .cta { background: var(--brand); color: #fff; padding-inline: 17px; }
.nav .cta:hover { background: var(--brand-strong); color: #fff; }

.menu-toggle { display: none; }

@media (max-width: 900px) {
  .site-head .wrap { flex-wrap: wrap; padding-block: 12px; }
  .menu-toggle {
    display: inline-flex; align-items: center; gap: 8px; margin-left: auto;
    background: var(--paper-2); border: 1px solid var(--line); color: var(--ink);
    border-radius: 10px; padding: 9px 13px; font: inherit; font-size: .95rem; cursor: pointer;
  }
  .nav { order: 3; width: 100%; margin-left: 0; display: none; }
  .nav.open { display: block; padding-bottom: 10px; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav a { padding: 12px 13px; }
  .nav .cta { text-align: center; margin-top: 6px; }
}

/* buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border-radius: 11px; border: 1px solid transparent;
  font-weight: 600; font-size: 1rem; text-decoration: none; cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-strong); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--paper-2); color: var(--ink); border-color: var(--muted); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
@media (prefers-reduced-motion: reduce) { .btn { transition: none; } }

/* sections ----------------------------------------------------------------- */
.section { padding-block: var(--step); }
.section-tint { background: var(--paper-2); border-block: 1px solid var(--line); }
.section-head { max-width: 60ch; margin-bottom: 44px; }
.eyebrow {
  display: inline-block; margin-bottom: 14px;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--brand);
}

/* hero --------------------------------------------------------------------- */
.hero { padding-block: clamp(3.5rem, 8vw, 6.5rem) var(--step); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: -40% 30% auto -10%; height: 620px;
  background: radial-gradient(60% 60% at 50% 50%, var(--brand-soft) 0%, transparent 70%);
  pointer-events: none; z-index: -1;
}
.hero h1 { max-width: 17ch; }
.hero .lead { max-width: 60ch; }

/* A fine dot grid behind the hero, fading out to the right, so the empty side
   of the page reads as space rather than absence. */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: radial-gradient(var(--line) 1px, transparent 1.2px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 75%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%, #000 75%, transparent 100%);
  opacity: .9;
}
.hero-grid { display: grid; gap: 40px; align-items: center; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); }
.hero-art { max-width: 560px; justify-self: end; width: 100%; }
.hero-art svg { width: 100%; height: auto; display: block; overflow: visible; }
.hero-art .node { fill: var(--paper); stroke: var(--brand); stroke-width: 1.6; }
.hero-art .node-core { fill: var(--brand); stroke: var(--brand); }
.hero-art .glyph { fill: none; stroke: var(--brand); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.hero-art .glyph-core { stroke: #fff; }
.hero-art .link { fill: none; stroke: var(--brand); stroke-width: 1.5; stroke-linecap: round; opacity: .55;
  stroke-dasharray: 6 8; animation: flow 2.4s linear infinite; }
.hero-art .halo { fill: none; stroke: var(--brand); stroke-width: 1; opacity: .18; }
.hero-art .halo-2 { animation: pulse 4s ease-in-out infinite; }
@keyframes flow { to { stroke-dashoffset: -28; } }
@keyframes pulse { 0%, 100% { opacity: .1; transform: scale(1); } 50% { opacity: .25; transform: scale(1.04); } }
.hero-art .halo-2 { transform-origin: 230px 190px; }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 320px; justify-self: start; margin-top: 8px; }
}

/* Scroll reveal. The class is only ever added by script, so without it every
   element is simply visible. */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .steps.will-draw li::before, .steps.will-draw li::after { transform: none; opacity: 1; }
  .hero-art .link, .hero-art .halo-2 { animation: none; }
}

/* grids -------------------------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(268px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow);
}
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card-link { display: block; text-decoration: none; color: inherit; transition: border-color .15s ease, transform .15s ease; }
.card-link:hover { border-color: var(--brand); transform: translateY(-2px); color: inherit; }
.card-link .more { color: var(--brand); font-weight: 600; font-size: .95rem; }
@media (prefers-reduced-motion: reduce) { .card-link:hover { transform: none; } }

.icon {
  display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 16px;
  border-radius: 11px; background: var(--brand-soft); color: var(--brand);
}
.icon svg { width: 22px; height: 22px; }

/* split -------------------------------------------------------------------- */
.split { display: grid; gap: clamp(28px, 5vw, 60px); grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; }

/* list with ticks ---------------------------------------------------------- */
.ticks { list-style: none; padding: 0; margin: 0; }
.ticks li { position: relative; padding-left: 30px; margin-bottom: .7em; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .52em; width: 16px; height: 9px;
  border-left: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg);
}

/* tag pills ---------------------------------------------------------------- */
.pills { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; padding: 0; margin: 0; }
.pills li {
  margin: 0; padding: 7px 14px; border-radius: 999px;
  background: var(--paper-3); border: 1px solid var(--line);
  font-size: .92rem; color: var(--ink-soft);
}

/* process track ------------------------------------------------------------
   A horizontal track: numbered markers sitting on one connecting rule, all on a
   single row whatever the step count, because a process that wraps reads as two
   processes. Below 940px it turns and runs down the page instead. */
.steps {
  list-style: none; padding: 0; margin: 0; counter-reset: step;
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 0 22px;
}
.steps li { counter-increment: step; margin: 0; padding: 60px 0 0; position: relative; }
.steps li::before {                       /* the rule between one marker and the next */
  content: ""; position: absolute; top: 19px; left: 20px; right: -22px; height: 2px;
  background: var(--line);
}
.steps li:last-child::before { display: none; }

/* The rule draws itself when the track comes into view: script marks the list
   `will-draw` on load and `drawn` on arrival, so without script the rule is
   simply there. Each segment starts a little after the one before it. */
.steps.will-draw li::before { transform: scaleX(0); transform-origin: left center; }
.steps.drawn li::before { transform: scaleX(1); transition: transform .55s cubic-bezier(.4, 0, .2, 1); }
.steps.will-draw li::after { opacity: 0; transform: scale(.6); }
.steps.drawn li::after { opacity: 1; transform: scale(1); transition: opacity .3s ease, transform .35s cubic-bezier(.34, 1.56, .64, 1); }
.steps.drawn li:nth-child(1)::after { transition-delay: 0s; }
.steps.drawn li:nth-child(1)::before { transition-delay: .15s; }
.steps.drawn li:nth-child(2)::after { transition-delay: .55s; }
.steps.drawn li:nth-child(2)::before { transition-delay: .7s; }
.steps.drawn li:nth-child(3)::after { transition-delay: 1.1s; }
.steps.drawn li:nth-child(3)::before { transition-delay: 1.25s; }
.steps.drawn li:nth-child(4)::after { transition-delay: 1.65s; }
.steps.drawn li:nth-child(4)::before { transition-delay: 1.8s; }
.steps.drawn li:nth-child(5)::after { transition-delay: 2.2s; }
.steps li::after {                        /* the marker */
  content: counter(step); position: absolute; top: 0; left: 0;
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; background: var(--brand); color: #fff;
  font-weight: 700; font-size: .98rem;
  box-shadow: 0 0 0 5px var(--paper-2);
}
.steps h3 { margin-bottom: .35em; font-size: 1.02rem; }
.steps p { margin: 0; color: var(--muted); font-size: .93rem; line-height: 1.55; }

@media (max-width: 940px) {
  .steps { grid-auto-flow: row; grid-auto-columns: auto; gap: 28px; }
  .steps li { padding: 0 0 0 62px; }
  .steps li::before { top: 20px; bottom: -28px; left: 19px; right: auto; width: 2px; height: auto; }
  .steps.will-draw li::before { transform: scaleY(0); transform-origin: center top; }
  .steps.drawn li::before { transform: scaleY(1); }
  .steps li:last-child::before { display: none; }
  .steps h3 { font-size: 1.1rem; }
  .steps p { font-size: .97rem; }
}

/* product marks: the home.capital.works tiles ------------------------------ */
.mark { display: block; width: 64px; height: 64px; margin-bottom: 18px; }
.mark svg { width: 100%; height: 100%; display: block; filter: drop-shadow(0 6px 12px rgba(0,0,0,.14)); }
.card-link:hover .mark svg { filter: drop-shadow(0 10px 18px rgba(0,0,0,.18)); }
h1.with-mark { display: flex; align-items: center; gap: 18px; }
h1.with-mark .mark { width: 72px; height: 72px; margin: 0; flex: none; }
.family-label {
  display: flex; align-items: baseline; gap: 12px; margin: 0 0 14px; padding-left: 2px;
  font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand);
}
.family-label a { font-weight: 500; letter-spacing: 0; text-transform: none; color: var(--muted); text-decoration: none; }
.family-label a:hover { color: var(--brand); }
@media (max-width: 520px) { h1.with-mark { gap: 14px; } h1.with-mark .mark { width: 56px; height: 56px; } }

/* product header ----------------------------------------------------------- */
.product-head { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 10px; }
.badge {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand);
  font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
}
.badge-soon { background: var(--paper-3); color: var(--muted); }

/* faq ---------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; padding: 20px 34px 20px 0; font-weight: 600; position: relative; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 27px; width: 9px; height: 9px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .15s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq details > div { padding-bottom: 20px; color: var(--ink-soft); max-width: 72ch; }

/* breadcrumbs -------------------------------------------------------------- */
.crumbs { font-size: .9rem; color: var(--muted); padding-top: 26px; }
/* Inside the hero the crumbs sit on the hero's own background, above the copy. */
.hero > .crumbs { position: relative; z-index: 1; padding-top: 0; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.hero:has(> .crumbs) { padding-top: 1.4rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.crumbs li { margin: 0; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--line); }

/* contact ------------------------------------------------------------------ */
.contact-links { list-style: none; padding: 0; margin: 0; }
.contact-links li { margin-bottom: 18px; }
.contact-links strong { display: block; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-links a { font-size: 1.1rem; font-weight: 600; }

/* footer --------------------------------------------------------------------
   Dark in both themes, deliberately: the footer is where the page stops, and a
   band of ink says so more clearly than a tint. Icons are CSS masks over data
   URIs, so the whole thing still costs no external request. */
.site-foot {
  --f-ink: #0d1826;
  --f-ink-deep: #081220;
  --f-body: #c3d0de;
  --f-muted: #8a9aad;
  --f-line: rgba(255, 255, 255, .13);
  --f-accent: #7fa9e4;
  --pin: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6.5a2.5 2.5 0 0 1 0 5Z'/%3E%3C/svg%3E");
  --mail: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 5h20v14H2V5Zm2.2 2L12 12.3 19.8 7H4.2ZM4 8.9V17h16V8.9l-8 5.4-8-5.4Z'/%3E%3C/svg%3E");
  --tel: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8a15.1 15.1 0 0 0 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.2.4 2.4.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1A17 17 0 0 1 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.4 0 .8-.2 1l-2.3 2.2Z'/%3E%3C/svg%3E");
  --key: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 2a8 8 0 0 0-7.7 10.2L2 16.5V22h5.5v-2.5H10v-2.5h2.5l1.3-1.3A8 8 0 1 0 14 2Zm3.5 6.5a1.75 1.75 0 1 1 0-3.5 1.75 1.75 0 0 1 0 3.5Z'/%3E%3C/svg%3E");
  margin-top: 0;
  background: var(--f-ink);
  background-image: radial-gradient(85% 130% at 88% 0%, rgba(61, 111, 181, .28) 0%, rgba(61, 111, 181, 0) 62%);
  color: var(--f-body);
  border-top: none;
  padding: 0;
}

.foot-main { display: grid; gap: 40px 34px; grid-template-columns: 1.55fr .92fr .82fr .82fr 1.35fr; padding-block: 60px 44px; }

.foot-brand img { width: 132px; height: auto; display: block; }
.foot-brand p { margin: 18px 0 0; font-size: 14.5px; line-height: 1.7; color: var(--f-muted); max-width: 32ch; }
.foot-creds { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0 0; padding: 0; }
.foot-creds li {
  margin: 0; padding: 5px 11px; border: 1px solid var(--f-line); border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255, 255, 255, .75); white-space: nowrap;
}

.foot-main h2 {
  margin: 0 0 16px; font-size: 11px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: #fff;
}

.foot-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-links li { margin: 0; }
.foot-links a { font-size: 14.5px; color: var(--f-body); text-decoration: none; transition: color .16s ease; }
.foot-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.foot-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.foot-contact li {
  margin: 0; position: relative; padding-left: 28px;
  font-size: 14.5px; line-height: 1.6; color: var(--f-body);
}
.foot-contact li::before {
  content: ""; position: absolute; left: 0; top: .18em; width: 17px; height: 17px;
  background-color: var(--f-accent);
  -webkit-mask: no-repeat center / contain; mask: no-repeat center / contain;
}
.foot-contact .c-pin::before { -webkit-mask-image: var(--pin); mask-image: var(--pin); }
.foot-contact .c-mail::before { -webkit-mask-image: var(--mail); mask-image: var(--mail); }
.foot-contact .c-tel::before { -webkit-mask-image: var(--tel); mask-image: var(--tel); }
.foot-contact .c-key::before { -webkit-mask-image: var(--key); mask-image: var(--key); }
.foot-contact a { color: var(--f-body); text-decoration: none; font-variant-numeric: tabular-nums; transition: color .16s ease; }
.foot-contact a:hover { color: #fff; }
.foot-contact address { font-style: normal; color: var(--f-body); font-size: 14.5px; line-height: 1.6; margin: 0; }
.foot-contact small { display: block; font-size: 12px; color: var(--f-muted); }

.foot-note { padding-bottom: 30px; }
.foot-note p {
  margin: 0; padding-top: 26px; border-top: 1px solid var(--f-line);
  font-size: 11.5px; line-height: 1.75; color: rgba(160, 180, 202, .74);
}
.foot-note a { color: rgba(200, 220, 238, .9); border-bottom: 1px solid rgba(200, 220, 238, .35); text-decoration: none; }
.foot-note a:hover { color: #fff; border-bottom-color: #fff; }

.foot-bottom { background: var(--f-ink-deep); padding: 18px 0; }
.foot-bottom .wrap { display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: center; }
.foot-bottom p { margin: 0; font-size: 12.5px; color: var(--f-muted); }
.foot-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 0 0 0 auto; padding: 0; }
.foot-bottom li { margin: 0; }
.foot-bottom a { font-size: 12.5px; color: var(--f-muted); text-decoration: none; }
.foot-bottom a:hover { color: #fff; }

@media (max-width: 1040px) {
  .foot-main { grid-template-columns: 1.4fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .foot-main { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 420px) {
  .foot-main { grid-template-columns: 1fr; }
  .foot-bottom ul { margin-left: 0; }
}

/* prose (legal pages) ------------------------------------------------------ */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2em; font-size: 1.5rem; }
.prose h3 { margin-top: 1.6em; }

/* table -------------------------------------------------------------------- */
.table-scroll { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; font-size: .97rem; }
th, td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-weight: 700; }
