/*
 * posibill.app
 *
 * The palette and type scale come from packages/shared/src/design/tokens.ts, so the
 * landing page and the product do not look like two different companies. The values are
 * copied rather than generated: this page is plain static HTML with no build step, and
 * a marketing site that needs a toolchain to deploy is a marketing site that stops
 * getting updated.
 */

:root {
  --ink-900: #12161c;
  --ink-800: #1f2630;
  --ink-700: #333d4b;
  --ink-600: #4a5666;
  --ink-500: #6b7787;
  --ink-400: #8d97a5;
  --ink-300: #b4bcc7;
  --ink-200: #d7dce3;
  --ink-100: #e9edf2;
  --ink-50: #f5f7fa;
  --white: #ffffff;

  --brand-700: #2b3a8f;
  --brand-600: #3549ad;
  --brand-500: #4459c9;
  --brand-400: #6b7ddb;
  --brand-200: #c3cbf2;
  --brand-100: #e4e8fb;
  --brand-50: #f2f4fe;

  --positive-700: #12613f;
  --positive-600: #177a4f;
  --positive-100: #dcf3e8;
  --positive-50: #effaf4;

  --danger-600: #b32828;
  --danger-100: #fbe0e0;
  --danger-50: #fdf2f2;

  --warning-700: #8a5200;
  --warning-100: #fdeed2;
  --warning-50: #fef8ed;

  --held-700: #5b3a86;
  --held-600: #6f49a1;
  --held-100: #ece2f8;
  --held-50: #f7f3fc;

  --canvas: #f7f8fb;

  --shadow-sm: 0 1px 2px rgba(18, 22, 28, 0.06);
  --shadow-md: 0 2px 8px rgba(18, 22, 28, 0.08);
  --shadow-lg: 0 8px 24px rgba(18, 22, 28, 0.1);
  --shadow-xl: 0 24px 64px rgba(18, 22, 28, 0.14);

  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 22px;

  --font-sans:
    'Inter var', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --page: 1160px;
  --gutter: 24px;
}

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

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--brand-600);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink-900);
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 0;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.35rem, 5.4vw, 4rem);
}
h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
}
h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

.num {
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

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

.wrap--narrow {
  max-width: 820px;
}

section {
  padding-block: clamp(64px, 9vw, 116px);
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-600);
  margin-bottom: 14px;
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-600);
  line-height: 1.62;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section-head p {
  margin-top: 16px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background 160ms cubic-bezier(0.2, 0, 0.1, 1),
    border-color 160ms cubic-bezier(0.2, 0, 0.1, 1),
    transform 160ms cubic-bezier(0.2, 0, 0.1, 1);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--brand-600);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  background: var(--brand-700);
}

.btn--ghost {
  background: var(--white);
  color: var(--ink-800);
  border-color: var(--ink-200);
}
.btn--ghost:hover {
  border-color: var(--ink-300);
  background: var(--ink-50);
}

.btn--onDark {
  background: var(--white);
  color: var(--ink-900);
}
.btn--onDark:hover {
  background: var(--ink-100);
}

.btn--lg {
  padding: 16px 30px;
  font-size: 1.125rem;
}

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink-900);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-md) 0;
  z-index: 100;
}
.skip:focus {
  left: 0;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--ink-100);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  color: var(--ink-900);
}
.logo:hover {
  text-decoration: none;
}
.logo__mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--brand-600);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
}

.nav__links {
  display: flex;
  gap: 26px;
  margin-left: auto;
  align-items: center;
}
.nav__links a {
  color: var(--ink-600);
  font-size: 0.9688rem;
  font-weight: 500;
}
.nav__links a:hover {
  color: var(--ink-900);
  text-decoration: none;
}
.nav__cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav__cta .btn {
  padding: 10px 18px;
  font-size: 0.9688rem;
}

@media (max-width: 860px) {
  .nav__links {
    display: none;
  }
  .nav__cta {
    margin-left: auto;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  padding-top: clamp(52px, 7vw, 92px);
  padding-bottom: 0;
  background:
    radial-gradient(1100px 460px at 78% -8%, var(--brand-50), transparent 62%),
    linear-gradient(180deg, var(--white), var(--canvas));
}

.hero__top {
  max-width: 880px;
  text-align: center;
  padding-bottom: clamp(40px, 5vw, 60px);
}

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

.hero__lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--ink-600);
  line-height: 1.58;
  max-width: 56ch;
  margin-inline: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  justify-content: center;
}

/* The screenshot is the argument, so it gets the full column width rather than half of
   a split hero — at 560px the figures in it are not legible, which makes it wallpaper. */
.hero__stage {
  padding-bottom: clamp(56px, 8vw, 96px);
}
.hero__stage .caption {
  text-align: center;
  max-width: 62ch;
  margin-inline: auto;
}

.hero__note {
  margin-top: 16px;
  font-size: 0.9375rem;
  color: var(--ink-500);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-600);
  margin-bottom: 24px;
}
.pill b {
  background: var(--ink-900);
  color: var(--white);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* --------------------------------------------------------------------------
   Screenshot frames
   -------------------------------------------------------------------------- */

.shot {
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-200);
  background: var(--white);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.shot img {
  width: 100%;
}

.shot__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  background: var(--ink-50);
  border-bottom: 1px solid var(--ink-100);
}
.shot__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ink-200);
}
.shot__url {
  margin-left: 10px;
  font-size: 0.75rem;
  color: var(--ink-400);
  font-weight: 500;
}

.shot--hero {
  transform: perspective(1800px) rotateY(-2.2deg);
}
@media (max-width: 980px) {
  .shot--hero {
    transform: none;
  }
}

.caption {
  margin-top: 14px;
  font-size: 0.9375rem;
  color: var(--ink-500);
}

/*
 * On a phone a 1200px-wide app screenshot squeezed to 340px is a grey smudge. Let it
 * keep a legible size and scroll sideways inside its own frame instead — the page body
 * still never scrolls horizontally.
 */
@media (max-width: 720px) {
  .shot {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .shot img {
    max-width: none;
    width: 720px;
  }
  .shot__bar {
    position: sticky;
    left: 0;
  }
}

/* --------------------------------------------------------------------------
   Leaks — the three things construction billing gets wrong
   -------------------------------------------------------------------------- */

.leaks {
  background: var(--white);
}

.leak-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 940px) {
  .leak-grid {
    grid-template-columns: 1fr;
  }
}

.leak {
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-xl);
  padding: 30px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.leak__tag {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.leak__tag--danger {
  background: var(--danger-100);
  color: var(--danger-600);
}
.leak__tag--held {
  background: var(--held-100);
  color: var(--held-700);
}
.leak__tag--warning {
  background: var(--warning-100);
  color: var(--warning-700);
}

.leak p {
  color: var(--ink-600);
  font-size: 1rem;
}

.leak__sum {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--ink-100);
  font-size: 0.9375rem;
}
.leak__sum dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
}
.leak__sum dt {
  color: var(--ink-500);
}
.leak__sum dd {
  margin: 0;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--ink-800);
}
.leak__sum .is-total dt,
.leak__sum .is-total dd {
  font-weight: 700;
  color: var(--ink-900);
  padding-top: 8px;
  border-top: 1px solid var(--ink-200);
}
.leak__sum .is-bad dd {
  color: var(--danger-600);
}
.leak__sum .is-good dd {
  color: var(--positive-600);
}

/* --------------------------------------------------------------------------
   Versus
   -------------------------------------------------------------------------- */

.versus {
  background: var(--canvas);
  border-block: 1px solid var(--ink-100);
}

.versus-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
@media (max-width: 940px) {
  .versus-grid {
    grid-template-columns: 1fr;
  }
}

.versus-col > h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.versus-col__sub {
  color: var(--ink-500);
  font-size: 0.9375rem;
  margin-bottom: 18px;
}

.dot-mark {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.dot-mark--bad {
  background: var(--danger-100);
  color: var(--danger-600);
}
.dot-mark--good {
  background: var(--positive-100);
  color: var(--positive-700);
}

/* A depiction of a billing spreadsheet, drawn in HTML. Not a screenshot of any
   particular product — it is what a contractor's own sheet tends to look like. */
.sheet {
  border: 1px solid var(--ink-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  font-size: 0.8125rem;
}
.sheet__toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--ink-100);
  border-bottom: 1px solid var(--ink-300);
  color: var(--ink-500);
  font-size: 0.75rem;
}
.sheet__formula {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--ink-300);
  border-radius: 4px;
  padding: 4px 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.6875rem;
  color: var(--ink-700);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sheet table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.sheet th,
.sheet td {
  border: 1px solid var(--ink-200);
  padding: 7px 9px;
  text-align: right;
  white-space: nowrap;
  color: var(--ink-700);
}
.sheet th {
  background: var(--ink-50);
  color: var(--ink-500);
  font-weight: 600;
  font-size: 0.75rem;
  text-align: center;
}
.sheet td:first-child,
.sheet th:first-child {
  background: var(--ink-50);
  color: var(--ink-400);
  text-align: center;
  width: 34px;
  font-size: 0.6875rem;
}
.sheet td.l {
  text-align: left;
}
.sheet td.err {
  background: var(--danger-50);
  color: var(--danger-600);
  font-weight: 600;
}
.sheet td.warn {
  background: var(--warning-50);
  color: var(--warning-700);
}
.sheet__scroll {
  overflow-x: auto;
}

.gotcha {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gotcha li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9375rem;
  color: var(--ink-600);
}
.gotcha ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Comparison table */
.compare {
  margin-top: clamp(40px, 5vw, 68px);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-xl);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare__scroll {
  overflow-x: auto;
}
.compare table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}
.compare th,
.compare td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--ink-100);
  font-size: 0.9688rem;
  vertical-align: top;
}
.compare thead th {
  background: var(--ink-50);
  color: var(--ink-500);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.compare tbody th {
  font-weight: 600;
  color: var(--ink-900);
  width: 32%;
}
.compare tbody tr:last-child th,
.compare tbody tr:last-child td {
  border-bottom: 0;
}
.compare .col-us {
  background: var(--brand-50);
  color: var(--ink-800);
  font-weight: 500;
}
.compare thead .col-us {
  background: var(--brand-100);
  color: var(--brand-700);
}
.compare .no::before {
  content: '✕';
  color: var(--danger-600);
  font-weight: 700;
  margin-right: 8px;
}
.compare .yes::before {
  content: '✓';
  color: var(--positive-600);
  font-weight: 700;
  margin-right: 8px;
}

/* --------------------------------------------------------------------------
   Feature blocks
   -------------------------------------------------------------------------- */

/*
 * Text above, screenshot at full width beneath it.
 *
 * The obvious alternating two-column layout put a 1440px app screenshot into a 600px
 * slot, which is half scale — every figure in it became unreadable and the image stopped
 * being evidence and became wallpaper. On this page the screenshots *are* the argument,
 * so they get the whole column.
 */
.feature + .feature {
  margin-top: clamp(56px, 8vw, 104px);
}

.feature__text {
  max-width: 740px;
  margin-bottom: clamp(26px, 3vw, 38px);
}

.feature__text h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 16px;
}
.feature__text p {
  color: var(--ink-600);
}
.feature__text p + p {
  margin-top: 14px;
}

.ticks {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ticks li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--ink-700);
}
.ticks li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 999px;
  background: var(--positive-100)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.5 10.5l3 3 6-7' stroke='%23177a4f' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 20px 20px no-repeat;
}

/* --------------------------------------------------------------------------
   Dark band
   -------------------------------------------------------------------------- */

.dark {
  background: var(--ink-900);
  color: var(--ink-300);
}
.dark h2,
.dark h3 {
  color: var(--white);
}
.dark .eyebrow {
  color: var(--brand-400);
}
.dark .lede {
  color: var(--ink-300);
}

.paper {
  display: grid;
  gap: clamp(28px, 5vw, 60px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: center;
}
@media (max-width: 940px) {
  .paper {
    grid-template-columns: 1fr;
  }
}
.paper__shot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  background: var(--white);
  max-height: 640px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.paper__shot img {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Phones
   -------------------------------------------------------------------------- */

.phones {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
}
.phone {
  width: 244px;
  border-radius: 30px;
  border: 8px solid var(--ink-900);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--ink-900);
}
.phone img {
  width: 100%;
  border-radius: 22px;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.price-card {
  max-width: 620px;
  margin-inline: auto;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-2xl);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
}
.price-card__amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-block: 10px 6px;
}
.price-card__amount b {
  font-size: clamp(3rem, 7vw, 4.25rem);
  font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-card__amount span {
  color: var(--ink-500);
  font-size: 1.0625rem;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 11px;
  text-align: left;
}
.price-card .btn {
  width: 100%;
}
.price-card__fine {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--ink-500);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--ink-200);
}
.faq details {
  border-bottom: 1px solid var(--ink-200);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 0;
  font-weight: 600;
  color: var(--ink-900);
  font-size: 1.0625rem;
  position: relative;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 27px;
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--ink-400);
  border-bottom: 2px solid var(--ink-400);
  transform: rotate(45deg);
  transition: transform 160ms cubic-bezier(0.2, 0, 0.1, 1);
}
.faq details[open] summary::after {
  transform: rotate(-135deg);
  top: 32px;
}
.faq details > div {
  padding-bottom: 24px;
  color: var(--ink-600);
  max-width: 72ch;
}
.faq details > div p + p {
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   Closing CTA + footer
   -------------------------------------------------------------------------- */

.closer {
  text-align: center;
}
.closer .lede {
  margin: 18px auto 0;
  max-width: 56ch;
}
.closer__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.footer {
  border-top: 1px solid var(--ink-100);
  padding-block: 44px;
  background: var(--canvas);
  font-size: 0.9375rem;
  color: var(--ink-500);
}
.footer__inner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer a {
  color: var(--ink-600);
}

/* --------------------------------------------------------------------------
   Reveal on scroll — opt-in, and a no-op without JS or with reduced motion.
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 1;
}
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 520ms cubic-bezier(0.2, 0, 0.1, 1),
    transform 520ms cubic-bezier(0.2, 0, 0.1, 1);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
