/* Tijaorii — landing + legal pages.
   Apple's structural language (hairline sticky nav, huge tight headlines, alternating
   white/grey sections, small pill CTAs) carrying Tijaorii's palette: emerald #10B981
   on near-black #0D0E11, lifted straight from the app's theme/colors.ts. */

:root {
  --emerald: #10b981;
  --emerald-press: #0e9f70;
  --ink: #0d0e11;
  --text: #1d1d1f;
  --text-dim: #6e6e73;
  --surface: #ffffff;
  --surface-alt: #f5f5f7;
  --hairline: rgba(0, 0, 0, 0.1);
  --nav-bg: rgba(255, 255, 255, 0.72);
  --radius: 18px;
  --page: 980px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --text: #f5f5f7;
    --text-dim: #98989d;
    --surface: #0d0e11;
    --surface-alt: #16181d;
    --hairline: rgba(255, 255, 255, 0.12);
    --nav-bg: rgba(13, 14, 17, 0.72);
  }
}

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

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

.wrap {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 22px;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--hairline);
}

.nav-inner {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 22px;
  height: 64px;
  display: flex;
  align-items: center;
}

/* Logo only — the page is short enough that section links were noise. */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: opacity 0.2s ease;
}
.brand:hover {
  text-decoration: none;
  opacity: 0.7;
}
.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

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

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.028em;
  font-weight: 700;
}

h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.05;
}

h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.1;
}

h3 {
  font-size: 19px;
  letter-spacing: -0.015em;
}

.lede {
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.4;
  color: var(--text-dim);
  letter-spacing: -0.01em;
  max-width: 34ch;
  margin: 18px auto 0;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--emerald);
  margin: 0 0 14px;
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 980px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    background 0.2s ease,
    opacity 0.2s ease;
}
.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--emerald);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--emerald-press);
}

.btn-secondary {
  color: var(--emerald);
  padding-left: 4px;
}
.btn-secondary::after {
  content: " ›";
}
.btn-secondary:hover {
  text-decoration: underline;
}

.cta-row {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* ---------- sections ---------- */

section {
  padding: 96px 0;
}

.alt {
  background: var(--surface-alt);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head p {
  color: var(--text-dim);
  font-size: 19px;
  margin: 14px 0 0;
}

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

.hero {
  text-align: center;
  padding: 84px 0 0;
  /* No overflow clipping here: the phone deliberately hangs past the hero into
     the section below (which reserves padding for it). The aurora clips itself. */
}

.hero .note {
  margin-top: 22px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ---------- phone mockup ---------- */
/* Drawn in CSS rather than shipped as a screenshot: stays sharp on every display,
   and never goes stale when the app's UI moves on. */

.device-wrap {
  margin: 60px auto -120px;
  perspective: 1400px;
}

.device-stage {
  position: relative;
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  transform-style: preserve-3d;
  /* JS writes these on scroll / pointer move; all default to a no-op. */
  transform: translateY(var(--py, 0px)) rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg));
}

/* Soft emerald bloom under the phone, breathing slowly. Kept inside the stage's
   own width — the blur does the spreading, and blur is ink overflow, so it never
   widens the page the way a wider box would. */
.device-glow {
  position: absolute;
  inset: 10% 0 -2%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(16, 185, 129, 0.35),
    transparent 68%
  );
  filter: blur(46px);
  opacity: 0;
  z-index: -1;
}

.device {
  width: 300px;
  border-radius: 46px;
  padding: 11px;
  background: linear-gradient(160deg, #3a3d45, #16181d);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.28);
}

.screen {
  background: var(--surface);
  border-radius: 36px;
  padding: 20px 16px 16px;
  overflow: hidden;
}

.notch {
  width: 82px;
  height: 22px;
  border-radius: 12px;
  background: var(--ink);
  margin: 0 auto 18px;
}

.balance-card {
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 16px;
  text-align: left;
  background: var(--surface);
}

.balance-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

.balance-amount {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 6px;
  color: var(--emerald);
  font-variant-numeric: tabular-nums;
}

.bar {
  height: 6px;
  border-radius: 3px;
  background: rgba(239, 68, 68, 0.25);
  margin-top: 14px;
  overflow: hidden;
}
.bar > span {
  display: block;
  height: 100%;
  width: var(--w, 64%);
  border-radius: 3px;
  background: var(--emerald);
}

.tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}
.tile {
  border: 1px solid var(--hairline);
  border-radius: 13px;
  padding: 10px;
  background: var(--surface-alt);
}
.tile .k {
  font-size: 10px;
  color: var(--text-dim);
  font-weight: 600;
}
.tile .v {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

.rows {
  margin-top: 16px;
  text-align: left;
  /* Fixed to exactly three rows so an arriving entry pushes the oldest one out
     of sight instead of growing the phone. */
  height: 138px;
  overflow: hidden;
}
.row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--hairline);
}
.row .ic {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 13px;
  background: var(--surface-alt);
}
.row .nm {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
}
.row .amt {
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.up {
  color: var(--emerald);
}
.down {
  color: #ef4444;
}

/* ---------- feature grid ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.alt .card {
  background: var(--surface);
}

.card .glyph {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: rgba(16, 185, 129, 0.13);
  margin-bottom: 18px;
}

.card p {
  color: var(--text-dim);
  font-size: 15px;
  margin: 10px 0 0;
}

/* ---------- privacy strip ---------- */

.pledge {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.pledge h2 {
  margin-bottom: 18px;
}
.pledge p {
  font-size: 19px;
  color: var(--text-dim);
  margin: 0 auto;
  max-width: 56ch;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}
.pill-list li {
  border: 1px solid var(--hairline);
  border-radius: 980px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
}

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

footer {
  background: var(--surface-alt);
  border-top: 1px solid var(--hairline);
  padding: 56px 0 40px;
  font-size: 13px;
  color: var(--text-dim);
}

/* Brand block on the left, link columns on the right, legal bar underneath. */
.foot-top {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(120px, 1fr));
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--hairline);
}

.foot-brand .brand {
  font-size: 18px;
  margin-bottom: 14px;
}
.foot-brand .brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.foot-brand p {
  margin: 0;
  max-width: 30ch;
  line-height: 1.6;
}

.foot-col h4 {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.foot-col a {
  display: block;
  color: var(--text-dim);
  margin-bottom: 10px;
  transition: color 0.15s ease;
}
.foot-col a:hover {
  color: var(--text);
  text-decoration: none;
}

.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  padding-top: 24px;
}
.foot-bottom .legal-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
}
.foot-bottom a {
  color: var(--text-dim);
}
.foot-bottom a:hover {
  color: var(--text);
  text-decoration: none;
}
.foot-note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.85;
  flex-basis: 100%;
}

@media (max-width: 760px) {
  .foot-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .foot-brand {
    grid-column: 1 / -1;
  }
  .foot-bottom .legal-links {
    margin-left: 0;
  }
}

/* ---------- legal pages ---------- */

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 22px 96px;
}
.legal h1 {
  font-size: clamp(34px, 5vw, 48px);
}
.legal .updated {
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 12px;
}
.legal h2 {
  font-size: 23px;
  margin: 46px 0 12px;
}
.legal h3 {
  font-size: 17px;
  margin: 26px 0 8px;
}
.legal p,
.legal li {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.65;
}
.legal ul {
  padding-left: 20px;
}
.legal li {
  margin-bottom: 8px;
}
.legal strong {
  color: var(--text);
  font-weight: 600;
}
.legal .callout {
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--emerald);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 26px 0;
  background: var(--surface-alt);
}
.legal .callout p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
}
.legal .toc {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 28px;
}
.legal .toc li {
  margin-bottom: 6px;
  break-inside: avoid;
}
@media (max-width: 560px) {
  .legal .toc {
    columns: 1;
  }
}

table.data {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 15px;
}
table.data th,
table.data td {
  text-align: left;
  padding: 11px 12px;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}
table.data th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  font-weight: 600;
}
table.data td {
  color: var(--text-dim);
}
.table-scroll {
  overflow-x: auto;
}

@media (max-width: 620px) {
  section {
    padding: 68px 0;
  }
  .device,
  .device-stage {
    width: 262px;
  }
  /* The figure has to stay on one line in the narrower phone — it grows by a
     digit as the live ledger ticks. */
  .balance-amount {
    font-size: 22px;
  }
}

.balance-amount,
.tile .v {
  white-space: nowrap;
}

/* ---------- motion ---------- */
/* Reveal on scroll. Hidden state applies only when the `js` class is present, so
   with JavaScript off or broken every word is still on the page. Everything here
   animates transform/opacity/filter only — nothing that triggers layout. */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ---- headline: per-line mask reveal ---- */
/* The h1 itself stays put; its lines do the moving, so the type wipes up from
   behind its own baseline instead of drifting as one block. */

h1 .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em; /* room for descenders inside the mask */
  margin-bottom: -0.06em;
}

.js h1[data-reveal] {
  opacity: 1;
  transform: none;
  filter: none;
}

.js h1[data-reveal] .line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 1.05s cubic-bezier(0.16, 1, 0.3, 1);
}
.js h1[data-reveal] .line:nth-child(2) > span {
  transition-delay: 110ms;
}
.js h1[data-reveal].is-visible .line > span {
  transform: none;
}

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

.aurora {
  position: absolute;
  inset: -10% 0 auto;
  height: 760px;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, #000 55%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent);
}
.hero {
  position: relative;
  isolation: isolate;
}

.aurora i {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  will-change: transform;
}
.aurora i:nth-child(1) {
  width: 520px;
  height: 520px;
  top: -140px;
  left: 50%;
  margin-left: -420px;
  background: rgba(16, 185, 129, 0.42);
  animation: drift-a 19s ease-in-out infinite alternate;
}
.aurora i:nth-child(2) {
  width: 460px;
  height: 460px;
  top: -80px;
  left: 50%;
  margin-left: 40px;
  background: rgba(59, 130, 246, 0.26);
  animation: drift-b 23s ease-in-out infinite alternate;
}
.aurora i:nth-child(3) {
  width: 380px;
  height: 380px;
  top: 200px;
  left: 50%;
  margin-left: -190px;
  background: rgba(139, 92, 246, 0.2);
  animation: drift-c 27s ease-in-out infinite alternate;
}

@media (prefers-color-scheme: dark) {
  .aurora i {
    opacity: 0.42;
  }
}

@keyframes drift-a {
  to {
    transform: translate3d(90px, 60px, 0) scale(1.18);
  }
}
@keyframes drift-b {
  to {
    transform: translate3d(-110px, 40px, 0) scale(1.12);
  }
}
@keyframes drift-c {
  to {
    transform: translate3d(70px, -60px, 0) scale(0.88);
  }
}

/* ---- scroll progress + nav ---- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 30;
  background: linear-gradient(90deg, var(--emerald), #34d399);
  transform: scaleX(var(--p, 0));
  transform-origin: 0 50%;
  will-change: transform;
}

.nav {
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.07);
}
.nav.scrolled .brand img {
  transform: scale(0.92);
}
.brand img {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- the phone ---- */

/* Extra travel and scale on arrival — it is the hero's subject. */
.js .device[data-reveal] {
  transform: translateY(52px) scale(0.94);
  transition-duration: 1.05s;
}

/* The float only starts once the entrance transition has finished, or the two
   fight over `transform` mid-flight. */
.js .device.is-visible {
  animation: float 7s ease-in-out 1.3s infinite;
}

@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}

/* Glow follows the phone's arrival. `:has()` keeps it in CSS; where it is
   unsupported the glow simply never fades in, which costs nothing. */
.device-glow {
  transition: opacity 1.2s ease 0.5s;
}
.device-stage:has(.device.is-visible) .device-glow {
  opacity: 1;
  animation: breathe 7s ease-in-out 1.3s infinite;
}

@keyframes breathe {
  50% {
    opacity: 0.6;
    transform: scale(1.06);
  }
}

/* Screen contents build after the phone lands. */
.js .device[data-reveal] .bar > span {
  width: 0;
  transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.9s;
}
.js .device[data-reveal].is-visible .bar > span {
  width: var(--w, 64%);
}

.js .device[data-reveal] .row {
  opacity: 0;
  transform: translateX(14px);
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(1s + var(--i, 0) * 130ms);
}
.js .device[data-reveal].is-visible .row {
  opacity: 1;
  transform: none;
}

/* A row arriving from the live cycle: slides down into the top of the list. */
.row.row-in {
  animation: row-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes row-in {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }
}

/* Totals flash as they tick. */
.balance-amount.ticking,
.tile .v.ticking {
  animation: tick 0.7s ease;
}
@keyframes tick {
  40% {
    transform: scale(1.045);
  }
}
.balance-amount,
.tile .v {
  display: inline-block;
  transform-origin: left center;
}

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

.card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
/* Emerald spotlight tracking the pointer. JS writes --mx/--my. */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(
    340px circle at var(--mx, 50%) var(--my, 0%),
    rgba(16, 185, 129, 0.15),
    transparent 62%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card:hover::before {
  opacity: 1;
}
.card > * {
  position: relative;
  z-index: 1;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.card .glyph {
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.card:hover .glyph {
  transform: scale(1.12) rotate(-6deg);
}

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

.btn-primary {
  position: relative;
  overflow: hidden;
  transition:
    background 0.2s ease,
    box-shadow 0.3s ease,
    transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Light sweeps across on hover. */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(16, 185, 129, 0.32);
}
.btn-primary:hover::after {
  left: 120%;
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary::after {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-secondary:hover::after {
  transform: translateX(4px);
}

/* ---- pills ---- */

.pill-list li {
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.25s ease;
}
.pill-list li:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.08);
  transform: translateY(-3px);
}

/* ---- section headings: one slow sheen as they arrive ---- */

.js .section-head.is-visible h2,
.js .pledge.is-visible h2 {
  background: linear-gradient(
      100deg,
      var(--text) 30%,
      var(--emerald) 50%,
      var(--text) 70%
    )
    0 0 / 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sheen 2.4s cubic-bezier(0.4, 0, 0.2, 1) 0.35s both;
}
@keyframes sheen {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -60% 0;
  }
}

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

.foot-col a {
  display: inline-block;
  transition:
    color 0.15s ease,
    transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.foot-col a:hover {
  transform: translateX(3px);
}

/* Anyone who has asked their OS for less motion gets none of it. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js [data-reveal],
  .js .device[data-reveal],
  .js .device[data-reveal] .row {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .js h1[data-reveal] .line > span {
    transform: none;
    transition: none;
  }
  .js .device[data-reveal] .bar > span {
    width: var(--w, 64%);
    transition: none;
  }
  .aurora i,
  .js .device.is-visible,
  .device-stage:has(.is-visible) .device-glow,
  .row.row-in,
  .balance-amount.ticking,
  .tile .v.ticking,
  .js .section-head.is-visible h2,
  .js .pledge.is-visible h2 {
    animation: none;
  }
  .js .section-head.is-visible h2,
  .js .pledge.is-visible h2 {
    -webkit-text-fill-color: currentColor;
    background: none;
  }
  .card:hover,
  .btn-primary:hover,
  .pill-list li:hover,
  .card:hover .glyph,
  .foot-col a:hover {
    transform: none;
  }
  .scroll-progress {
    display: none;
  }
}
