/* ===========================================================================
   /video-editor/ — Medrak Cut.

   The rest of medrak-recorder.com is light and warm, because a narrator reads
   in daylight. This page is not, and the reason is not "tools look good dark".
   The editor itself is near-black with an amber accent so the frame is the only
   lit thing on screen, and the page is mostly a picture of that editor. Wrapping
   a dark screenshot in paper-white makes the product look like a foreign object
   on its own page.

   So the palette here is lifted from the app's own tokens.css rather than
   invented: same wells, same amber, same hairlines. The page reads as a
   continuation of the instrument. Type stays Inter, because that is Medrak's
   voice everywhere and identity beats novelty, paired with the mono the editor
   itself uses for timecode — keys, versions, sizes and file extensions, never
   prose.

   The recurring motif is the timeline: hairline rules with tick marks, a
   playhead that sweeps the hero once on load, section heads that sit on a rule
   the way a track header sits on a lane. It is the one shape this product owns.
   Only .ve-page is affected; the light app tokens are untouched.
=========================================================================== */

.ve-page {
  /* Straight from the editor's `signal` theme. */
  --ve-well: oklch(0.105 0.008 265);
  --ve-chrome: oklch(0.168 0.012 265);
  --ve-panel: oklch(0.222 0.014 265);
  --ve-raised: oklch(0.285 0.016 265);
  --ve-ink: oklch(0.965 0.004 265);
  --ve-muted: oklch(0.755 0.012 265);
  --ve-accent: oklch(0.78 0.15 68);
  --ve-accent-bright: oklch(0.84 0.15 68);
  --ve-accent-wash: oklch(0.78 0.15 68 / 0.13);
  --ve-accent-edge: oklch(0.78 0.15 68 / 0.34);
  --ve-on-accent: oklch(0.17 0.03 68);
  --ve-hair: oklch(1 0 0 / 0.09);
  --ve-hair-strong: oklch(1 0 0 / 0.18);
  --ve-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Fluid rhythm. Sections breathe more as the viewport grows. */
  --ve-gap-section: clamp(4.5rem, 9vw, 8.5rem);
  --ve-pad-x: clamp(1.25rem, 5vw, 4rem);
  --ve-measure: 68ch;
  --ve-ease: cubic-bezier(0.16, 1, 0.3, 1); /* ease-out-expo */

  background: var(--ve-well);
  color: var(--ve-ink);
  color-scheme: dark;
  /* A single amber bloom behind the hero, fixed so it does not travel. */
  background-image:
    radial-gradient(120% 60% at 78% -10%, oklch(0.78 0.15 68 / 0.11), transparent 62%),
    radial-gradient(90% 50% at 8% 4%, oklch(0.55 0.06 265 / 0.22), transparent 60%);
  background-repeat: no-repeat;
}

.ve-page ::selection {
  background: var(--ve-accent);
  color: var(--ve-on-accent);
}

.ve-page :focus-visible {
  outline: 2px solid var(--ve-accent-bright);
  outline-offset: 3px;
  border-radius: 3px;
}

/* --- Shell ---------------------------------------------------------------- */

.ve-page {
  min-height: 100vh;
}

.ve-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 var(--ve-pad-x);
}

/* The site nav is a floating pill on light pages. Here it becomes a full-bleed
   sticky rail: the page is one dark surface and a pill would float on nothing. */
.ve-page .site-nav,
.ve-page .site-nav.blog-nav {
  position: sticky;
  top: 0;
  left: auto;
  transform: none;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.85rem var(--ve-pad-x);
  min-height: 62px;
  border: 0;
  border-bottom: 1px solid var(--ve-hair);
  border-radius: 0;
  background: oklch(0.105 0.008 265 / 0.86);
  box-shadow: none;
  backdrop-filter: blur(16px);
  z-index: 20;
}

.ve-page .site-nav > .brand {
  margin-inline-end: auto;
}

.ve-page .site-nav .brand,
.ve-page .site-nav .text-button {
  color: var(--ve-ink);
}

.ve-page .site-nav .text-button:hover {
  color: var(--ve-accent-bright);
}

.ve-page .primary-button {
  background: var(--ve-accent);
  background-image: none;
  color: var(--ve-on-accent);
  border: 1px solid transparent;
  box-shadow: none;
  font-weight: 650;
  transition: background-color 160ms var(--ve-ease), transform 160ms var(--ve-ease);
}

.ve-page .primary-button:hover {
  background: var(--ve-accent-bright);
  transform: translateY(-1px);
}

.ve-page .primary-button:active {
  transform: translateY(0);
}

.ve-page .primary-button:disabled {
  background: var(--ve-raised);
  color: var(--ve-muted);
  transform: none;
  cursor: not-allowed;
}

.ve-page .secondary-button {
  background: transparent;
  color: var(--ve-ink);
  border: 1px solid var(--ve-hair-strong);
  box-shadow: none;
  transition: border-color 160ms var(--ve-ease), background-color 160ms var(--ve-ease);
}

.ve-page .secondary-button:hover {
  border-color: var(--ve-accent-edge);
  background: oklch(1 0 0 / 0.04);
  color: var(--ve-ink);
}

/* Section heads sit on a rule the way a track header sits on its lane. */
.ve-shell > section {
  padding-block: var(--ve-gap-section);
  border-top: 1px solid var(--ve-hair);
  position: relative;
}

.ve-shell > section::before {
  /* Two ticks off the rule: the ruler above a timeline track. */
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 34px;
  height: 5px;
  background:
    linear-gradient(to right, var(--ve-accent) 0 1px, transparent 1px 100%),
    linear-gradient(to right, var(--ve-hair-strong) 0 1px, transparent 1px 100%);
  background-size: 100% 100%, 12px 100%;
}

.ve-shell > section > h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.022em;
  font-weight: 750;
  margin: 0 0 1rem;
  text-wrap: balance;
}

.ve-shell > section > p {
  color: var(--ve-muted);
  max-width: var(--ve-measure);
  line-height: 1.65;
  text-wrap: pretty;
  margin: 0 0 1.5rem;
}

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

.ve-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-block: clamp(3.5rem, 8vw, 7rem) var(--ve-gap-section);
}

.ve-hero-copy {
  min-width: 0;
}

/* A build badge, not a section kicker: it states platform and price once, at
   the top, the way the app's titlebar states its version. */
.ve-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ve-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ve-accent);
  background: var(--ve-accent-wash);
  border: 1px solid var(--ve-accent-edge);
  border-radius: 999px;
  padding: 0.32rem 0.7rem 0.32rem 0.55rem;
  margin-bottom: 1.4rem;
}

.ve-page .eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ve-accent);
  box-shadow: 0 0 0 3px oklch(0.78 0.15 68 / 0.2);
}

.ve-hero h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.1rem);
  line-height: 1.03;
  letter-spacing: -0.033em;
  font-weight: 800;
  margin: 0 0 1.15rem;
  text-wrap: balance;
}

.ve-lede {
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--ve-muted);
  max-width: 46ch;
  margin: 0 0 2rem;
  text-wrap: pretty;
}

.ve-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  scroll-margin-top: 90px;
}

.ve-page .ve-download {
  padding-inline: 1.6rem;
}

.ve-meta,
.ve-microcopy {
  font-family: var(--ve-mono);
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--ve-muted);
  margin: 1.15rem 0 0;
  max-width: 52ch;
}

.ve-microcopy {
  margin-top: 0.45rem;
  color: oklch(0.66 0.012 265);
}

/* The screenshot is the product. Give it the weight and let the amber bloom
   behind it do the separating rather than a heavy border. */
.ve-shot {
  margin: 0;
  min-width: 0;
  position: relative;
  animation: veShotIn 900ms var(--ve-ease) both;
}

.ve-shot::after {
  /* The playhead: sweeps the frame once on load, then rests at the left edge
     exactly where the app parks it. One gesture, not a loop. */
  content: "";
  position: absolute;
  inset-block: 6%;
  inset-inline-start: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--ve-accent), transparent);
  opacity: 0.9;
  animation: vePlayhead 2600ms 500ms var(--ve-ease) both;
}

.ve-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--ve-hair-strong);
  box-shadow:
    0 40px 90px -30px oklch(0 0 0 / 0.75),
    0 0 0 1px oklch(0 0 0 / 0.4);
}

.ve-shot figcaption {
  font-size: 0.82rem;
  line-height: 1.55;
  color: oklch(0.64 0.012 265);
  margin-top: 0.9rem;
  max-width: 54ch;
}

@keyframes veShotIn {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}

@keyframes vePlayhead {
  0%   { inset-inline-start: 2%; opacity: 0; }
  12%  { opacity: 0.95; }
  88%  { opacity: 0.95; }
  100% { inset-inline-start: 97%; opacity: 0; }
}

/* --- The direct answer ---------------------------------------------------- */

.ve-answer-lead {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
  color: var(--ve-ink);
  font-weight: 500;
  letter-spacing: -0.011em;
  max-width: 58ch;
  margin: 0 0 1.5rem;
  text-wrap: pretty;
}

.ve-shell > .ve-answer > p:not(.ve-answer-lead) {
  color: var(--ve-muted);
}

/* --- Tables --------------------------------------------------------------- */

.ve-table-scroll {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  border: 1px solid var(--ve-hair);
  border-radius: 10px;
  background: var(--ve-chrome);
}

.ve-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
  min-width: 30rem;
}

.ve-table caption {
  text-align: left;
  font-family: var(--ve-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ve-muted);
  padding: 0.85rem 1.1rem 0.55rem;
  border-bottom: 1px solid var(--ve-hair);
}

.ve-table th,
.ve-table td {
  text-align: left;
  padding: 0.8rem 1.1rem;
  border-top: 1px solid var(--ve-hair);
  vertical-align: top;
  line-height: 1.55;
}

.ve-table tbody tr:first-child th,
.ve-table tbody tr:first-child td {
  border-top: 0;
}

.ve-table caption + tbody tr:first-child th,
.ve-table caption + tbody tr:first-child td {
  border-top: 0;
}

.ve-table th[scope="row"] {
  font-family: var(--ve-mono);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--ve-muted);
  white-space: nowrap;
  width: 1%;
  padding-right: 2rem;
}

.ve-table td {
  color: var(--ve-ink);
}

.ve-table thead th {
  font-family: var(--ve-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ve-muted);
  border-top: 0;
  border-bottom: 1px solid var(--ve-hair-strong);
}

/* The comparison table's own column is the only tinted one: the answer the
   reader came for should be the thing their eye lands on. */
.ve-compare-table thead th:last-child,
.ve-compare-table tbody td:last-child {
  background: var(--ve-accent-wash);
}

.ve-compare-table thead th:last-child {
  color: var(--ve-accent);
}

.ve-compare-table tbody td:first-child {
  font-weight: 600;
}

.ve-compare-table tbody td:nth-child(2) {
  color: var(--ve-muted);
}

.ve-yes {
  color: var(--ve-accent);
  font-weight: 600;
}

.ve-yes::before {
  content: "✓ ";
  font-weight: 700;
}

/* --- Features: hairline lanes, not a grid of identical cards -------------- */

.ve-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr));
  gap: 0 clamp(2rem, 4vw, 3.5rem);
}

.ve-feature {
  padding-block: 1.6rem;
  border-top: 1px solid var(--ve-hair);
}

.ve-feature h3 {
  font-size: 1.02rem;
  font-weight: 650;
  letter-spacing: -0.008em;
  margin: 0 0 0.5rem;
  color: var(--ve-ink);
}

.ve-feature p {
  margin: 0;
  color: var(--ve-muted);
  line-height: 1.65;
  font-size: 0.94rem;
  text-wrap: pretty;
}

/* --- Keyboard ------------------------------------------------------------- */

.ve-key-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: 1.25rem;
  align-items: start;
}

.ve-key-table {
  min-width: 0;
}

/* The generic spec table lets its label column collapse to min-content, which
   breaks a combo apart mid-chord (Ctrl on one line, +Z under it). Key combos
   get a real column and never wrap. */
.ve-key-table th[scope="row"] {
  white-space: nowrap;
  width: 45%;
  padding-right: 1rem;
  color: var(--ve-ink);
}

.ve-key-table td {
  color: var(--ve-muted);
  font-size: 0.9rem;
}

.ve-page kbd {
  display: inline-block;
  font-family: var(--ve-mono);
  font-size: 0.76em;
  line-height: 1;
  padding: 0.3em 0.45em;
  border-radius: 4px;
  background: var(--ve-raised);
  border: 1px solid var(--ve-hair-strong);
  border-bottom-width: 2px;
  color: var(--ve-ink);
  white-space: nowrap;
}

.ve-page code {
  font-family: var(--ve-mono);
  font-size: 0.88em;
  background: oklch(1 0 0 / 0.06);
  border-radius: 4px;
  padding: 0.12em 0.35em;
  color: var(--ve-accent);
}

/* --- Honest limitations --------------------------------------------------- */

.ve-honest-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 74ch;
}

.ve-honest-list li {
  padding: 1.05rem 0 1.05rem 1.6rem;
  border-top: 1px solid var(--ve-hair);
  color: var(--ve-muted);
  line-height: 1.65;
  font-size: 0.95rem;
  position: relative;
  text-wrap: pretty;
}

.ve-honest-list li::before {
  /* A trim handle, borrowed from the timeline's clip edges. */
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 1.5rem;
  width: 7px;
  height: 1px;
  background: var(--ve-hair-strong);
}

.ve-honest-list strong {
  color: var(--ve-ink);
  font-weight: 600;
}

.ve-honest-list a {
  color: var(--ve-accent);
}

/* --- Support -------------------------------------------------------------- */

.ve-support-card {
  background:
    radial-gradient(120% 130% at 100% 0%, oklch(0.78 0.15 68 / 0.1), transparent 58%),
    var(--ve-chrome);
  border: 1px solid var(--ve-hair-strong);
  border-radius: 14px;
  padding: clamp(1.75rem, 4vw, 3rem);
}

.ve-support-card h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.022em;
  font-weight: 750;
  margin: 0 0 1rem;
  max-width: 22ch;
  text-wrap: balance;
}

.ve-support-card > p {
  color: var(--ve-muted);
  max-width: 60ch;
  line-height: 1.65;
  margin: 0 0 2rem;
  text-wrap: pretty;
}

.ve-donate {
  display: grid;
  gap: 1.1rem;
  justify-items: start;
}

.ve-amounts {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.ve-amounts legend {
  font-family: var(--ve-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ve-muted);
  padding: 0;
  margin-bottom: 0.6rem;
}

.ve-amount-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 2px;
  background: var(--ve-well);
  border: 1px solid var(--ve-hair-strong);
  border-radius: 10px;
}

.ve-amount {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ve-muted);
  font: inherit;
  font-family: var(--ve-mono);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.55rem 1.15rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 150ms var(--ve-ease), color 150ms var(--ve-ease);
}

.ve-amount:hover {
  color: var(--ve-ink);
  background: oklch(1 0 0 / 0.05);
}

.ve-amount.is-selected {
  background: var(--ve-accent);
  color: var(--ve-on-accent);
  font-weight: 650;
}

.ve-amount-custom {
  margin-top: 0.85rem;
}

.ve-amount-custom label {
  display: block;
  font-size: 0.82rem;
  color: var(--ve-muted);
  margin-bottom: 0.4rem;
}

.ve-amount-input {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  background: var(--ve-well);
  border: 1px solid var(--ve-hair-strong);
  border-radius: 8px;
  padding: 0 0.7rem;
  font-family: var(--ve-mono);
  color: var(--ve-muted);
  transition: border-color 150ms var(--ve-ease), box-shadow 150ms var(--ve-ease);
}

.ve-amount-input:focus-within {
  border-color: var(--ve-accent-edge);
  box-shadow: 0 0 0 3px var(--ve-accent-wash);
}

.ve-amount-input input {
  appearance: textfield;
  width: 7ch;
  background: transparent;
  border: 0;
  color: var(--ve-ink);
  font: inherit;
  font-size: 0.98rem;
  padding: 0.55rem 0;
}

.ve-amount-input input:focus {
  outline: none;
}

.ve-page .ve-donate-submit {
  padding-inline: 1.7rem;
}

.ve-donate-note {
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--ve-muted);
  margin: 0;
  max-width: 48ch;
}

.ve-donate-note.is-error {
  color: oklch(0.76 0.16 25);
}

.ve-donate-note.is-good {
  color: var(--ve-accent);
}

.ve-support-alt {
  margin: 1.75rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--ve-hair);
  font-size: 0.9rem;
  color: oklch(0.66 0.012 265);
}

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

.ve-faq-item {
  border-top: 1px solid var(--ve-hair);
}

.ve-faq-item:last-of-type {
  border-bottom: 1px solid var(--ve-hair);
}

.ve-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2.5rem 1.15rem 0;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ve-ink);
  position: relative;
  transition: color 150ms var(--ve-ease);
}

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

.ve-faq-item summary:hover {
  color: var(--ve-accent);
}

.ve-faq-item summary::after {
  content: "";
  position: absolute;
  inset-inline-end: 0.35rem;
  inset-block-start: 1.55rem;
  width: 9px;
  height: 9px;
  border-right: 1.5px solid var(--ve-muted);
  border-bottom: 1.5px solid var(--ve-muted);
  transform: rotate(45deg);
  transform-origin: 70% 70%;
  transition: transform 220ms var(--ve-ease), border-color 150ms var(--ve-ease);
}

.ve-faq-item[open] summary::after {
  transform: rotate(-135deg);
  border-color: var(--ve-accent);
}

.ve-faq-item p {
  margin: 0 0 1.3rem;
  color: var(--ve-muted);
  line-height: 1.68;
  max-width: var(--ve-measure);
  text-wrap: pretty;
}

.ve-faq-item a {
  color: var(--ve-accent);
}

/* --- Related -------------------------------------------------------------- */

.ve-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 0 clamp(2rem, 4vw, 3.5rem);
}

.ve-related-card {
  padding-block: 1.5rem;
  border-top: 1px solid var(--ve-hair);
}

.ve-related-card h3 {
  font-size: 1.05rem;
  font-weight: 650;
  margin: 0 0 0.5rem;
}

.ve-related-card h3 a {
  color: var(--ve-ink);
  text-decoration: none;
  background-image: linear-gradient(var(--ve-accent), var(--ve-accent));
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 260ms var(--ve-ease), color 160ms var(--ve-ease);
}

.ve-related-card h3 a:hover {
  color: var(--ve-accent);
  background-size: 100% 1px;
}

.ve-related-card p {
  margin: 0;
  color: var(--ve-muted);
  line-height: 1.65;
  font-size: 0.94rem;
  text-wrap: pretty;
}

/* --- Footer --------------------------------------------------------------- */

.ve-page .site-footer {
  margin-top: var(--ve-gap-section);
  border-top: 1px solid var(--ve-hair);
  background: transparent;
  color: var(--ve-muted);
}

.ve-page .site-footer-brand p,
.ve-page .site-footer-legal {
  color: oklch(0.64 0.012 265);
}

.ve-page .site-footer-brand .brand-row,
.ve-page .site-footer-links strong {
  color: var(--ve-ink);
}

.ve-page .site-footer-links a,
.ve-page .site-footer-legal a {
  color: var(--ve-muted);
}

.ve-page .site-footer-links a:hover,
.ve-page .site-footer-legal a:hover {
  color: var(--ve-accent);
}

/* --- Utility -------------------------------------------------------------- */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* --- Responsive ----------------------------------------------------------- */

@media (max-width: 62rem) {
  .ve-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
    padding-block: 3rem 0;
  }

  .ve-lede {
    max-width: 56ch;
  }
}

@media (max-width: 34rem) {
  /* The shared nav hides its text links on small screens. On the landing page
     that is fine because the hero carries the routes; here it would strand a
     phone visitor with no way back to the recorder or the blog, so they come
     back, smaller. */
  .ve-page .site-nav-actions .text-button {
    display: inline-flex;
    font-size: 0.82rem;
    padding-inline: 0.55rem;
  }

  .ve-page .site-nav {
    padding-inline: 1rem;
    gap: 0.25rem;
  }

  .ve-page .site-nav .primary-button {
    padding-inline: 0.85rem;
    font-size: 0.85rem;
  }

  .ve-page .site-nav .brand span:not(.brand-mark) {
    display: none; /* the mark alone still returns home */
  }

  .ve-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .ve-cta-row .primary-button,
  .ve-cta-row .secondary-button {
    text-align: center;
  }

  .ve-amount-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .ve-donate-submit {
    width: 100%;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .ve-shot {
    animation: none;
  }

  .ve-shot::after {
    animation: none;
    opacity: 0;
  }

  .ve-page *,
  .ve-page *::before,
  .ve-page *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
