/* ---------------------------------------------------------------------------
   Ayah Editor — marketing site
   Design language: "Mihrab" (see docs/design-system.md in the product repo).
   Chrome recedes, the canvas leads. One accent (emerald) for interactivity,
   gold for the single primary action. Nothing bounces.
   --------------------------------------------------------------------------- */

:root {
  /* Ground */
  --ink: #0a0f0c;
  --ink-2: #0d1410;
  --panel: #121a15;
  --panel-2: #18221c;
  --line: #24302a;
  --line-2: #33443a;

  /* Text */
  --text: #e9efeb;
  --text-2: #a7b9af;
  --muted: #74867b;

  /* Accents */
  --emerald: #35c48a;
  --emerald-hi: #57dda8;
  --emerald-weak: rgba(53, 196, 138, 0.12);
  --gold: #d4af37;        /* brand gold (branding/profile.svg) */
  --gold-hi: #e8c878;
  --gold-weak: rgba(212, 175, 55, 0.14);

  /* Type */
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
  --arabic: "Amiri", "Scheherazade New", serif;

  /* Rhythm */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --measure: 66ch;
  --shell: 1240px;

  --ease: cubic-bezier(0.2, 0, 0, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Atmosphere: a slow emerald dawn behind everything, plus film grain. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 70% at 78% -10%, rgba(53, 196, 138, 0.16), transparent 62%),
    radial-gradient(90% 55% at 8% 4%, rgba(212, 175, 55, 0.07), transparent 60%),
    linear-gradient(180deg, #0c130f 0%, var(--ink) 42%, #080c09 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
}

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

a {
  color: var(--emerald);
  text-decoration-color: rgba(53, 196, 138, 0.35);
  text-underline-offset: 0.25em;
  transition: color 140ms var(--ease);
}

a:hover {
  color: var(--emerald-hi);
}

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

::selection {
  background: rgba(53, 196, 138, 0.28);
}

/* --- Type ---------------------------------------------------------------- */

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 450;
  font-variation-settings: "SOFT" 0, "WONK" 0;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}

h3 {
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1.15em;
  max-width: var(--measure);
  color: var(--text-2);
}

strong {
  color: var(--text);
  font-weight: 600;
}

.lede {
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.6;
  color: var(--text-2);
}

.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--emerald);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.kicker::before {
  content: "";
  width: 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  flex: none;
}

.kicker--gold {
  color: var(--gold);
}

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

.shell {
  width: min(100% - var(--gutter) * 2, var(--shell));
  margin-inline: auto;
}

section {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

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

/* Skip link: invisible until it has focus. */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 60;
  background: var(--panel-2);
  color: var(--text);
  border: 1px solid var(--emerald);
  border-radius: 8px;
  padding: 0.6rem 1rem;
  text-decoration: none;
  font-size: 0.9rem;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px) saturate(140%);
  background: rgba(10, 15, 12, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}

.nav[data-scrolled="true"] {
  border-bottom-color: var(--line);
  background: rgba(10, 15, 12, 0.9);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-right: auto;
}

.brand:hover {
  color: var(--text);
}

.brand__mark {
  width: 30px;
  height: 30px;
  flex: none;
}

.brand__name {
  font-family: var(--display);
  font-size: 1.06rem;
  font-weight: 500;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.9rem;
}

.nav__links a {
  color: var(--text-2);
  text-decoration: none;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--text);
}

.lang {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.lang a {
  padding: 0.3rem 0.62rem;
  color: var(--muted);
  text-decoration: none;
}

.lang a[aria-current="true"] {
  background: var(--emerald-weak);
  color: var(--emerald);
}

.nav__toggle {
  display: none;
}

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

.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-line: var(--line-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.4rem;
  border: 1px solid var(--btn-line);
  border-radius: 8px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform 140ms var(--ease), background 140ms var(--ease),
    border-color 140ms var(--ease), box-shadow 200ms var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  color: var(--btn-fg);
}

.btn:active {
  transform: translateY(0);
}

.btn--gold {
  --btn-bg: linear-gradient(180deg, var(--gold-hi), var(--gold));
  --btn-fg: #241a05;
  --btn-line: rgba(232, 200, 120, 0.5);
  font-weight: 600;
  box-shadow: 0 8px 26px rgba(212, 175, 55, 0.2);
}

.btn--gold:hover {
  box-shadow: 0 12px 34px rgba(212, 175, 55, 0.3);
}

.btn--ghost:hover {
  --btn-line: var(--emerald);
  background: var(--emerald-weak);
}

.btn--sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.86rem;
}

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

.hero {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: 0;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 62rem) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }
}

.hero h1 {
  margin-bottom: 0.35em;
}

.hero h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 30, "WONK" 1;
  color: var(--gold);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.5rem;
}

.hero__note {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  max-width: 40ch;
}

/* The arch: a pointed mihrab niche framing the product shot. */
.arch {
  position: relative;
}

.arch__glow {
  position: absolute;
  inset: -14% -10% 6%;
  background: radial-gradient(60% 55% at 50% 32%, rgba(53, 196, 138, 0.24), transparent 70%);
  filter: blur(18px);
  z-index: 0;
}

.shot {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.6), 0 2px 0 rgba(255, 255, 255, 0.03) inset;
}

.shot img {
  width: 100%;
}

.shot--portrait {
  max-width: 21rem;
  margin-inline: auto;
}

.shot figcaption {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0.6rem 0.9rem;
  border-top: 1px solid var(--line);
  background: var(--ink-2);
}

.hero .shot {
  transform: perspective(1600px) rotateY(-1.4deg);
}

/* Marquee of provenance badges under the hero */
.sources {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-block: 1.1rem;
  background: rgba(10, 15, 12, 0.5);
}

.sources__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 2rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.sources__inner span::before {
  content: "●";
  color: var(--emerald);
  font-size: 0.6em;
  vertical-align: 0.25em;
  margin-right: 0.6em;
}

/* --- Section heads ------------------------------------------------------- */

.head {
  max-width: 60ch;
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.head--center {
  margin-inline: auto;
  text-align: center;
}

.head--center .kicker {
  justify-content: center;
}

.head--center p {
  margin-inline: auto;
}

/* --- Feature rows (alternating, screenshot-led) -------------------------- */

.row {
  display: grid;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
}

@media (min-width: 62rem) {
  .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .row + .row {
    margin-top: clamp(4rem, 8vw, 7rem);
  }

  .row--flip .row__text {
    order: 2;
  }
}

.row + .row {
  margin-top: 4rem;
}

.row__text h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 450;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.checks li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-2);
  font-size: 0.95rem;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.7rem;
  height: 1px;
  background: var(--emerald);
}

/* --- Cards --------------------------------------------------------------- */

.cards {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

@media (min-width: 46rem) {
  .cards--2 { grid-template-columns: repeat(2, 1fr); }
  .cards--3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 68rem) {
  .cards--4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  padding: clamp(1.5rem, 2.4vw, 2rem);
  transition: background 180ms var(--ease);
}

.card:hover {
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
}

.card__num {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.93rem;
  margin-bottom: 0;
  color: var(--text-2);
}

/* --- Steps --------------------------------------------------------------- */

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.step {
  counter-increment: step;
  display: grid;
  gap: 0.4rem 2rem;
  padding: clamp(1.5rem, 3vw, 2.2rem) 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

@media (min-width: 52rem) {
  .step {
    grid-template-columns: 4rem minmax(0, 20ch) minmax(0, 1fr);
  }
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.step h3 {
  margin: 0;
  font-size: 1.15rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
}

/* --- Pull quote / manifesto --------------------------------------------- */

.manifesto {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(212, 175, 55, 0.07), transparent 70%),
    var(--ink-2);
  text-align: center;
}

.manifesto blockquote {
  margin: 0 auto;
  max-width: 26ch;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.manifesto .ayah {
  font-family: var(--arabic);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--gold);
  direction: rtl;
  margin-bottom: 1.6rem;
  line-height: 1.9;
}

.manifesto cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* --- Spec table ---------------------------------------------------------- */

.spec {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.spec caption {
  text-align: left;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 0.9rem;
}

.spec th,
.spec td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec th {
  font-weight: 600;
  color: var(--text);
  width: 34%;
  white-space: nowrap;
}

.spec td {
  color: var(--text-2);
}

.spec tr:hover td,
.spec tr:hover th {
  background: rgba(53, 196, 138, 0.04);
}

.spec code,
code {
  font-family: var(--mono);
  font-size: 0.88em;
  color: var(--emerald);
  background: var(--emerald-weak);
  padding: 0.1em 0.4em;
  border-radius: 4px;
}

/* --- Pipeline diagram ---------------------------------------------------- */

.pipeline {
  font-family: var(--mono);
  font-size: clamp(0.72rem, 1.15vw, 0.86rem);
  line-height: 2;
  color: var(--text-2);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
  overflow-x: auto;
  white-space: pre;
  margin: 0;
}

.pipeline b {
  color: var(--emerald);
  font-weight: 500;
}

.pipeline i {
  color: var(--gold);
  font-style: normal;
}

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

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

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

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.35rem 2.5rem 1.35rem 0;
  position: relative;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--text);
  transition: color 140ms var(--ease);
}

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

.faq summary:hover {
  color: var(--emerald);
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  translate: 0 -50%;
  font-family: var(--mono);
  color: var(--emerald);
  font-size: 1.2rem;
  transition: rotate 220ms var(--ease);
}

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

.faq details > *:not(summary) {
  margin-bottom: 1.35rem;
}

.faq p {
  max-width: 78ch;
}

/* --- Early access form --------------------------------------------------- */

.signup {
  border: 1px solid var(--line-2);
  border-radius: 14px;
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(53, 196, 138, 0.1), transparent 62%),
    linear-gradient(180deg, var(--panel), var(--ink-2));
  padding: clamp(1.75rem, 4vw, 3rem);
}

.signup h2 {
  margin-bottom: 0.35em;
}

.form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
  max-width: 34rem;
}

.form input[type="email"] {
  flex: 1 1 16rem;
  min-width: 0;
  padding: 0.78rem 1rem;
  border-radius: 8px;
  border: 1px solid var(--line-2);
  background: var(--ink);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
}

.form input::placeholder {
  color: var(--muted);
}

.form input:focus-visible {
  border-color: var(--emerald);
  outline: none;
  box-shadow: 0 0 0 3px var(--emerald-weak);
}

.form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__msg {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form__msg[data-state="ok"] {
  color: var(--emerald);
}

.form__msg[data-state="error"] {
  color: #e5695b;
}

.fine {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 1.1rem;
}

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

.footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 5vw, 4.5rem) 2.5rem;
  background: rgba(6, 10, 8, 0.6);
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 52rem) {
  .footer__grid {
    grid-template-columns: 1.6fr repeat(3, 1fr);
  }
}

.footer h4 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
  font-size: 0.92rem;
}

.footer ul a {
  color: var(--text-2);
  text-decoration: none;
}

.footer ul a:hover {
  color: var(--emerald);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--muted);
}

/* --- Article pages ------------------------------------------------------- */

.prose h2 {
  margin-top: 2.6em;
}

.prose h3 {
  margin-top: 2em;
}

.prose ul,
.prose ol {
  color: var(--text-2);
  max-width: var(--measure);
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.page-head {
  padding-block: clamp(3.5rem, 7vw, 6rem) clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.crumbs {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}

.crumbs a {
  color: var(--muted);
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--emerald);
}

/* --- Reveal on scroll ---------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* Hero entrance: staggered, quiet. */
.stagger > * {
  animation: rise 760ms var(--ease) both;
}

.stagger > *:nth-child(1) { animation-delay: 60ms; }
.stagger > *:nth-child(2) { animation-delay: 140ms; }
.stagger > *:nth-child(3) { animation-delay: 220ms; }
.stagger > *:nth-child(4) { animation-delay: 300ms; }
.stagger > *:nth-child(5) { animation-delay: 380ms; }

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

/* --- Small screens ------------------------------------------------------- */

@media (max-width: 52rem) {
  .nav__links {
    position: fixed;
    inset: 4.25rem 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.5rem;
    display: none;
  }

  .nav__links[data-open="true"] {
    display: flex;
  }

  .nav__links a {
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav__links .lang {
    margin-top: 1rem;
  }

  .nav__toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid var(--line-2);
    border-radius: 8px;
    color: var(--text-2);
    font: inherit;
    font-size: 0.85rem;
    padding: 0.45rem 0.8rem;
    cursor: pointer;
  }

  .hero .shot {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* --- Print --------------------------------------------------------------- */

@media print {
  body::before,
  body::after,
  .nav,
  .signup {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}
