/* ============================================================
   CGI WEB SERVICES · launch commit checklist world
   Ground #F2F2EC · console ink #15171B · GO-green #1E7A3C family
   Layout system: the checklist form grid (thin rules, numbered
   lines, checkbox marks that are real links). Rules are the only
   divider motif.
   ============================================================ */

:root {
  --ground: #F2F2EC;
  --ground-raise: #FAFAF5;
  --ink: #15171B;
  --ink-raise: #1E2126;
  --go: #1E7A3C;            /* AA body on ground: 4.79 */
  --go-deep: #175F30;       /* AA on ground: 6.88 */
  --go-on-ink: #6FBE8B;     /* AA on ink: 8.04 */
  --muted: #4F5148;         /* ground-hued secondary, 7.28 on ground */
  --muted-on-ink: #B9BBB0;  /* ground-hued secondary, 9.23 on ink */
  --err: #A02318;           /* form errors on ground */
  --err-on-ink: #F1948A;
  --rule: 1px solid var(--ink);
  --rule-ink: 1px solid rgba(242, 242, 236, 0.28);
  --f-grot: 'Schibsted Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --f-mono: 'Spline Sans Mono', ui-monospace, 'Courier New', monospace;
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --wrap: 74rem;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

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

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

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--f-grot);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* Browser surfaces, themed */
::selection { background: var(--go); color: var(--ground); }
.region--ink ::selection, footer ::selection { background: var(--go-on-ink); color: var(--ink); }

html { caret-color: var(--go); }
input, textarea { caret-color: var(--go); }

::placeholder { color: var(--muted); opacity: 1; }
.region--ink ::placeholder { color: var(--muted-on-ink); }

:root { scrollbar-color: var(--ink) var(--ground); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--ground); }
::-webkit-scrollbar-thumb { background: var(--ink); border: 3px solid var(--ground); border-radius: 7px; }

:focus-visible {
  outline: 2px solid var(--go);
  outline-offset: 3px;
}
.region--ink :focus-visible, footer :focus-visible { outline-color: var(--go-on-ink); }

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  text-decoration-color: rgba(21, 23, 27, 0.45);
  transition: text-decoration-color 0.18s ease, color 0.18s ease;
}
a:hover { text-decoration-color: var(--go); color: var(--go-deep); }
.region--ink a, footer a { text-decoration-color: rgba(242, 242, 236, 0.5); }
.region--ink a:hover, footer a:hover { color: var(--go-on-ink); text-decoration-color: var(--go-on-ink); }

img, svg { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--f-grot);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); line-height: 1.2; }

p { margin: 0 0 1em; max-width: 72ch; }
ul, ol { margin: 0 0 1em; padding-left: 1.3em; max-width: 72ch; }
li { margin-bottom: 0.35em; }

.mono { font-family: var(--f-mono); font-weight: 500; letter-spacing: -0.01em; }
.muted { color: var(--muted); }
.region--ink .muted { color: var(--muted-on-ink); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- masthead: the document header ---------- */

.mast { border-bottom: var(--rule); }

.mast__docline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem var(--pad);
  max-width: var(--wrap);
  margin: 0 auto;
  color: var(--muted);
}
.mast__docline span { white-space: nowrap; }

.mast__bar {
  border-top: var(--rule);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  text-decoration: none;
  padding: 0.9rem 0;
}
.wordmark:hover { color: var(--ink); }
.wordmark__name {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.wordmark__sub {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .wordmark__sub { display: none; }
}

.nav-toggle {
  display: none;
  align-self: center;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  cursor: pointer;
}

.mainnav {
  display: flex;
  align-items: stretch;
}
.mainnav a {
  display: flex;
  align-items: center;
  padding: 0 1.05rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-left: 1px solid transparent;
  position: relative;
}
.mainnav a:hover { color: var(--go-deep); }
.mainnav a::after {
  content: '';
  position: absolute;
  left: 1.05rem; right: 1.05rem; bottom: 0.55rem;
  height: 2px;
  background: var(--go);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-expo);
}
.mainnav a:hover::after { transform: scaleX(1); }
.mainnav a[aria-current="page"] { font-weight: 700; }
.mainnav a[aria-current="page"]::after { transform: scaleX(1); background: var(--ink); }
.mainnav a[aria-current="page"]:hover::after { background: var(--go); }

.mainnav .nav-go {
  align-self: center;
  margin-left: 0.5rem;
  padding: 0.42rem 0.95rem;
  border: 1.5px solid var(--go);
  color: var(--go-deep);
  font-weight: 700;
}
.mainnav .nav-go::after { display: none; }
.mainnav .nav-go:hover { background: var(--go); color: var(--ground); }
.mainnav .nav-go[aria-current="page"] { background: var(--go); color: var(--ground); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .mainnav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ground);
    border-bottom: var(--rule);
    flex-direction: column;
    z-index: 50;
  }
  .mainnav.open { display: flex; }
  .mainnav a {
    padding: 0.85rem var(--pad);
    border-top: 1px solid rgba(21, 23, 27, 0.18);
  }
  .mainnav a::after { left: var(--pad); right: var(--pad); bottom: 0.5rem; }
  .mainnav .nav-go { margin: 0.75rem var(--pad); align-self: flex-start; }
  .mast { position: relative; }
}

/* ---------- regions: alternating ground / console ink ---------- */

.region { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.region--tight { padding: clamp(2rem, 4.5vw, 3.25rem) 0; }
.region--ink {
  background: var(--ink);
  color: var(--ground);
}
.region--ruled { border-top: var(--rule); }
.region--ink .ruleline { border-color: rgba(242, 242, 236, 0.28); }

.ruleline { border: 0; border-top: var(--rule); margin: 0; }

/* ---------- document head block (per page) ---------- */

.dochead { padding: clamp(2.75rem, 6vw, 5rem) 0 clamp(2rem, 4.5vw, 3.5rem); }

/* Launch board (index): compressed vertical rhythm so commit criterion 01
   and its GO stamp sit inside the first 1440x900 viewport. Spacing is
   compressed first, headline only as far as needed. */
.dochead--board { padding: clamp(2rem, 4vw, 2.75rem) 0 clamp(1.5rem, 3vw, 2.25rem); }
.dochead--board h1 { font-size: clamp(2.25rem, 5.5vw, 5rem); margin-bottom: 0.35em; }
.dochead--board .dochead__meta { gap: 0.2rem; }
.dochead__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}
.dochead__meta {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  text-align: right;
  color: var(--muted);
  display: grid;
  gap: 0.3rem;
}
.dochead__meta b { font-weight: 600; color: var(--ink); }
.region--ink .dochead__meta { color: var(--muted-on-ink); }
.region--ink .dochead__meta b { color: var(--ground); }
.lede {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.45;
  max-width: 58ch;
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .dochead__grid { grid-template-columns: 1fr; align-items: start; }
  .dochead__meta { text-align: left; }
}

/* ---------- the checklist line: layout system core ---------- */

.sheet { border-top: var(--rule); }
.region--ink .sheet { border-top: 1px solid rgba(242, 242, 236, 0.55); }

.line {
  display: grid;
  grid-template-columns: 3.2rem 2.4rem 1fr auto;
  gap: 0.5rem 1.25rem;
  align-items: center;
  padding: 1.4rem 0.25rem;
  border-bottom: var(--rule);
  text-decoration: none;
}
.region--ink .line { border-bottom: 1px solid rgba(242, 242, 236, 0.28); }

.line__num {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}
.region--ink .line__num { color: var(--muted-on-ink); }

.box {
  width: 1.35rem;
  height: 1.35rem;
  border: 1.5px solid var(--ink);
  display: grid;
  place-items: center;
  flex: none;
  transition: background 0.2s ease;
}
.region--ink .box { border-color: var(--ground); }
.box svg { width: 0.85rem; height: 0.85rem; display: block; }
.box .tick { stroke: var(--go); stroke-width: 2.4; fill: none; stroke-linecap: square; }
.region--ink .box .tick { stroke: var(--go-on-ink); }
.box--checked { background: rgba(30, 122, 60, 0.08); }
.region--ink .box--checked { background: rgba(111, 190, 139, 0.12); }

a.line { color: inherit; }
a.line:hover { background: rgba(30, 122, 60, 0.055); color: inherit; }
.region--ink a.line:hover { background: rgba(242, 242, 236, 0.05); }
a.line:hover .box { border-color: var(--go); }
a.line:hover .line__go { text-decoration: underline; text-decoration-color: var(--go); text-underline-offset: 0.22em; }

.line__body h3 { margin-bottom: 0.25em; }
.line__body p { margin-bottom: 0; color: var(--muted); }
.region--ink .line__body p { color: var(--muted-on-ink); }
.line__go {
  font-weight: 600;
  color: var(--go-deep);
}
.region--ink .line__go { color: var(--go-on-ink); }

@media (max-width: 640px) {
  .line { grid-template-columns: 2.4rem 1.9rem 1fr; }
  .line .stamp { grid-column: 3; justify-self: start; margin-top: 0.4rem; }
}

/* ---------- GO stamps ---------- */

.stamp {
  display: inline-block;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--go-deep);
  border: 1.5px solid var(--go);
  padding: 0.45rem 0.8rem;
  white-space: nowrap;
  transform: rotate(-1.5deg);
}
.region--ink .stamp { color: var(--go-on-ink); border-color: var(--go-on-ink); }

.stamp--hold {
  color: var(--ink);
  border-color: var(--ink);
  border-style: dashed;
}
.region--ink .stamp--hold { color: var(--muted-on-ink); border-color: var(--muted-on-ink); }

.stamp--ink { color: var(--ink); border-color: var(--ink); }
.region--ink .stamp--ink { color: var(--ground); border-color: var(--ground); }

.stamp--lg { font-size: clamp(1rem, 2.4vw, 1.5rem); padding: 0.7rem 1.2rem; border-width: 2px; }

/* ---------- buttons: primary actions carry GO-green ---------- */

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border: 1.5px solid var(--go);
  color: var(--go-deep);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn:hover { background: var(--go); color: var(--ground); text-decoration: none; }
.btn--solid { background: var(--go); color: #FFFFFF; }
.btn--solid:hover { background: var(--go-deep); border-color: var(--go-deep); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--ground); }
.region--ink .btn--ghost { border-color: var(--ground); color: var(--ground); }
.region--ink .btn--ghost:hover { background: var(--ground); color: var(--ink); }
.region--ink .btn:not(.btn--ghost) { color: var(--go-on-ink); border-color: var(--go-on-ink); }
.region--ink .btn:not(.btn--ghost):hover { background: var(--go-on-ink); color: var(--ink); }
.region--ink .btn--solid { background: var(--go); border-color: var(--go); color: #FFF; }
.region--ink .btn--solid:hover { background: var(--go-deep); }

.ctarow { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.75rem; }

/* ---------- section heads ---------- */

.sheethead { margin-bottom: clamp(1.75rem, 4vw, 2.75rem); max-width: 72ch; }
.sheethead p { color: var(--muted); font-size: 1.1rem; margin-bottom: 0; }
.region--ink .sheethead p { color: var(--muted-on-ink); }

/* ---------- data strips ---------- */

.datastrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--rule);
}
.datastrip__cell {
  padding: 1.5rem 1.25rem 1.5rem 0.25rem;
  border-bottom: var(--rule);
}
.datastrip__cell + .datastrip__cell { border-left: var(--rule); padding-left: 1.5rem; }
.datastrip__k {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.datastrip__l { color: var(--muted); font-size: 0.95rem; margin: 0; }

@media (max-width: 640px) {
  .datastrip { grid-template-columns: 1fr; }
  .datastrip__cell + .datastrip__cell { border-left: 0; padding-left: 0.25rem; }
}

/* ---------- process spine ---------- */

.stage {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0.25rem;
  border-bottom: var(--rule);
}
.region--ink .stage { border-bottom: 1px solid rgba(242, 242, 236, 0.28); }
.stage__num {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.1;
  color: var(--ink);
}
.region--ink .stage__num { color: var(--muted-on-ink); }
.stage__num small {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.3rem;
}
.region--ink .stage__num small { color: var(--muted-on-ink); }
.stage h3 { margin-bottom: 0.3em; }
.stage p { margin-bottom: 0; color: var(--muted); max-width: 60ch; }
.region--ink .stage p { color: var(--muted-on-ink); }

@media (max-width: 560px) {
  .stage { grid-template-columns: 1fr; gap: 0.5rem; }
}

/* ---------- spec / fact tables ---------- */

.facts { width: 100%; border-collapse: collapse; border-top: var(--rule); }
.facts th, .facts td {
  text-align: left;
  vertical-align: top;
  padding: 0.9rem 1rem 0.9rem 0.25rem;
  border-bottom: var(--rule);
  font-weight: 400;
}
.facts th { font-family: var(--f-mono); font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.facts td:last-child, .facts th:last-child { padding-right: 0.25rem; }
.facts .yes { font-weight: 600; }
.facts .yes::before {
  content: '';
  display: inline-block;
  width: 0.6em; height: 0.6em;
  margin-right: 0.55em;
  background: var(--go);
}
.facts .no { color: var(--muted); }
.facts .mono, td.mono { font-family: var(--f-mono); font-weight: 600; }
.facts tr.total td { font-weight: 700; border-bottom: 2px solid var(--ink); }
.tablewrap { overflow-x: auto; }

/* ---------- pricing rows ---------- */

.tierline {
  display: grid;
  grid-template-columns: 3.2rem 1fr auto;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.5rem 0.25rem;
  border-bottom: var(--rule);
}
.tierline__price {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  white-space: nowrap;
}
.tierline__price small {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.tierline h3 { margin-bottom: 0.2em; }
.tierline .tierline__what { color: var(--muted); margin: 0 0 0.5em; font-size: 0.98rem; }
.tierline ul { margin: 0; font-size: 0.95rem; color: var(--muted); columns: 2; column-gap: 2.5rem; max-width: 60ch; }
.tierline ul li { break-inside: avoid; }
.tierline--feat { background: rgba(30, 122, 60, 0.055); }
.region--ink .tierline { border-bottom: 1px solid rgba(242, 242, 236, 0.28); }
.region--ink .tierline__what, .region--ink .tierline ul, .region--ink .tierline ul li { color: var(--muted-on-ink); }
.region--ink .tierline__price small { color: var(--muted-on-ink); }
.region--ink .tierline--feat { background: rgba(111, 190, 139, 0.08); }

@media (max-width: 640px) {
  .tierline { grid-template-columns: 1fr; gap: 0.4rem; }
  .tierline ul { columns: 1; }
}

/* ---------- work entries ---------- */

.case {
  border-bottom: var(--rule);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.case:first-of-type { padding-top: 0; }
.case__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.case__head h2 { margin-bottom: 0; }
.case__url { font-family: var(--f-mono); font-size: 0.9rem; color: var(--muted); }
.case__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.case__cols h3 { font-size: 1.05rem; font-weight: 700; margin: 1.4em 0 0.5em; }
.case__cols h3:first-child { margin-top: 0; }
.case__cols p, .case__cols li { color: var(--muted); }
.spec {
  border-top: var(--rule);
  padding-top: 1rem;
}
.spec .facts { border-top: 0; }
.spec .facts td { font-size: 0.92rem; padding-top: 0.55rem; padding-bottom: 0.55rem; }
.case .tlink {
  display: inline-block;
  margin-top: 1.1rem;
  font-weight: 700;
  color: var(--go-deep);
}
@media (max-width: 800px) {
  .case__cols { grid-template-columns: 1fr; }
}

/* ---------- form: the intake sheet ---------- */

.intake {
  border: var(--rule);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  max-width: 46rem;
  background: var(--ground-raise);
}
.field { margin-bottom: 1.5rem; }
.field label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--f-grot);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--ground);
  border: 1px solid var(--ink);
  padding: 0.7rem 0.85rem;
  border-radius: 0;
}
.field textarea { min-height: 9rem; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--go); outline-offset: 1px; }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--err); border-width: 1.5px; }
.field input:user-invalid:focus, .field textarea:user-invalid:focus { outline-color: var(--err); }
.field .hint { font-size: 0.85rem; color: var(--muted); margin: 0.35rem 0 0; }
.form-note { font-size: 0.92rem; color: var(--muted); }

.alert {
  border: 1.5px solid var(--go);
  border-left-width: 1.5px;
  color: var(--go-deep);
  padding: 1rem 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  max-width: 46rem;
}
.alert--err { border-color: var(--err); color: var(--err); }

/* ---------- legal body ---------- */

.legal { max-width: 72ch; }
.legal h2 { font-size: 1.3rem; margin-top: 2.2em; }
.legal p, .legal li { color: var(--muted); }
.legal a { color: var(--ink); }
.legal a:hover { color: var(--go-deep); }

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

footer.sitefoot {
  background: var(--ink);
  color: var(--ground);
  border-top: 1px solid rgba(242, 242, 236, 0.4);
}
.sitefoot__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}
.sitefoot__id { font-family: var(--f-mono); font-size: 0.85rem; }
.sitefoot__id a { color: var(--ground); }
.sitefoot nav { display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; font-size: 0.95rem; }
.sitefoot nav a { text-decoration: none; }
.sitefoot nav a:hover { text-decoration: underline; text-underline-offset: 0.22em; }
.sitefoot__note {
  border-top: 1px solid rgba(242, 242, 236, 0.28);
  padding: 1rem 0 1.25rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--muted-on-ink);
}

/* ---------- error pages ---------- */

.verdict {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: clamp(4rem, 10vw, 7rem) 0;
}
.verdict__code {
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: clamp(4rem, 14vw, 9rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

/* ---------- motion: one authored system ---------- */

@keyframes settle {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes stamp-press {
  0%   { opacity: 0; transform: rotate(-1.5deg) scale(1.22); }
  55%  { opacity: 1; transform: rotate(-1.5deg) scale(0.96); }
  100% { opacity: 1; transform: rotate(-1.5deg) scale(1); }
}

/* Hidden initial states only exist once JS confirms it can reveal them */
.motion .will-settle { opacity: 0; }
.motion .will-settle.settled { animation: settle 0.9s var(--ease-expo) both; }
.motion .will-rise { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo); }
.motion .will-rise.risen { opacity: 1; transform: translateY(0); }
.motion .will-stamp { opacity: 0; }
.motion .will-stamp.stamped { animation: stamp-press 0.55s var(--ease-expo) both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .motion .will-settle, .motion .will-rise, .motion .will-stamp { opacity: 1; transform: none; }
}
