/* ============================================================
   Riview landing — theme system
   Light is the default. Dark applies when:
   1. the user chose it (html[data-theme="dark"]), or
   2. the system prefers it and the user didn't force light.
   The two dark blocks must stay identical.
   Theme swaps are crossfades: image pairs are stacked and their
   opacity is driven by --o-light / --o-dark.
   ============================================================ */
:root {
  --bg: #FFE3F0;                 /* exact sheen bottom color — seamless fade */
  --ink: #2D1119;
  --ink-soft: #6E4A57;
  --btn-bg: #290F1A;             /* AppleDownload.svg native pill color */
  --btn-ink: #FFF5F9;

  --o-light: 1;                  /* light-asset opacity */
  --o-dark: 0;                   /* dark-asset opacity */
  --shadow-cover: #FFE3F0;       /* hides the window PNG's baked shadow below its bottom edge */
  --card-bg: #FFFFFF;            /* card surface (featured + hover) */
  --card-shadow: 0 14px 44px rgba(42, 17, 25, 0.09);
  --tick: #00A315;               /* tickSvg.svg native green */

  /* Window composite geometry — % of the 2232×1280 window PNG box (measured) */
  --win-ar: 2232 / 1280;
  --hole-left: 25.448%;          /* 568 / 2232 */
  --hole-top: 14.0625%;          /* 180 / 1280 */
  --hole-w: 42.6523%;            /* 952 / 2232 */
  --hole-h: 74.2969%;            /* 951 / 1280 */
  --win-bottom: 11.6406%;        /* wrapper bottom → window bottom edge (1131/1280) */

  --theme-fade: 0.45s;
}

:root[data-theme="dark"] {
  --bg: #1B1216;
  --ink: #FFE9F2;
  --ink-soft: #C79AAB;
  --btn-bg: #FFE3F0;
  --btn-ink: #2A1119;
  --o-light: 0;
  --o-dark: 1;
  --shadow-cover: #1B1216;
  --card-bg: #271B21;
  --card-shadow: 0 14px 44px rgba(0, 0, 0, 0.35);
  --tick: #3FD65C;
  --hole-w: 42.6971%;            /* 953 / 2232 */
  --hole-h: 74.375%;             /* 952 / 1280 */
  --win-bottom: 11.5625%;        /* 1132 / 1280 */
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #1B1216;
    --ink: #FFE9F2;
    --ink-soft: #C79AAB;
    --btn-bg: #FFE3F0;
    --btn-ink: #2A1119;
    --o-light: 0;
    --o-dark: 1;
    --shadow-cover: #1B1216;
    --card-bg: #271B21;
    --card-shadow: 0 14px 44px rgba(0, 0, 0, 0.35);
    --tick: #3FD65C;
    --hole-w: 42.6971%;          /* 953 / 2232 */
    --hole-h: 74.375%;           /* 952 / 1280 */
    --win-bottom: 11.5625%;      /* 1132 / 1280 */
  }
}

/* Crossfading theme pairs — parents position them, this fades them */
.xf-light,
.xf-dark {
  transition: opacity var(--theme-fade) ease;
}
.xf-light { opacity: var(--o-light); }
.xf-dark { opacity: var(--o-dark); }

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--bg);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  transition: background-color var(--theme-fade) ease, color var(--theme-fade) ease;
}

/* ---------- Display type ----------
   Bricolage Grotesque carries every heading level; Plus Jakarta Sans stays
   on body copy, where its evenness is the point.

   font-optical-sizing is why the face is requested with its opsz axis: the
   88px hero and a 20px card title get genuinely different letterforms —
   tighter apertures and thinner joins up top, opened out down small — rather
   than one outline scaled twice. text-wrap: balance stops short headings
   from dropping a single orphaned word onto a second line. */
h1, h2, h3, h4 {
  font-family: "Bricolage Grotesque", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-optical-sizing: auto;
  text-wrap: balance;
}

.page {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 40px) clamp(20px, 5vw, 72px) 0;
}

/* ---------- Header ---------- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.brand svg {
  height: 36px;
  width: auto;
  display: block;
}
/* The mark-only lockup takes over on narrow screens; see the 560px block. */
.brand-mark {
  display: none;
  height: 32px;
  width: auto;
}
/* Inlined logo wordmark path recolors with the theme */
.brand svg .logo-wordmark {
  fill: var(--ink);
  transition: fill var(--theme-fade) ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.download-btn {
  display: inline-flex;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.download-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(42, 17, 25, 0.25);
}
.download-btn svg {
  height: 44px;
  width: auto;
  display: block;
}
/* Inlined AppleDownload.svg recolors with the theme */
.download-btn svg .btn-pill {
  fill: var(--btn-bg);
  transition: fill var(--theme-fade) ease;
}
.download-btn svg .btn-content {
  fill: var(--btn-ink);
  transition: fill var(--theme-fade) ease;
}
.download-btn svg .btn-arrow {
  stroke: var(--btn-ink);
  transition: stroke var(--theme-fade) ease;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  color: var(--ink);
  transition: background var(--theme-fade) ease, color var(--theme-fade) ease;
}
.theme-toggle:hover {
  background: color-mix(in srgb, var(--ink) 15%, transparent);
}
.theme-toggle svg {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* moon shows in light (action: go dark), sun shows in dark; they
   crossfade + spin a little on theme change */
.theme-toggle .icon-moon {
  opacity: var(--o-light);
  rotate: calc(var(--o-dark) * -90deg);
  transition: opacity var(--theme-fade) ease, rotate var(--theme-fade) ease;
}
.theme-toggle .icon-sun {
  opacity: var(--o-dark);
  rotate: calc(var(--o-light) * 90deg);
  transition: opacity var(--theme-fade) ease, rotate var(--theme-fade) ease;
}

/* ---------- Hero ---------- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: clamp(48px, 8vh, 110px);
  padding-bottom: clamp(60px, 10vh, 140px);
}
.hero .app-icon-wrap {
  position: relative;
  width: clamp(120px, 16vw, 176px);
}
.hero .app-icon {
  width: 100%;
  height: auto;
}
.hero .app-icon-wrap .xf-dark {
  position: absolute;
  top: 0;
  left: 0;
}
.hero h1 {
  margin-top: clamp(28px, 4vw, 48px);
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
/* ".riv" chip — the supplied @3x artwork (495x252, so 165x84 at 1x), which
   carries both the pill and the lettering. Theme-invariant by design.

   Alignment is derived, not eyeballed: the glyph baseline inside the PNG
   was measured at y=197 of 252, so 21.4% of the image hangs below it. That
   ratio drives vertical-align, which puts the artwork's baseline on the same
   line as "For" and "Files" at any size. Change --chip-h and it stays put. */
.hero h1 .riv-chip {
  --chip-h: 1.02em;
  --chip-baseline: 0.214;
  display: inline-block;
  height: var(--chip-h);
  width: auto;
  vertical-align: calc(var(--chip-h) * var(--chip-baseline) * -1);
  /* The artwork is taller than the em box; this stops it prising the two
     headline lines apart. */
  margin-block: calc((var(--chip-h) - 1em) * -0.5);
  margin-inline: 0.04em;
}
.hero .tagline {
  margin-top: clamp(18px, 2.5vw, 30px);
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 46ch;
  /* The <br> owns the break at every normal width. Below ~340px the first
     clause no longer fits and would strand "Export it." alone on a 69px
     line; balance splits that segment evenly instead. No effect wherever
     the clause already fits, so this costs nothing above the edge case. */
  text-wrap: balance;
  transition: color var(--theme-fade) ease;
}
/* Cost, requirement, and commitment inside the first screenful. */
.hero .hero-badge {
  margin-top: clamp(14px, 1.6vw, 20px);
  font-size: clamp(13px, 1.15vw, 15px);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  opacity: 0.72;
  transition: color var(--theme-fade) ease;
}

/* ---------- Window composite ----------
   One coordinate system: the wrapper matches the window PNG's aspect
   ratio, every layer is %-positioned inside it, so all layers scale
   in perfect lockstep at any viewport size. */
.window-stage {
  position: relative;
  width: min(100%, 1240px);
  aspect-ratio: var(--win-ar);
  margin-top: clamp(40px, 6vw, 84px);
}
.window-stage > * { position: absolute; }

/* Layer 1 — checkerboard, exactly filling the punched hole */
.checker {
  left: var(--hole-left);
  top: var(--hole-top);
  width: var(--hole-w);
  height: var(--hole-h);
}
.checker img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Layer 2 — transparent video, same rect as the hole */
.anim {
  left: var(--hole-left);
  top: var(--hole-top);
  width: var(--hole-w);
  height: var(--hole-h);
  object-fit: cover;
  pointer-events: none;
}

/* Layer 3 — window PNG on top; its opaque frame masks the layers below,
   hiding any sub-pixel seams. The hole lets checker + video show through. */
.window-img {
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.window-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Layer 4 — sheen: full-bleed fade, bottom edge locked to window bottom.
   Light uses the PNG, dark uses a gradient; the two crossfade. */
.sheen {
  left: 50%;
  transform: translateX(-50%);
  bottom: var(--win-bottom);
  width: 100vw;
  aspect-ratio: 1280 / 493;
  pointer-events: none;
}
.sheen > div {
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
}
.sheen .sheen-light {
  background-image: url("../images/sheen.png");
}
.sheen .sheen-dark {
  background-image: linear-gradient(
    to bottom,
    rgba(27, 18, 22, 0) 0%,
    rgba(27, 18, 22, 0.5) 55%,
    #1B1216 100%
  );
}

/* The window PNG bakes a light-gray shadow below the window's bottom
   edge; cover it with the page bg in both themes so the sheen fades out
   clean. Top overlaps 0.3% into the (bg-colored) sheen bottom so rounding
   can never expose a hairline seam. */
.window-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - var(--win-bottom) - 0.3%);
  bottom: -2%;
  background: var(--shadow-cover);
  pointer-events: none;
  transition: background-color var(--theme-fade) ease;
}

/* Layer 5 — dock, crisp above the sheen and the shadow cover */
.dock {
  left: 50%;
  transform: translateX(-50%);
  /* Anchored to the window artwork's own bottom edge rather than to a bare
     12.9%, so the two can never drift apart if --win-bottom is retuned. The
     gap stays proportional (1.26% of the stage, measured identical at 979px
     and 375px) but is floored at 3px so it cannot close up into the edge
     once the stage gets small. */
  bottom: calc(var(--win-bottom) + max(3px, 1.26%));
  width: 27.5%;
  height: auto;
  z-index: 1;
}

/* ---------- Features (cards) ---------- */
.features {
  padding-bottom: clamp(48px, 8vh, 110px);
}
.card-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 44px);
}
.card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  padding: clamp(24px, 2.6vw, 40px);
  background: transparent;
  cursor: pointer;
  /* theme changes ride the page-wide fade; the fast hover timing lives
     on the :hover state itself so only hover-in feels snappy */
  transition:
    background-color var(--theme-fade) ease,
    box-shadow var(--theme-fade) ease;
}
/* hover: hover keeps touch devices from getting stuck in the hover state.

   Deliberately no transform. Scaling a text-bearing card re-rasterises every
   glyph at fractional sizes for the length of the transition: kerning rounds
   differently frame to frame, stems land on different subpixels, and the
   weight pulses. At scale(1.015) that bought 1.5% of movement almost nobody
   registers in exchange for an artefact a typographer sees immediately.
   Layer promotion (will-change + backface-visibility) would stop the reflow
   but trades it for a softened, upscaled raster — a different artefact, not a
   fix. Surface and shadow carry the affordance instead, and .card--featured
   is the proof: it sits in the hovered appearance permanently, with no
   transform, and reads as raised. */
@media (hover: hover) {
  .card:hover {
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    transition:
      background-color 0.18s ease,
      box-shadow 0.18s ease;
  }
}
.card--featured {
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
}
.card-icon {
  width: clamp(72px, 6.5vw, 100px);
  height: auto;
}
.card h2 {
  margin-top: clamp(16px, 1.8vw, 26px);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 800;
  letter-spacing: -0.015em;
}
.card p {
  margin-top: 12px;
  font-size: clamp(15px, 1.15vw, 17px);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-soft);
  transition: color var(--theme-fade) ease;
}
.card-checks {
  list-style: none;
  /* pins checks to the card bottom under grid row-stretch, so the
     featured card never shows a blank band below its content */
  margin-top: auto;
  padding-top: clamp(16px, 1.8vw, 24px);
  display: grid;
  gap: 12px;
}
.card-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
}
.card-checks li::before {
  content: "";
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  background-color: var(--tick);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cpath d='M2 10.7898L7.14261 16L18 5' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cpath d='M2 10.7898L7.14261 16L18 5' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") no-repeat center / contain;
  transition: background-color var(--theme-fade) ease;
}
.features-bridge {
  margin-top: clamp(48px, 7vw, 96px);
  text-align: center;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- Why Riview ----------
   Theme-invariant by design: the panel stays white with fixed
   dark-on-white text in both light and dark modes. */
.why {
  padding-bottom: clamp(48px, 8vh, 110px);
}
.why-panel {
  --why-pad: clamp(28px, 4vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  background: #FFFFFF;
  border-radius: 36px;
  padding: var(--why-pad);
  box-shadow: 0 18px 60px rgba(42, 17, 25, 0.07);
}
.why-video {
  /* pull past the panel padding so the video's top edge sits flush
     with the panel's top edge; white-on-white keeps it seamless */
  align-self: start;
  margin-top: calc(var(--why-pad) * -1);
  width: 100%;
  height: auto;
  max-height: calc(min(560px, 60vh) + var(--why-pad));
  object-fit: contain;
  /* video bg is pure white, so it dissolves into the panel */
  background: #FFFFFF;
  /* fade the bottom of the frame so the next icon sliding in
     dissolves into the panel instead of peeking as a wedge */
  -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 97%);
  mask-image: linear-gradient(to bottom, #000 70%, transparent 97%);
}
.why-content h2 {
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #2D1119;
}
.why-content p {
  margin-top: clamp(14px, 1.6vw, 22px);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.6;
  color: #6E4A57;
  max-width: 52ch;
}
.why-checks {
  list-style: none;
  margin-top: clamp(20px, 2.2vw, 32px);
  display: grid;
  gap: 14px;
}
.why-checks li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 600;
  color: #2D1119;
}
.why-checks li::before {
  content: "";
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  background-color: #00A315;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cpath d='M2 10.7898L7.14261 16L18 5' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 21 21' fill='none'%3E%3Cpath d='M2 10.7898L7.14261 16L18 5' stroke='%23000' stroke-width='2'/%3E%3C/svg%3E") no-repeat center / contain;
}
.appstore-btn {
  display: inline-block;
  margin-top: clamp(26px, 3vw, 44px);
  border-radius: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.appstore-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(29, 25, 27, 0.28);
}
.appstore-btn img {
  display: block;
  width: clamp(168px, 14vw, 210px);
  height: auto;
}
.why-badge {
  margin-top: 14px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  color: #9C8189;
}

/* ---------- Disclaimer + footer ---------- */
/* Legal note. Demoted from a bordered panel at near-body size to fine print:
   the trademark language has to be present and legible, but it was reading
   as a headline and pulling focus off the CTA above it. A hairline rule
   carries the separation the panel used to, and the size now matches the
   footer fine print the other three pages already use. */
.legal {
  margin-top: clamp(36px, 5vw, 72px);
  padding-top: clamp(18px, 2.4vw, 26px);
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  transition: border-color var(--theme-fade) ease;
}
.legal-title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color var(--theme-fade) ease;
}
.legal p {
  max-width: 76ch;
  margin: 8px auto 0;
  text-align: center;
  font-size: clamp(12px, 1vw, 13.5px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--ink-soft);
  opacity: 0.82;
  transition: color var(--theme-fade) ease;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: clamp(28px, 4vw, 48px) 0 clamp(32px, 5vw, 56px);
}
.site-footer nav {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
}
.site-footer a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: opacity 0.15s ease, color var(--theme-fade) ease;
}
.site-footer a:hover { opacity: 0.65; }
.site-footer p {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--theme-fade) ease;
}

/* ---------- Support / Privacy / Samples shell ----------
   Shared by the three retained pages so their body color, theme switching,
   and header/footer can never drift from the homepage the way they had
   before this pass (each page was carrying its own copy of :root, a plain
   system-font stack, and no manual theme toggle — three separate palettes
   on one site). Classed rather than bare h1/p/h2 on purpose: a bare tag
   selector here would also match the homepage's own h1/h2, which live
   inside .hero/.card and already set their own sizing. */
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.page-title {
  font-size: 34px;
  letter-spacing: -0.02em;
  padding: 44px 0 6px;
}
.page-lead {
  color: var(--ink-soft);
  margin-bottom: 34px;
  transition: color var(--theme-fade) ease;
}
.qa {
  background: var(--card-bg);
  box-shadow: var(--card-shadow);
  border-radius: 14px;
  padding: 22px 24px;
  margin-bottom: 14px;
  transition: background-color var(--theme-fade) ease, box-shadow var(--theme-fade) ease;
}
.qa h2 {
  font-size: 17px;
  margin-bottom: 8px;
}
.qa p {
  color: var(--ink-soft);
  font-size: 15.5px;
  transition: color var(--theme-fade) ease;
}
.qa p + p { margin-top: 8px; }
.qa code {
  font: 14px ui-monospace, "SF Mono", Menlo, monospace;
  background: color-mix(in srgb, var(--ink) 10%, transparent);
  padding: 1px 6px;
  border-radius: 5px;
}

/* ---------- Small screens ---------- */
@media (max-width: 980px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .why-panel { grid-template-columns: 1fr; }
  .why-video { max-height: 46vh; }
  .why-content { text-align: center; }
  .why-content p { margin-inline: auto; }
  .why-checks { justify-items: center; }
}
@media (max-width: 620px) {
  .card-grid { grid-template-columns: 1fr; gap: 12px; }
  .card { padding: 24px; }
  .why-panel { border-radius: 28px; }
}

@media (max-width: 560px) {
  /* Header sheds everything that isn't the identity or the CTA: the wordmark
     gives way to the mark alone, and the theme toggle goes entirely — the
     pre-paint script still honours a stored choice, and the OS preference
     still drives the default, so nothing becomes unreachable. */
  /* svg.brand-full, not .brand-full: the `.brand svg` rule above sets
     display:block at equal-or-higher specificity and would otherwise win. */
  .brand svg.brand-full { display: none; }
  .brand-mark { display: block; }
  .theme-toggle { display: none; }
  .download-btn svg { height: 38px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .xf-light, .xf-dark,
  html, body,
  .brand svg .logo-wordmark,
  .download-btn svg .btn-pill,
  .download-btn svg .btn-content,
  .download-btn svg .btn-arrow,
  .theme-toggle,
  .theme-toggle .icon-moon,
  .theme-toggle .icon-sun,
  .hero .tagline,
  .window-stage::after,
  .card,
  .card p,
  .card-checks li::before {
    transition: none;
  }
}
