/* ============================================================
   YBKM Tech Ventures LLP
   Layout and motion follow cantor8.io. Type and spacing are a
   defined system rather than ad-hoc values.

   Typeface: Switzer (Indian Type Foundry, via Fontshare) for
   display and text, Fragment Mono for labels and legal lines.

   Type scale — display sizes are viewport-fluid so the layout
   keeps the reference's proportions; text sizes are fixed so
   they never fall below a readable size.
   ============================================================ */

:root {
  /* colour */
  --blue: #044ab3;
  --blue-panel: rgba(3, 56, 134, 0.55);   /* card / chip fill on blue */
  --hairline: rgba(255, 255, 255, 0.16);
  --ink: #151515;
  --white: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.7);

  /* type families */
  --font-sans: "Switzer", "Segoe UI", Tahoma, sans-serif;
  --font-mono: "Fragment Mono", ui-monospace, monospace;

  /* type scale */
  --fs-display: clamp(2.5rem, 3.9vw, 4.75rem);  /* hero h1 */
  --fs-h2:      clamp(2.25rem, 5.6vw, 6.5rem);  /* every section heading */
  --fs-h3:      clamp(1.25rem, 2vw, 2.25rem);
  --fs-lead:    clamp(1.375rem, 2.3vw, 2.5rem);
  --fs-body:    0.9375rem;   /* 15px */
  --fs-small:   0.875rem;    /* 14px */
  --fs-mono:    0.6875rem;   /* 11px */

  /* tracking: display pulls in, small uppercase opens out */
  --ls-display: -0.028em;
  --ls-text:    -0.006em;
  --ls-mono:     0.08em;

  /* spacing */
  --gutter:    clamp(1.25rem, 2.6vw, 3rem);
  --s-section: clamp(4.5rem, 10vw, 10rem);
  --s-block:   clamp(2.5rem, 4.4vw, 4.5rem);
  --s-item:    clamp(1rem, 1.4vw, 1.5rem);

  --radius: 0.3rem;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.6;
  letter-spacing: var(--ls-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-weight: 400; letter-spacing: var(--ls-display); }
h1 { font-size: var(--fs-display); line-height: 1.02; }
h2 { font-size: var(--fs-h2); line-height: 1.0; }
h3 { font-size: var(--fs-h3); line-height: 1.2; letter-spacing: -0.018em; }

a { color: inherit; text-decoration: none; }
img, canvas, svg { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
::selection { background: var(--white); color: var(--blue); }
:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; border-radius: 2px; }

/* ---------- primitives ---------- */

.mono, .eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: var(--ls-mono);
  line-height: 1.4;
}
.eyebrow { opacity: 0.75; margin-bottom: 1.6em; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.body-copy {
  color: var(--text-dim);
  max-width: 42ch;
  line-height: 1.65;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 1.1em;
  background: var(--white);
  color: var(--blue);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: -0.012em;
  padding: 0.32em 0.32em 0.32em 1.1em;
  border-radius: 0.16rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14); }
.btn__box {
  display: grid;
  place-items: center;
  width: 2em; height: 2em;
  background: var(--blue);
  color: var(--white);
  border-radius: 0.1rem;
  font-size: 0.86em;
}

.link-arrow {
  display: inline-block;
  margin-top: 1.8rem;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  text-transform: uppercase;
  letter-spacing: var(--ls-mono);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.5em;
  transition: border-color 0.25s ease;
}
.link-arrow::after { content: " ↗"; }
.link-arrow:hover { border-color: var(--white); }

/* ---------- nav ---------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--gutter);
}
.nav__brand { display: flex; align-items: baseline; gap: 0.6em; }
.nav__logo { font-weight: 500; font-size: 1.0625rem; letter-spacing: -0.02em; }
.nav__logo-sub {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.7;
}

.nav__chips { display: flex; gap: 0.25rem; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  font-size: var(--fs-small);
  letter-spacing: -0.012em;
  padding: 0.55em 1.05em;
  border-radius: 0.16rem;
  background: var(--blue-panel);
  color: var(--white);
  transition: background 0.25s ease;
}
.chip:hover { background: rgba(3, 56, 134, 0.85); }
.chip.is-active, .chip--cta { background: var(--white); color: var(--blue); }
.chip--cta { font-weight: 500; padding-right: 0.32em; }
.chip--cta:hover { background: rgba(255, 255, 255, 0.9); }
.chip__arrow {
  display: grid;
  place-items: center;
  width: 2em; height: 2em;
  background: var(--blue);
  color: var(--white);
  border-radius: 0.1rem;
  font-size: 0.86em;
}
.nav__right { display: flex; align-items: center; gap: 0.75rem; }
.nav__burger {
  display: none;
  background: var(--blue-panel); border: 0;
  width: 44px; height: 40px;
  border-radius: 0.16rem;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
}
.nav__burger span { display: block; width: 18px; height: 1.5px; background: var(--white); transition: transform 0.3s ease; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 34rem;
  overflow: hidden;
}
.strings { position: absolute; inset: 0; }
.strings canvas { width: 100%; height: 100%; }
.strings__labels { position: absolute; inset: 0; pointer-events: none; }
.strings__labels span {
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  white-space: nowrap;
  opacity: 0;
  color: var(--white);
}

.hero__bottom {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(3.5rem, 8svh, 6rem);
  z-index: 2;
}
.hero__title { margin-bottom: 1.6rem; }
.hline {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.hline > span { display: inline-block; }

/* ---------- inner page hero ---------- */

.page-hero {
  padding: calc(var(--s-section) + 4rem) var(--gutter) var(--s-block);
  border-bottom: 1px solid var(--hairline);
}
.page-hero__inner { max-width: 68rem; }
.page-hero h1 { max-width: 16ch; margin-bottom: 1.5rem; }
.page-hero .lead { max-width: 34ch; color: var(--text-dim); }

/* ---------- prose (legal and support pages) ---------- */

.prose-wrap {
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: var(--s-block);
  align-items: start;
  padding: var(--s-section) var(--gutter);
  max-width: 82rem;
}
.prose-toc { position: sticky; top: 5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.prose-toc a { font-size: var(--fs-small); color: var(--text-dim); transition: color 0.2s ease; }
.prose-toc a:hover { color: var(--white); }
.prose-toc .mono { opacity: 0.8; margin-bottom: 0.6rem; }

.prose { max-width: 68ch; }
.prose h2 {
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  margin: 3rem 0 1rem;
  scroll-margin-top: 5rem;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.125rem; margin: 2rem 0 0.6rem; }
.prose p, .prose li { color: var(--text-dim); margin-bottom: 1rem; line-height: 1.7; }
.prose ul, .prose ol { padding-left: 1.2rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a:not(.btn) { border-bottom: 1px solid rgba(255, 255, 255, 0.4); }
.prose a:not(.btn):hover { border-color: var(--white); }
.prose strong { color: var(--white); font-weight: 500; }
.prose p.prose__updated {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 2.5rem;
}

/* items the client still has to confirm before this goes live */
.todo {
  display: inline;
  background: #ffd60a;
  color: #151515;
  border-radius: 2px;
  padding: 0.05em 0.3em;
  font-weight: 500;
}

/* ---------- fact table (registration details) ---------- */

.facts { border-top: 1px solid var(--hairline); max-width: 60rem; }
.facts__row {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: var(--s-item);
  border-bottom: 1px solid var(--hairline);
  padding: 1.1rem 0;
}
.facts__row dt {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  opacity: 0.7;
  padding-top: 0.2em;
}
.facts__row dd { font-size: var(--fs-body); }

/* ---------- people ---------- */

.people {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-item);
  max-width: 56rem;
}
.person {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 11rem;
  justify-content: flex-end;
  transition: background 0.3s ease;
}
.person:hover { background: var(--blue-panel); }
.person__role { font-family: var(--font-mono); font-size: var(--fs-mono); letter-spacing: var(--ls-mono); text-transform: uppercase; opacity: 0.7; margin-bottom: auto; }
.person__name { font-size: var(--fs-h3); letter-spacing: -0.018em; }

/* ---------- form ---------- */

.form { display: flex; flex-direction: column; gap: 2rem; max-width: 44rem; }
.form__group { display: flex; flex-direction: column; gap: 0.9rem; border: 0; padding: 0; margin: 0; min-width: 0; }
.form__legend {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  opacity: 0.7;
  border: 0;
  padding: 0;
}
.form__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.form__chip { position: relative; }
.form__chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.form__chip span {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0.16rem;
  padding: 0.55em 1em;
  font-size: var(--fs-small);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.form__chip input:checked + span { background: var(--white); color: var(--blue); border-color: var(--white); }
.form__chip input:focus-visible + span { outline: 2px solid var(--white); outline-offset: 3px; }

.form__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  opacity: 0.7;
}
.field input, .field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  font-family: inherit;
  font-size: var(--fs-body);
  padding: 0.6rem 0;
  transition: border-color 0.2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.field input:focus, .field textarea:focus { outline: 0; border-bottom-color: var(--white); }
.field textarea { resize: vertical; min-height: 6rem; }
.form__submit { align-self: flex-start; border: 0; }

.contact__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-block);
  align-items: start;
  padding: var(--s-section) var(--gutter);
}
.contact__aside { display: flex; flex-direction: column; gap: 2.5rem; }
.contact__block .mono { opacity: 0.7; display: block; margin-bottom: 0.7rem; }
.contact__block p, .contact__block a { color: var(--text-dim); line-height: 1.7; }
.contact__block a:hover { color: var(--white); }

/* ---------- steps (delete account) ---------- */

.steps { counter-reset: step; border-top: 1px solid var(--hairline); max-width: 60rem; }
.step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: var(--s-item);
  border-bottom: 1px solid var(--hairline);
  padding: 1.5rem 0;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  opacity: 0.7;
  padding-top: 0.35em;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--text-dim); max-width: 52ch; }

/* ---------- faq ---------- */

.faq { border-top: 1px solid var(--hairline); max-width: 62rem; }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  padding: 1.3rem 0;
  font-size: var(--fs-h3);
  letter-spacing: -0.018em;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); opacity: 0.7; flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--text-dim); max-width: 62ch; padding-bottom: 1.4rem; }

/* ---------- section shell ---------- */

section { position: relative; }
.foundation, .products, .practice, .updates {
  padding: var(--s-section) var(--gutter);
}
/* consecutive blue sections share one gap instead of stacking two */
.products, .practice, .updates { padding-top: 0; }

.section__head { margin-bottom: var(--s-block); }

/* ---------- foundation ---------- */

.foundation__head { margin-bottom: var(--s-block); }
.foundation__title { max-width: 18ch; }
.foundation__title .w {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.foundation__title .w > span { display: inline-block; }
.foundation__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-block);
  align-items: start;
  max-width: 68rem;
}
/* repeats the column structure of the grid above */
.foundation__sub {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--s-block);
  align-items: start;
  max-width: 68rem;
  margin-top: var(--s-block);
  border-top: 1px solid var(--hairline);
  padding-top: 2rem;
}

/* ---------- products ---------- */

.products__head {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--s-block);
  margin-bottom: var(--s-block);
  align-items: end;
}
.products__intro .body-copy { margin-top: 1.2rem; }

.products__slider .splide__track { overflow: visible; }
.pcard {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  min-height: clamp(19rem, 25vw, 23rem);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.pcard:hover { background: var(--blue-panel); border-color: rgba(255, 255, 255, 0.34); }
.pcard__top { display: flex; justify-content: space-between; align-items: center; }
.pcard__index { font-family: var(--font-mono); font-size: var(--fs-mono); letter-spacing: var(--ls-mono); opacity: 0.75; }
.pcard__tag {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 0.14rem;
  padding: 0.42em 0.7em;
  line-height: 1;
}
.pcard__visual {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 2rem 0;
  color: rgba(255, 255, 255, 0.8);
}
.pcard__visual svg { width: clamp(5rem, 7vw, 7rem); height: auto; }
.pcard__about { display: flex; flex-direction: column; gap: 0.45rem; }
.pcard__title { font-size: 1.0625rem; font-weight: 500; letter-spacing: -0.02em; }
.pcard__desc { font-size: var(--fs-small); color: var(--text-dim); line-height: 1.5; max-width: 30ch; }

@media (min-width: 992px) {
  .products__slider .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-item);
    transform: none !important;
  }
  .products__slider .splide__slide { width: auto !important; }
}

/* ---------- practice ---------- */

.practice h2 { margin-bottom: var(--s-block); }
.prow {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-block);
  align-items: baseline;
  border-top: 1px solid var(--hairline);
  padding: 1.6rem 0;
}
.prow p { color: var(--text-dim); max-width: 52ch; }

/* ---------- updates ---------- */

.updates h2 { margin-bottom: var(--s-block); }
.updates__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-item);
  max-width: 68rem;
}
.ucard {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-height: 13rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.ucard:hover { background: var(--blue-panel); border-color: rgba(255, 255, 255, 0.34); }
.ucard__meta { display: flex; justify-content: space-between; opacity: 0.78; }
.ucard h3 { max-width: 22ch; }

/* ---------- cta: full-bleed white band ---------- */

.cta {
  background: var(--white);
  color: var(--blue);
  padding: var(--s-section) var(--gutter) var(--s-block);
  overflow: hidden;
}
.cta__flex {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: var(--s-item);
  align-items: start;
}
.cta .eyebrow { opacity: 1; margin-bottom: 0; }
.cta__head h2 { margin-bottom: var(--s-item); max-width: 14ch; }
.cta .btn { background: var(--blue); color: var(--white); }
.cta .btn:hover { box-shadow: 0 6px 18px rgba(4, 74, 179, 0.24); }
.cta .btn__box { background: var(--white); color: var(--blue); }

.marquee {
  margin-top: var(--s-block);
  overflow: hidden;
  border-block: 1px solid rgba(4, 74, 179, 0.16);
  padding-block: 1.1rem;
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  white-space: nowrap;
  animation: marquee 34s linear infinite;
  font-size: var(--fs-h3);
  letter-spacing: -0.02em;
  color: rgba(4, 74, 179, 0.85);
}
@keyframes marquee { to { transform: translateX(-50%); } }
.cta__note {
  margin-top: 2rem;
  max-width: 40ch;
  color: rgba(4, 74, 179, 0.88);
}

/* ---------- footer ---------- */

.footer { background: var(--ink); padding: var(--s-section) var(--gutter) 1.75rem; }
.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  padding-bottom: var(--s-block);
  border-bottom: 1px solid var(--hairline);
}
.footer__title { font-size: clamp(1.875rem, 3.6vw, 3.75rem); line-height: 1.05; }
.footer__mail {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 0.35em;
  transition: opacity 0.2s ease;
}
.footer__mail:hover { opacity: 0.7; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(10rem, 1fr));
  gap: 2rem;
  padding-block: var(--s-block);
}
.footer__col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__label { margin-bottom: 0.7em; opacity: 0.5; }
.footer__col a { font-size: var(--fs-small); color: var(--text-dim); transition: color 0.2s ease; width: fit-content; }
.footer__col a:hover { color: var(--white); }
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  border-top: 1px solid var(--hairline);
  padding-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- responsive ---------- */

@media (max-width: 991px) {
  .foundation__grid, .foundation__sub, .products__head { grid-template-columns: 1fr; }
  .prose-wrap, .contact__grid { grid-template-columns: 1fr; }
  .prose-toc { position: static; flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
  .prose-toc .mono { width: 100%; margin-bottom: 0; }
  .people { grid-template-columns: 1fr; }
  .updates__grid { grid-template-columns: 1fr; }
  .prow { grid-template-columns: 1fr; gap: 0.6rem; }
  .products__slider .splide__track { overflow: hidden; }
}

@media (max-width: 720px) {
  .nav__chips { display: none; }
  .nav__chips.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--blue);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--gutter);
    gap: 0.75rem;
    z-index: 40;
  }
  .nav__chips.is-open .chip { font-size: 1.25rem; padding: 0.7em 1.1em; }
  .nav__burger { display: flex; z-index: 45; }
  .nav__burger.is-open span:first-child { transform: translateY(3.75px) rotate(45deg); }
  .nav__burger.is-open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
  .nav__right .chip--cta { display: none; }
  .cta__flex { grid-template-columns: 1fr; gap: 0.75rem; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__top { align-items: flex-start; }
  .form__grid { grid-template-columns: 1fr; }
  .facts__row { grid-template-columns: 1fr; gap: 0.35rem; }
  .step { grid-template-columns: 1fr; gap: 0.5rem; }

}

/* ---------- touch targets ----------
   Phones and tablets are both touch surfaces, so this covers the whole
   range up to 1024px, plus any pointer-coarse device at any width.
   Every standalone tappable element gets 44px of height. Links sitting
   inside a sentence are deliberately left alone: WCAG 2.5.8 exempts them
   and padding them out would break the line flow of the paragraph. */

@media (max-width: 1024px), (pointer: coarse) {
  .nav__burger { height: 44px; }
  .nav__brand { min-height: 44px; }
  .btn, .chip { min-height: 44px; }
  .contact__block p > a:only-child,
  .facts__row dd > a:only-child {
    display: flex;
    align-items: center;
    min-height: 44px;
    width: fit-content;
  }
  .footer__col { gap: 0; }
  .footer__col a,
  .footer__mail,
  .link-arrow,
  .prose-toc a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  .link-arrow { width: fit-content; margin-top: 1.2rem; }
  .footer__mail { width: fit-content; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
}
