/*
 * Maps Business Extractor — storefront.
 *
 * Built on the V4 system already in use across the group: Montserrat ExtraBold
 * over Lato, one orange doing all the work, and cream alternating with white to
 * separate sections rather than borders and shadows.
 *
 * Hand-written rather than compiled from Tailwind on purpose. nginx serves this
 * file directly, so a build step would buy nothing and cost a deploy path.
 */

/* ------------------------------------------------------------------ tokens */

:root {
  /* The one accent. --flame is a fill colour and never carries small text on
     white, where it only reaches 2.9:1. --flame-deep is the text variant and
     clears AA on light backgrounds. */
  --flame: #f26522;
  --flame-deep: #c24e14;
  --flame-dark: #a63f0f;
  --flame-ghost: #fde8dd;

  --ink: #333333;
  --ink-deep: #1c1c1c;
  --ink-60: rgba(51, 51, 51, 0.62);
  --ink-45: rgba(51, 51, 51, 0.45);

  --cream: #f5f0ed;
  --mist: #fafafa;
  --line: rgba(51, 51, 51, 0.12);
  --line-strong: rgba(51, 51, 51, 0.22);

  --good: #16a34a;
  --bad: #dc2626;

  --wrap: 1120px;
  --prose: 68ch;

  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Lato", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background: #fff;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  /* Short pages — the trial form, a thin legal page — would otherwise leave
     white below the dark footer, which reads as a rendering fault. */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-footer {
  margin-top: auto;
}

::selection {
  background: var(--flame);
  color: #fff;
}

/* -------------------------------------------------------------------- type */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.015em;
  /* Montserrat 800 is tall; anything looser reads as gappy at display sizes. */
  line-height: 1.05;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

/* Capped below the section width: in the hero the headline sits in a ~570px
   column, and anything larger wraps to four lines and loses its shape. */
h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.5rem);
}
h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
}
h3 {
  font-size: 1.2rem;
  line-height: 1.25;
}
h4 {
  font-size: 1rem;
  line-height: 1.3;
}

p {
  margin: 0 0 1.1em;
}

a {
  color: var(--flame-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--flame-dark);
}

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

small {
  font-size: 0.8em;
}

/* Orange uppercase eyebrow above a section heading. */
.kicker {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--flame-deep);
  margin: 0 0 14px;
  display: block;
}

.lede {
  font-size: clamp(1.06rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-60);
  max-width: 62ch;
}

.muted {
  color: var(--ink-45);
  font-size: 0.9rem;
}

.mono {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9em;
}

/* Numerals as display type — the one place figures get to be loud. */
.figure {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------------------ layout */

/*
 * `width: 100%` is load-bearing, not decoration.
 *
 * body is a column flex container (for the sticky footer), which makes these
 * direct children flex items. An auto margin on a flex item cancels cross-axis
 * stretch, so without an explicit width they shrink-to-fit their content and a
 * narrow block — a form, a short paragraph — ends up indented and far narrower
 * than its max-width. With width:100% they fill the line, max-width caps them,
 * and the auto margins still centre them.
 */
.section {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 72px 20px;
}

.section-narrow {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 20px;
}

@media (min-width: 640px) {
  .section {
    padding: 104px 32px;
  }
  .section-narrow {
    padding: 88px 32px;
  }
}

/* Two sections stacked on the same background double their padding and open a
   gap that reads as a missing element. Halve the join. */
.section + .section,
.section + .section-narrow,
.section-narrow + .section-narrow {
  padding-top: 0;
}

/* And the block above it does not need a full section's worth of air below
   when the next block is part of the same page rather than a new movement. */
.section-narrow:has(+ .section-narrow),
.section:has(+ .section-narrow) {
  padding-bottom: 28px;
}

/* Cream and white alternate to separate sections. No rules, no shadows. */
.band-cream {
  background: var(--cream);
}
.band-ink {
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.82);
}
.band-ink h2,
.band-ink h3,
.band-ink strong {
  color: #fff;
}
.band-ink .lede {
  color: rgba(255, 255, 255, 0.7);
}
.band-ink .kicker {
  color: var(--flame);
}

.prose {
  max-width: var(--prose);
}

/* ----------------------------------------------------------------- buttons */

.btn,
.btn-ghost,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
}

.btn {
  background: var(--flame);
  color: #fff;
}
.btn:hover {
  background: var(--flame-deep);
  color: #fff;
}

.btn-dark {
  background: var(--ink-deep);
  color: #fff;
}
.btn-dark:hover {
  background: var(--flame);
  color: #fff;
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--ink-deep);
  border-color: var(--ink-deep);
  color: #fff;
}

.band-ink .btn-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}
.band-ink .btn-ghost:hover {
  background: #fff;
  color: var(--ink-deep);
}

.btn:disabled,
.btn-ghost:disabled {
  opacity: 0.5;
  cursor: default;
}

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

/* ------------------------------------------------------------------ header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}

@media (min-width: 640px) {
  .site-header .inner {
    padding: 0 32px;
  }
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
  text-decoration: none;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 9px;
}

/* A pin, drawn rather than an emoji. Two shapes, no dependency. */
.brand .mark {
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 2px;
  background: var(--flame);
  transform: rotate(-45deg);
  position: relative;
  flex: none;
}
.brand .mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  font-size: 15px;
  color: var(--ink-60);
  text-decoration: none;
}
.site-nav a:hover {
  color: var(--ink-deep);
}
.site-nav a.btn {
  color: #fff;
  padding: 10px 20px;
}

@media (max-width: 860px) {
  .site-nav a:not(.btn) {
    display: none;
  }
}

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

/* Same reason as .section — see the note there. */
.hero {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 76px 20px 64px;
}

@media (min-width: 640px) {
  .hero {
    padding: 108px 32px 84px;
  }
}

/* Asymmetric: copy on the left at 7/12, evidence panel on the right.
   A centred hero is the thing that makes a landing page look templated. */
@media (min-width: 940px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: start;
  }
}

.hero h1 {
  margin-bottom: 22px;
}

.hero .lede {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
}

/* The orange underline under one phrase in the headline. Drawn as a background
   so it wraps with the text instead of sitting in a fixed place. */
.mark-line {
  background-image: linear-gradient(transparent 62%, var(--flame-ghost) 62%);
  padding: 0 2px;
}

/* Sample-rows panel: shows the actual product output rather than a stock photo. */
.sample {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  font-size: 13px;
}

.sample-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-60);
}

.sample-head .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--flame);
  flex: none;
}

.sample table {
  width: 100%;
  border-collapse: collapse;
}

.sample th {
  text-align: left;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-45);
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

.sample td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.sample tr:last-child td {
  border-bottom: 0;
}

.sample .no {
  color: var(--bad);
  font-weight: 700;
}
.sample .yes {
  color: var(--good);
  font-weight: 700;
}

.sample-foot {
  padding: 10px 14px;
  background: var(--mist);
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-45);
}

/* ------------------------------------------------------------------- stats */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 28px;
  margin-top: 8px;
}

.stat .figure {
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  color: var(--ink-deep);
}

.band-ink .stat .figure {
  color: #fff;
}

.stat p {
  margin: 6px 0 0;
  font-size: 14.5px;
  color: var(--ink-60);
  line-height: 1.45;
}

.band-ink .stat p {
  color: rgba(255, 255, 255, 0.65);
}

/* ------------------------------------------------------------------- cards */

.cols {
  display: grid;
  gap: 28px;
  margin-top: 44px;
}

.cols-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  background: #fff;
}

.band-cream .card {
  background: #fff;
  border-color: transparent;
}

.card h3 {
  margin-bottom: 8px;
}

.card p:last-child {
  margin-bottom: 0;
}

.card p {
  font-size: 15.5px;
  color: var(--ink-60);
}

/* Numbered steps. The numeral is the graphic — no icons needed. */
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--flame-deep);
  display: block;
  margin-bottom: 10px;
}

/* ----------------------------------------------------------- filter tables */

.filter-group {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  margin-top: 26px;
}

.filter-group:first-of-type {
  border-top: 0;
  margin-top: 0;
}

.filter-group h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-45);
  margin-bottom: 16px;
}

.filter-list {
  display: grid;
  gap: 14px 36px;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list li {
  font-size: 15.5px;
  color: var(--ink-60);
  line-height: 1.5;
}

.filter-list b {
  color: var(--ink-deep);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 15px;
}

/* ------------------------------------------------------------------ tables */

.table-wrap {
  overflow-x: auto;
  margin-top: 40px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 560px;
}

table.data th,
table.data td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

table.data thead th {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-45);
  background: var(--mist);
}

table.data tbody tr:last-child td {
  border-bottom: 0;
}

table.data td:first-child {
  font-weight: 700;
  color: var(--ink-deep);
}

/* ----------------------------------------------------------------- pricing */

/* Three plans across the full width. `auto-fit` with a max track leaves a ragged
   gap on the right at wide viewports; a fixed three-column grid stays even and
   collapses cleanly on narrow screens. */
.pricing {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 44px;
}

@media (max-width: 900px) {
  .pricing {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.plan {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.plan.lead {
  border-color: var(--flame);
  box-shadow: 0 0 0 1px var(--flame);
}

.plan .tag {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--flame-deep);
  min-height: 16px;
  margin-bottom: 10px;
}

.plan .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.1rem;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink-deep);
  margin: 4px 0 6px;
}

.plan .price span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-45);
  letter-spacing: 0;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  flex: 1;
}

.plan li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: 15.5px;
  color: var(--ink-60);
}

/* A drawn tick — no icon font, no SVG sprite. */
.plan li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 15px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--flame);
  border-bottom: 2px solid var(--flame);
  transform: rotate(-45deg);
}

/* --------------------------------------------------------------- callouts */

.note {
  border-left: 3px solid var(--flame);
  background: var(--flame-ghost);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 15.5px;
}

.note p:last-child {
  margin-bottom: 0;
}

.note strong {
  font-family: var(--font-display);
}

.band-ink .note {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--flame);
}

/* ---------------------------------------------------------------- accordion */

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-deep);
  line-height: 1.35;
}

.faq summary::-webkit-details-marker {
  display: none;
}

/* The plus rotates into a cross when open. */
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 30px;
  width: 13px;
  height: 13px;
  background:
    linear-gradient(var(--flame), var(--flame)) center / 13px 2px no-repeat,
    linear-gradient(var(--flame), var(--flame)) center / 2px 13px no-repeat;
  transition: transform 0.25s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq .answer {
  padding: 0 40px 24px 0;
  color: var(--ink-60);
  font-size: 16px;
  max-width: var(--prose);
}

.faq .answer p:last-child {
  margin-bottom: 0;
}

/* ------------------------------------------------------------------- blog */

.post-list {
  display: grid;
  gap: 0;
  margin-top: 44px;
}

/* An editorial list rather than a grid of cards — reads as a publication. */
.post-item {
  display: grid;
  gap: 6px 32px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background-color 0.18s ease;
}

@media (min-width: 780px) {
  .post-item {
    grid-template-columns: 150px 1fr;
    align-items: baseline;
  }
}

.post-item:last-child {
  border-bottom: 1px solid var(--line);
}

.post-item:hover h3 {
  color: var(--flame-deep);
}

.post-item .meta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-45);
}

.post-item h3 {
  font-size: 1.4rem;
  margin: 0 0 8px;
  transition: color 0.18s ease;
}

.post-item p {
  margin: 0;
  color: var(--ink-60);
  font-size: 16px;
  max-width: 60ch;
}

/* Long-form article body. */
.article {
  max-width: var(--prose);
}

.article h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  margin-top: 2.2em;
}

.article h3 {
  font-size: 1.18rem;
  margin-top: 1.9em;
}

.article ul,
.article ol {
  margin: 0 0 1.3em;
  padding-left: 22px;
}

.article li {
  margin-bottom: 0.55em;
}

.article blockquote {
  margin: 32px 0;
  padding-left: 22px;
  border-left: 3px solid var(--flame);
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink-deep);
  font-family: var(--font-display);
  font-weight: 600;
}

.article blockquote p:last-child {
  margin-bottom: 0;
}

.article hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 44px 0;
}

.article-head {
  max-width: var(--prose);
}

.article-meta {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-45);
  margin-bottom: 18px;
}

/* -------------------------------------------------------------------- code */

pre,
code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

code {
  font-size: 0.88em;
  background: var(--cream);
  padding: 2px 6px;
  border-radius: 5px;
  color: var(--ink-deep);
}

pre {
  background: var(--ink-deep);
  color: #e9e6e3;
  border-radius: 14px;
  padding: 20px 22px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.6;
}

pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

/* ------------------------------------------------------------------ forms */

.field {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.field::placeholder {
  color: var(--ink-45);
}

.field:focus {
  outline: none;
  border-color: var(--flame);
  box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.22);
}

.field.key {
  font-family: ui-monospace, Menlo, monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.keybox {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  background: var(--cream);
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  margin: 26px 0;
  user-select: all;
  color: var(--ink-deep);
  font-weight: 700;
}

/* ------------------------------------------------------------------ meter */

.meter {
  height: 6px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
  margin: 12px 0 8px;
}

.meter i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--flame);
  border-radius: 999px;
  transition: width 0.4s ease;
}

.device-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.device-row .who {
  flex: 1;
}

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

.site-footer {
  background: var(--ink-deep);
  color: rgba(255, 255, 255, 0.55);
  padding: 60px 20px 40px;
  font-size: 15px;
}

.site-footer .inner {
  max-width: var(--wrap);
  margin: 0 auto;
}

@media (min-width: 640px) {
  .site-footer {
    padding: 72px 32px 44px;
  }
}

.footer-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  padding: 5px 0;
  font-size: 15px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.4);
}

/* ------------------------------------------------------------------ motion */

/* Scroll reveal. JS only toggles .revealed; CSS does the rest. */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ----------------------------------------------------------------- helpers */

.hide {
  display: none !important;
}

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

.ok {
  color: var(--good);
}
.err {
  color: var(--bad);
}

.tight {
  margin-bottom: 0;
}
