/* ==========================================================================
   Husssle — PRESS
   One stylesheet for the whole site. No framework, no build step.
   Mobile-first, dark mode via prefers-color-scheme.
   Tokens mirror app/lib/ui/tokens.dart exactly — keep the two in step.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
  /* PRESS palette — light */
  --paper: #ffffff;
  --ink: #0b0b0c;
  --dim: #6e6e73;
  --rule: #e8e8ea;
  --wash: #f5f5f6;
  --blue: #2b5bff;
  --good: #0e7a3c;
  --bad: #c92020;

  --blue-wash: #eaefff;
  --good-wash: #e7f2ec;
  --bad-wash: #fae9e9;

  /* Foreground for a filled --bad surface. Flips in dark mode, where --bad
     is a light red and white text on it would be unreadable. */
  --on-bad: #ffffff;

  /* Type */
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", sans-serif;
  --serif: Georgia, "Times New Roman", "Iowan Old Style", Palatino, serif;

  /* Layout */
  --gutter: 20px;
  --measure: 1120px;
  --prose: 66ch;
  --pill: 999px;
  --hair: 1px;

  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    /* The same design, inverted. "Ink" stays the foreground colour and
       "paper" stays the ground, so every rule below keeps working. */
    --paper: #0b0b0c;
    --ink: #f4f4f6;
    --dim: #98989f;
    --rule: #26262a;
    --wash: #151517;
    --blue: #7d97ff;
    --good: #3fbf77;
    --bad: #ff7a7a;

    --blue-wash: #171c33;
    --good-wash: #10201a;
    --bad-wash: #2a1517;

    --on-bad: #0b0b0c;

    color-scheme: dark;
  }
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p a:not(.btn),
li a:not(.btn),
dd a:not(.btn) {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

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

hr {
  border: 0;
  border-top: var(--hair) solid var(--rule);
  margin: 0;
}

::selection {
  background: var(--ink);
  color: var(--paper);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 0 0 12px 0;
  font-weight: 700;
}

.skip:focus {
  left: 0;
}

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: 56px;
  border-top: var(--hair) solid var(--rule);
}

.section--flush {
  border-top: 0;
}

.section--wash {
  background: var(--wash);
}

@media (min-width: 700px) {
  :root {
    --gutter: 32px;
  }
  .section {
    padding-block: 84px;
  }
}

@media (min-width: 1000px) {
  .section {
    padding-block: 104px;
  }
}

.stack > * + * {
  margin-top: 16px;
}

/* --------------------------------------------------------------------------
   4. Type
   -------------------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.0;
  text-wrap: balance;
}

/* The one italic-serif word that carries a PRESS headline. */
.em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.h-giant {
  font-size: clamp(2.75rem, 11.5vw, 6.25rem);
}

.h-huge {
  font-size: clamp(2.125rem, 7.5vw, 3.75rem);
  line-height: 1.0;
}

.h1 {
  font-size: clamp(1.875rem, 6.5vw, 3rem);
  line-height: 1.02;
}

.h2 {
  font-size: clamp(1.25rem, 3.4vw, 1.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.lede {
  font-size: clamp(1.0625rem, 2.4vw, 1.3125rem);
  line-height: 1.4;
  color: var(--dim);
  font-weight: 500;
  max-width: 34ch;
  margin: 0;
}

.lede--wide {
  max-width: 52ch;
}

p {
  margin: 0;
}

.body {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}

.meta {
  font-size: 0.8125rem;
  line-height: 1.3;
  color: var(--dim);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.quiet {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--dim);
  font-weight: 500;
  letter-spacing: 0;
}

.lab {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--dim);
}

.strong {
  font-weight: 700;
  color: var(--ink);
}

.blue {
  color: var(--blue);
}

/* Money — always tabular, weight 800, small grey KES prefix. */
.money {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
}

.money__kes {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--dim);
  text-transform: uppercase;
}

.money__num {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: var(--pill);
  border: var(--hair) solid transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  transition: opacity 0.15s ease, background-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}

.btn--secondary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--rule);
}

.btn--danger {
  background: var(--bad);
  color: var(--on-bad);
}

.btn:hover {
  opacity: 0.86;
}

.btn--secondary:hover {
  background: var(--wash);
  opacity: 1;
}

.btn--sm {
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.875rem;
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-row > .btn {
  flex: 1 1 auto;
  min-width: 200px;
}

@media (min-width: 700px) {
  .btn-row > .btn {
    flex: 0 0 auto;
  }
}

/* --------------------------------------------------------------------------
   6. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: var(--hair) solid var(--rule);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

.wordmark {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  color: var(--ink);
}

.wordmark span {
  color: var(--blue);
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */

.hero {
  padding-block: 44px 56px;
}

@media (min-width: 700px) {
  .hero {
    padding-block: 72px 88px;
  }
}

.hero__head {
  max-width: 15ch;
}

.hero__lede {
  margin-top: 22px;
}

.hero__cta {
  margin-top: 30px;
}

.hero__note {
  margin-top: 16px;
}

.counter {
  margin-top: 48px;
  padding-top: 28px;
  border-top: var(--hair) solid var(--rule);
}

.counter__num {
  display: block;
  color: var(--blue);
  font-size: clamp(3.5rem, 17vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.94;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.counter__label {
  display: block;
  margin-top: 10px;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   8. Category pills (horizontal scroll)
   -------------------------------------------------------------------------- */

.cats {
  padding-block: 26px;
  border-top: var(--hair) solid var(--rule);
  border-bottom: var(--hair) solid var(--rule);
}

.cats__label {
  margin-bottom: 14px;
}

.pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  /* Bleed to the screen edge on mobile so the row reads as scrollable. */
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  padding-bottom: 2px;
}

.pills::-webkit-scrollbar {
  display: none;
}

.pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--pill);
  border: var(--hair) solid var(--rule);
  background: var(--paper);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--ink);
}

.pill svg {
  width: 16px;
  height: 16px;
  color: var(--dim);
  flex: 0 0 auto;
}

/* Small status tag — "Today", "Proven". */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: var(--pill);
  background: var(--wash);
  color: var(--dim);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.tag--hot {
  background: var(--ink);
  color: var(--paper);
}

.tag--blue {
  background: var(--blue-wash);
  color: var(--blue);
}

.tag--good {
  background: var(--good-wash);
  color: var(--good);
}

/* --------------------------------------------------------------------------
   9. Section headings
   -------------------------------------------------------------------------- */

.section__head {
  max-width: 22ch;
}

.section__intro {
  margin-top: 18px;
  max-width: 54ch;
  color: var(--dim);
  font-size: 1.0625rem;
  line-height: 1.5;
}

.section__body {
  margin-top: 40px;
}

/* --------------------------------------------------------------------------
   10. Job cards
   -------------------------------------------------------------------------- */

.jobs {
  display: grid;
  gap: 0;
  border-top: var(--hair) solid var(--rule);
}

.job {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 18px;
  border-bottom: var(--hair) solid var(--rule);
}

.job__thumb {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--wash);
  display: grid;
  place-items: center;
  color: var(--dim);
}

.job__thumb svg {
  width: 24px;
  height: 24px;
}

.job__text {
  flex: 1 1 auto;
  min-width: 0;
}

.job__task {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.job__meta {
  margin-top: 5px;
}

.job__pay {
  flex: 0 0 auto;
  text-align: right;
}

@media (min-width: 800px) {
  .jobs {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }
  .jobs .job:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

.jobs-note {
  margin-top: 26px;
}

/* --------------------------------------------------------------------------
   11. Steps
   -------------------------------------------------------------------------- */

/* The step number is typeset by .step__n, so the native <ol> marker must go —
   otherwise every step reads "1. 01". */
.steps {
  display: grid;
  gap: 0;
  /* Only the bottom margin is zeroed — the top one comes from .section__body,
     which is declared earlier and would otherwise be overridden here. */
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.step {
  padding-block: 26px;
  border-top: var(--hair) solid var(--rule);
}

.step__n {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--blue);
  font-variant-numeric: tabular-nums;
}

.step__title {
  margin-top: 10px;
}

.step__text {
  margin-top: 10px;
  color: var(--dim);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 42ch;
}

@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 48px;
  }
}

@media (min-width: 1040px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 32px;
  }
}

/* Callout — the "we take nothing" box, and its siblings. */
.callout {
  margin-top: 40px;
  padding: 28px 24px;
  background: var(--wash);
  border-radius: 20px;
}

.callout__head {
  max-width: 18ch;
}

.callout__text {
  margin-top: 14px;
  max-width: 56ch;
  color: var(--dim);
  font-size: 1.0625rem;
  line-height: 1.5;
}

@media (min-width: 700px) {
  .callout {
    padding: 40px 36px;
  }
}

/* --------------------------------------------------------------------------
   12. Feature columns / trust
   -------------------------------------------------------------------------- */

.cols {
  display: grid;
  gap: 0;
}

.col {
  padding-block: 26px;
  border-top: var(--hair) solid var(--rule);
}

.col__text {
  margin-top: 10px;
  color: var(--dim);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 46ch;
}

@media (min-width: 760px) {
  .cols {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
  }
}

.cols--2 {
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .cols--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Levels */
.levels {
  margin-top: 36px;
  border-top: var(--hair) solid var(--rule);
}

/* Stacked and left-aligned on a phone — a two-line right-aligned rag next to
   the level name reads badly at 375px. Side by side once there is room. */
.level {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-block: 16px;
  border-bottom: var(--hair) solid var(--rule);
}

.level__name {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.level__val {
  color: var(--dim);
  font-size: 0.875rem;
  font-weight: 600;
}

@media (min-width: 560px) {
  .level {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
  }
  .level__val {
    text-align: right;
  }
}

.level__val b {
  color: var(--ink);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: var(--hair) solid var(--rule);
  padding-block: 44px 56px;
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer__tag {
  max-width: 30ch;
  color: var(--dim);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: var(--hair) solid var(--rule);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-nav a:hover {
  color: var(--blue);
}

.footer-nav .footer-nav__mail {
  color: var(--dim);
  font-weight: 500;
}

.site-footer__legal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: var(--hair) solid var(--rule);
  max-width: 62ch;
}

@media (min-width: 760px) {
  .site-footer__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

/* --------------------------------------------------------------------------
   14. Documents (privacy / terms / delete / support)
   -------------------------------------------------------------------------- */

.doc-hero {
  padding-block: 40px 32px;
  border-bottom: var(--hair) solid var(--rule);
}

.doc-hero__head {
  max-width: 16ch;
}

.doc-hero__lede {
  margin-top: 18px;
}

.doc-hero__date {
  margin-top: 20px;
}

@media (min-width: 700px) {
  .doc-hero {
    padding-block: 64px 44px;
  }
}

.doc {
  max-width: var(--prose);
  padding-block: 40px 64px;
}

.doc > section {
  padding-top: 34px;
  margin-top: 34px;
  border-top: var(--hair) solid var(--rule);
}

.doc > section:first-of-type {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.doc h2 {
  font-size: clamp(1.5rem, 4.5vw, 1.875rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.doc h3 {
  margin-top: 26px;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.doc p,
.doc ul,
.doc ol,
.doc dl {
  margin-top: 14px;
  font-size: 1rem;
  line-height: 1.62;
  color: var(--ink);
}

.doc ul,
.doc ol {
  padding-left: 22px;
}

.doc li + li {
  margin-top: 8px;
}

.doc li::marker {
  color: var(--dim);
}

.doc strong {
  font-weight: 800;
}

.doc .quiet,
.doc .meta {
  color: var(--dim);
}

/* In-document table of contents */
.toc {
  margin-top: 28px;
  padding: 22px 20px;
  background: var(--wash);
  border-radius: 16px;
}

.toc ol {
  margin-top: 12px;
  padding-left: 20px;
  font-size: 0.9375rem;
  line-height: 1.5;
  columns: 1;
}

/* :not(.btn) raises specificity above the base `li a:not(.btn)` prose rule —
   a contents list should read as ink, not as a wall of blue underlines. */
.toc a:not(.btn) {
  color: var(--ink);
  text-decoration: none;
}

.toc a:not(.btn):hover {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (min-width: 640px) {
  .toc ol {
    columns: 2;
    column-gap: 28px;
  }
}

/* Definition-style data table, used for "what we collect" and retention. */
.datalist {
  margin-top: 20px;
  border-top: var(--hair) solid var(--rule);
}

.datalist__row {
  padding-block: 16px;
  border-bottom: var(--hair) solid var(--rule);
}

.datalist__row dt,
.datalist__term {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.datalist__row dd,
.datalist__def {
  margin: 8px 0 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--dim);
}

.datalist__def b {
  color: var(--ink);
  font-weight: 700;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 20px;
}

table {
  border-collapse: collapse;
  width: 100%;
  min-width: 460px;
  font-size: 0.9375rem;
}

th,
td {
  text-align: left;
  vertical-align: top;
  padding: 14px 16px 14px 0;
  border-bottom: var(--hair) solid var(--rule);
  line-height: 1.5;
}

th {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
  border-bottom-color: var(--ink);
  padding-bottom: 10px;
}

td:first-child {
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

td {
  color: var(--dim);
}

/* Emphasis boxes inside documents */
.note {
  margin-top: 22px;
  padding: 20px;
  border-radius: 16px;
  background: var(--wash);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.note--blue {
  background: var(--blue-wash);
}

.note--bad {
  background: var(--bad-wash);
}

.note strong {
  font-weight: 800;
}

.note p + p {
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   15. Forms (delete-account)
   -------------------------------------------------------------------------- */

.form {
  margin-top: 24px;
}

.field + .field {
  margin-top: 16px;
}

.field label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: var(--hair) solid var(--rule);
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  -webkit-appearance: none;
  appearance: none;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
  font-weight: 500;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--dim);
  font-weight: 500;
  opacity: 1;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 0;
  border-color: transparent;
}

.form__submit {
  margin-top: 22px;
}

.form__note {
  margin-top: 14px;
}

/* --------------------------------------------------------------------------
   16. FAQ / support
   -------------------------------------------------------------------------- */

.channels {
  display: grid;
  gap: 0;
  margin-top: 8px;
}

.channel {
  padding-block: 22px;
  border-bottom: var(--hair) solid var(--rule);
}

.channel:first-child {
  border-top: var(--hair) solid var(--rule);
}

.channel__val {
  margin-top: 8px;
  font-size: clamp(1.25rem, 4vw, 1.625rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  word-break: break-word;
}

/* The number and the address read as headlines, not as prose links. */
.channel__val a,
.channel__val a:not(.btn) {
  color: var(--ink);
  text-decoration: none;
}

.channel__val a:hover {
  color: var(--blue);
}

.channel__text {
  margin-top: 8px;
  color: var(--dim);
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 44ch;
}

.channel__cta {
  margin-top: 16px;
}

@media (min-width: 760px) {
  .channels {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 40px;
  }
  .channel:nth-child(2) {
    border-top: var(--hair) solid var(--rule);
  }
}

.faq {
  margin-top: 8px;
  border-top: var(--hair) solid var(--rule);
}

.faq__item {
  padding-block: 24px;
  border-bottom: var(--hair) solid var(--rule);
}

.faq__q {
  font-size: clamp(1.125rem, 3.2vw, 1.375rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  max-width: 30ch;
}

.faq__a {
  margin-top: 12px;
  max-width: 60ch;
  color: var(--dim);
  font-size: 1rem;
  line-height: 1.6;
}

.faq__a + .faq__a {
  margin-top: 12px;
}

.faq__a strong {
  color: var(--ink);
  font-weight: 700;
}

@media (min-width: 900px) {
  .faq__item {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    column-gap: 40px;
  }
  .faq__a {
    margin-top: 0;
  }
  .faq__a + .faq__a {
    grid-column: 2;
    margin-top: 12px;
  }
}

/* --------------------------------------------------------------------------
   17. Utilities
   -------------------------------------------------------------------------- */

.mt-s {
  margin-top: 12px;
}

.mt-m {
  margin-top: 20px;
}

.mt-l {
  margin-top: 32px;
}

.mt-xl {
  margin-top: 44px;
}

.center {
  text-align: center;
}

.nowrap {
  white-space: nowrap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media print {
  .site-header,
  .site-footer,
  .btn {
    display: none;
  }
  body {
    color: #000;
    background: #fff;
  }
}
