/* ==========================================================================
   Netwrk — shared stylesheet
   Palette and type taken from the approved concept:
   base #0B0918 · surface #1A1533 · text #F4F1FF · amber #FFB566
   Display: Instrument Serif · UI: system sans
   ========================================================================== */

:root {
  --bg: #0b0918;
  --bg-2: #120e26;
  --surface: #1a1533;
  --surface-2: #221c40;
  --line: rgba(244, 241, 255, 0.1);
  --line-strong: rgba(244, 241, 255, 0.18);

  --text: #f4f1ff;
  --muted: #c9c3e6;
  --muted-2: #9d96c0;
  --dim: #6f679a;

  --amber: #ffb566;
  --amber-2: #ffd0a0;
  --violet: #8478e8;
  --violet-soft: #a99cf5;
  --mint: #b4e8d0;

  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;

  --container: 1180px;
  --gutter: 24px;
  --section-y: clamp(64px, 8vw, 112px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

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

.section {
  padding-block: var(--section-y);
  position: relative;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 20px;
  background: var(--amber);
  color: #241703;
  font-weight: 700;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

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

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 18px;
}

.display-xl {
  font-size: clamp(44px, 7vw, 78px);
}

.display-lg {
  font-size: clamp(32px, 4.6vw, 54px);
}

.display-md {
  font-size: clamp(24px, 2.8vw, 34px);
}

.italic-amber {
  font-style: italic;
  color: var(--amber);
}

.lede {
  margin-top: 22px;
  max-width: 58ch;
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease),
    background-color 0.18s var(--ease);
}

.btn--amber {
  background: linear-gradient(180deg, var(--amber-2), var(--amber));
  color: #2a1a05;
  box-shadow: 0 8px 26px rgba(255, 181, 102, 0.24);
}

.btn--amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 181, 102, 0.34);
}

.btn--ghost {
  border: 1px solid var(--line-strong);
  background: rgba(244, 241, 255, 0.04);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(244, 241, 255, 0.09);
}

.btn--lg {
  padding: 15px 28px;
  font-size: 15.5px;
}

.btn--block {
  width: 100%;
}

/* --- Header ------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 9, 24, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.header.is-stuck {
  border-bottom-color: var(--line);
}

.header__bar {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 21px;
  flex-shrink: 0;
}

.brand__dot {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, var(--violet-soft), #4a3fa8 70%);
  box-shadow: 0 0 16px rgba(132, 120, 232, 0.5);
  flex-shrink: 0;
}

.brand__dot::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav__link {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14.5px;
  color: var(--muted);
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}

.nav__link:hover {
  color: var(--text);
  background: rgba(244, 241, 255, 0.06);
}

.header__cta {
  margin-left: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

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

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(52px, 7vw, 88px) clamp(56px, 8vw, 104px);
  background:
    radial-gradient(900px 460px at 68% 4%, rgba(96, 78, 190, 0.42), transparent 66%),
    radial-gradient(680px 420px at 8% 0%, rgba(58, 44, 120, 0.5), transparent 70%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 181, 102, 0.3);
  background: rgba(255, 181, 102, 0.09);
  font-size: 13px;
  color: var(--amber-2);
  margin-bottom: 24px;
}

.pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: 1.04;
}

.hero__sub {
  margin-top: 22px;
  max-width: 50ch;
  color: var(--muted);
  font-size: clamp(14.5px, 1.35vw, 16.5px);
}

/* email capture */
.capture {
  margin-top: 34px;
  max-width: 460px;
}

.capture__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 10px;
}

.capture__row {
  display: flex;
  gap: 10px;
}

.capture input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(244, 241, 255, 0.04);
  color: var(--text);
  font-size: 14.5px;
}

.capture input::placeholder {
  color: var(--dim);
}

.capture input:focus {
  outline: none;
  border-color: rgba(255, 181, 102, 0.55);
  background: rgba(244, 241, 255, 0.07);
}

.capture__note {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--dim);
}

.form-status {
  margin-top: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13.5px;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status--ok {
  background: rgba(180, 232, 208, 0.12);
  border: 1px solid rgba(180, 232, 208, 0.4);
  color: var(--mint);
}

.form-status--err {
  background: rgba(255, 138, 128, 0.1);
  border: 1px solid rgba(255, 138, 128, 0.4);
  color: #ffab9f;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* store badges */
.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 18px;
  border-radius: 13px;
  border: 1px solid var(--line-strong);
  background: rgba(244, 241, 255, 0.03);
}

.store svg {
  flex-shrink: 0;
  color: var(--muted);
}

.store span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--dim);
}

.store strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  /* the wrapping span sets uppercase for the small label; the name must not
     inherit it ("the App Store", not "THE APP STORE") */
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
}

/* --- Orbit -------------------------------------------------------------- */

.orbit {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 500px;
  margin-inline: auto;
}

.orbit__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(244, 241, 255, 0.08);
  border-radius: 50%;
}

.orbit__me {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(circle at 36% 30%, #a99cf5, #5a4bc4 72%);
  box-shadow: 0 0 50px rgba(132, 120, 232, 0.55);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.orbit__node {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #12102a;
  background: #cfc8ee;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.orbit__node--mint {
  background: var(--mint);
}

.orbit__node--amber {
  background: var(--amber);
}

.orbit__node--far {
  background: rgba(157, 150, 192, 0.34);
  color: rgba(244, 241, 255, 0.66);
}

/* --- Countdown / timeline ----------------------------------------------- */

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin-top: 30px;
}

.count {
  padding: 16px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
}

.count__n {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1;
}

.count__l {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.track {
  margin-top: 34px;
}

.track__bar {
  height: 4px;
  border-radius: 999px;
  background: rgba(244, 241, 255, 0.09);
  overflow: hidden;
}

.track__fill {
  height: 100%;
  width: 96%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--amber));
}

.track__ends {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 12px;
  color: var(--dim);
}

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

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.feature {
  display: flex;
  flex-direction: column;
  padding: 26px 24px 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(244, 241, 255, 0.045), rgba(244, 241, 255, 0.012));
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.feature:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.feature__demo {
  min-height: 128px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(11, 9, 24, 0.55);
  padding: 14px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.chip-note {
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(244, 241, 255, 0.06);
  border: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}

.mini {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10.5px;
  font-weight: 600;
  color: #12102a;
  background: #cfc8ee;
}

.mini--mint { background: var(--mint); }
.mini--amber { background: var(--amber); }
.mini--dim { background: rgba(157, 150, 192, 0.34); color: rgba(244,241,255,0.7); }

.feature h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14.5px;
  color: var(--muted-2);
}

.task-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(244, 241, 255, 0.05);
  border: 1px solid var(--line);
  font-size: 12.5px;
}

.task-row__meta {
  margin-left: auto;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
}

/* --- Privacy band ------------------------------------------------------- */

.band {
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    radial-gradient(700px 320px at 20% 0%, rgba(96, 78, 190, 0.34), transparent 68%),
    var(--surface);
  padding: clamp(32px, 5vw, 60px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--amber);
  font-weight: 600;
  font-size: 15px;
}

.link-arrow span {
  transition: transform 0.2s var(--ease);
}

.link-arrow:hover span {
  transform: translateX(4px);
}

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

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

.card {
  padding: 26px 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.card__icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: rgba(132, 120, 232, 0.16);
  color: var(--violet-soft);
  margin-bottom: 18px;
}

.card h3 {
  font-size: 21px;
  margin-bottom: 9px;
}

.card p {
  font-size: 14px;
  color: var(--muted-2);
}

.card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--amber);
  font-size: 14px;
  font-weight: 600;
}

/* --- Meta strip --------------------------------------------------------- */

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 30px;
}

.meta-strip dt {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 5px;
}

.meta-strip dd {
  margin: 0;
  font-size: 14.5px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(244, 241, 255, 0.04);
  font-size: 13.5px;
  color: var(--muted);
}

/* --- Legal / doc layout ------------------------------------------------- */

.doc {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.toc {
  position: sticky;
  top: 92px;
}

.toc__title {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 14px;
}

.toc a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--muted-2);
  transition: color 0.18s var(--ease);
}

.toc a:hover {
  color: var(--amber);
}

.clause {
  scroll-margin-top: 92px;
}

.clause + .clause {
  margin-top: 44px;
}

.clause__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}

.clause__n {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--violet-soft);
  flex-shrink: 0;
}

.clause h2 {
  font-size: clamp(24px, 2.6vw, 32px);
}

.clause p {
  color: var(--muted-2);
  font-size: 15px;
}

.clause p + p {
  margin-top: 14px;
}

.clause ul {
  margin-top: 14px;
  display: grid;
  gap: 11px;
}

.clause li {
  position: relative;
  padding-left: 20px;
  color: var(--muted-2);
  font-size: 14.5px;
}

.clause li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--violet);
}

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

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

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s var(--ease);
}

.faq__trigger:hover {
  color: var(--amber);
}

.faq__chev {
  flex-shrink: 0;
  color: var(--violet-soft);
  transition: transform 0.3s var(--ease);
}

.faq__trigger[aria-expanded="true"] .faq__chev {
  transform: rotate(180deg);
}

.faq__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s var(--ease);
}

.faq__panel[data-open="true"] {
  grid-template-rows: 1fr;
}

.faq__panel > div {
  overflow: hidden;
}

.faq__panel p {
  padding-bottom: 20px;
  color: var(--muted-2);
  font-size: 14.5px;
  max-width: 62ch;
}

/* --- Contact form ------------------------------------------------------- */

.panel {
  padding: 28px 26px 30px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.field label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 11px;
  border: 1px solid var(--line-strong);
  background: rgba(11, 9, 24, 0.6);
  color: var(--text);
  font-size: 14.5px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--dim);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(255, 181, 102, 0.5);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.choices {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.choice {
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(244, 241, 255, 0.04);
  font-size: 13px;
  color: var(--muted);
  transition: background-color 0.18s var(--ease), color 0.18s var(--ease);
}

.choice.is-on {
  background: linear-gradient(180deg, var(--amber-2), var(--amber));
  border-color: transparent;
  color: #2a1a05;
  font-weight: 600;
}

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

.footer {
  border-top: 1px solid var(--line);
  padding-block: 46px 30px;
  background: var(--bg-2);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.footer__blurb {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted-2);
  max-width: 30ch;
}

.footer__h {
  font-size: 10.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 15px;
}

.footer__list {
  display: grid;
  gap: 10px;
}

.footer__list a,
.footer__list span {
  font-size: 14px;
  color: var(--muted-2);
  transition: color 0.18s var(--ease);
}

.footer__list a:hover {
  color: var(--amber);
}

.footer__bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--dim);
}

.footer--slim {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

/* --- Reveal ------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

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

@media (max-width: 1000px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .orbit {
    max-width: 400px;
    order: -1;
  }

  .doc {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }
}

@media (max-width: 820px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.is-open {
    display: grid;
    position: absolute;
    top: 62px;
    left: var(--gutter);
    right: var(--gutter);
    padding: 12px;
    gap: 2px;
    border-radius: 16px;
    border: 1px solid var(--line-strong);
    background: rgba(18, 14, 38, 0.97);
    backdrop-filter: blur(14px);
  }

  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 18px;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capture__row {
    flex-direction: column;
  }

  .capture__row .btn {
    width: 100%;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .meta-strip {
    gap: 22px;
  }
}

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

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

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