:root {
  --bg: #f8f7f4;
  --text: #18181b;
  --text-muted: rgba(24, 24, 27, 0.72);
  --text-faint: rgba(24, 24, 27, 0.5);
  --hairline: rgba(24, 24, 27, 0.1);
  --rule: rgba(24, 24, 27, 0.18);
  --accent: #c44a26;
  --accent-wash: rgba(196, 74, 38, 0.08);
  --ok: #3f9d6b;

  --panel: #fffefb;
  --bg-warm: #f3f1ec;
  --shadow-card: 0 1px 2px rgba(40, 24, 16, 0.04), 0 12px 32px rgba(40, 24, 16, 0.07);
  --shadow-lift: 0 2px 4px rgba(40, 24, 16, 0.05), 0 24px 56px rgba(40, 24, 16, 0.1);

  --content-max: 80rem;
  --gutter: clamp(24px, 4vw, 56px);
  --band-pad: clamp(48px, 6vw, 104px);

  --sans:
    'Geist', -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'Geist Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

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

html {
  background-color: var(--bg);
}

body {
  min-height: 100svh;
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.copy {
  color: var(--text-faint);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================================
   Page shell — sticky footer via grid rows:
   nav, accent-stripe, main (1fr), footer.
   ============================================================ */
body.site {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
}

.site-main {
  display: block;
  width: 100%;
}

.accent-stripe {
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0 8%, transparent 8% 100%);
}

.wrap {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============================================================
   Site nav (shared on every page)
   ============================================================ */
.site-nav {
  border-bottom: 1px solid var(--hairline);
  width: 100%;
}

.site-nav-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.125rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-nav .brand {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.site-nav-links {
  display: flex;
  gap: 1.5rem;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 120ms ease;
}

.site-nav-links a:hover {
  color: var(--text);
}

@media (max-width: 720px) {
  .site-nav-inner {
    padding: 0.875rem var(--gutter);
  }
  .site-nav .brand {
    font-size: 0.8125rem;
  }
  .site-nav-links {
    gap: 0.875rem;
    font-size: 0.625rem;
  }
}

/* ============================================================
   Eyebrow, buttons
   ============================================================ */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--accent);
  color: #fff;
  padding: 0.8rem 1.3rem;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition:
    transform 140ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 140ms ease,
    filter 140ms ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
  filter: saturate(1.06);
}
.btn:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-card);
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.cta-meta {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ============================================================
   Bands and section headers
   ============================================================ */
.band {
  padding: var(--band-pad) 0;
  border-top: 1px solid var(--hairline);
}
.band:first-of-type {
  border-top: 0;
}
.band-warm {
  background: var(--bg-warm);
}
.band.flush {
  border-top: 0;
  padding-top: 0;
}

.sec-head {
  max-width: 52ch;
  margin-bottom: clamp(36px, 4vw, 56px);
}
.sec-head h2 {
  margin-top: 1rem;
  font-family: var(--sans);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  font-weight: 600;
}
.sec-head p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* ============================================================
   Hero (home + interior page heads with an artifact)
   ============================================================ */
.hero {
  padding: clamp(48px, 6vw, 96px) 0 var(--band-pad);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-text h1 {
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 600;
  max-width: 15ch;
  text-wrap: balance;
}
.hero-text .lead {
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 48ch;
}
.hero-cta {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

/* Page head without an artifact (privacy, terms) */
.page-head {
  padding: clamp(48px, 6vw, 88px) 0 clamp(36px, 4vw, 56px);
}
.page-head h1 {
  margin-top: 1.1rem;
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
}
.page-head .stamp {
  margin-top: 1.1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ============================================================
   Artifact card (example output)
   ============================================================ */
.artifact {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  font-size: 0.9rem;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 360ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .artifact:hover {
    transform: translateY(-6px);
    box-shadow: 0 2px 4px rgba(40, 24, 16, 0.06), 0 40px 76px -28px rgba(40, 24, 16, 0.32);
  }
}
.artifact .a-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.1rem;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--hairline);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.artifact .a-head .pip {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.5rem;
  vertical-align: middle;
}
.artifact .a-body {
  padding: 1.2rem 1.2rem 1rem;
}
.a-subject {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.a-subject + .a-title {
  margin-top: 0.3rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.a-grid {
  margin: 1.1rem 0 0;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.3rem;
  row-gap: 0.85rem;
}
.a-grid dt {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-top: 0.15rem;
}
.a-grid dd {
  margin: 0;
  font-size: 0.92rem;
}
.a-grid dd em {
  display: block;
  margin-top: 0.2rem;
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-faint);
}
.a-conf {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.a-conf .label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.dots {
  display: inline-flex;
  gap: 5px;
}
.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rule);
  opacity: 0.4;
}
.dots i.on {
  background: var(--accent);
  opacity: 1;
}
.a-foot {
  padding: 0.8rem 1.2rem;
  border-top: 1px solid var(--hairline);
  background: var(--bg-warm);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Simple brand card (company) */
.brand-card {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  box-shadow: var(--shadow-lift);
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 40px);
  text-align: center;
}
.brand-card img {
  width: 96px;
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
}
.brand-card .divider {
  width: 32px;
  height: 1px;
  background: var(--rule);
  margin: 0 auto 1.4rem;
}
.brand-card .meta {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ============================================================
   Customer proof (home)
   ============================================================ */
.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.proof-card {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-card);
  position: relative;
}
.proof-card .tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}
.proof-card .who {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.proof-card blockquote {
  margin: 1.1rem 0 0;
  font-family: var(--sans);
  font-size: 1.22rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 500;
}
.proof-card .attr {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.82rem;
  color: var(--text-faint);
  line-height: 1.5;
}
.outcomes {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}
.outcomes li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}
.outcomes li:first-child {
  padding-top: 0;
}
.outcomes li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.outcomes .num {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  padding-top: 0.25rem;
}
.outcomes h4 {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.outcomes p {
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
.illus-note {
  margin-top: 1.6rem;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}

/* ============================================================
   Security posture grid (home) + reused key/value grid
   ============================================================ */
.sec-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(28px, 3vw, 40px);
  border-bottom: 1px solid var(--rule);
}
.sec-banner h2 {
  font-family: var(--sans);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 600;
  max-width: 18ch;
}
.sec-banner .lead {
  color: var(--text-muted);
  max-width: 38ch;
  font-size: 0.98rem;
  line-height: 1.55;
}
.posture {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow-card);
}
.posture .row {
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
}
.posture .row:nth-child(2n) {
  border-right: 0;
}
.posture .row:nth-last-child(-n + 2) {
  border-bottom: 0;
}
.posture .k {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.posture .k span:first-child {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.badge {
  font-family: var(--mono);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
}
.badge.on {
  color: var(--ok);
  background: rgba(63, 157, 107, 0.1);
}
.badge.dev {
  color: var(--accent);
  background: var(--accent-wash);
}
.posture .v {
  margin-top: 0.6rem;
  font-size: 0.96rem;
  color: var(--text);
  font-weight: 500;
}
.posture .v small {
  display: block;
  margin-top: 0.25rem;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.disclose {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.disclose code {
  font-family: var(--mono);
  color: var(--accent);
}

/* ============================================================
   Feature grid (product capabilities)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3.5vw, 48px) clamp(32px, 5vw, 64px);
}
.feature {
  border-top: 1px solid var(--rule);
  padding-top: 1.1rem;
}
.feature h3 {
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.012em;
}
.feature p {
  margin-top: 0.6rem;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.55;
  max-width: 40ch;
}

/* ============================================================
   Channels (contact)
   ============================================================ */
.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.channels .channel {
  padding: 0 clamp(20px, 2.5vw, 36px);
  border-left: 1px solid var(--hairline);
}
.channels .channel:first-child {
  padding-left: 0;
  border-left: 0;
}
.channels .channel h3 {
  font-family: var(--sans);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: -0.012em;
}
.channels .channel a.mail {
  display: inline-block;
  margin-top: 0.7rem;
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
}
.channels .channel a.mail:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.channels .channel p {
  margin-top: 0.7rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ============================================================
   Specs (key/value, single column) — entity, status
   ============================================================ */
.specs {
  display: grid;
  grid-template-columns: 13rem 1fr;
  max-width: 44rem;
}
.specs dt {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding: 1rem 0;
  border-top: 1px solid var(--hairline);
}
.specs dd {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  padding: 1rem 0;
  border-top: 1px solid var(--hairline);
}
.specs dt:first-of-type,
.specs dd:first-of-type {
  border-top: 0;
}

/* ============================================================
   Commitments / principles
   ============================================================ */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.principles .p {
  padding: 0 clamp(20px, 2.5vw, 36px);
  border-left: 1px solid var(--hairline);
}
.principles .p:first-child {
  padding-left: 0;
  border-left: 0;
}
.principles .ix {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.principles h3 {
  margin-top: 1.1rem;
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.012em;
}
.principles p {
  margin-top: 0.7rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* ============================================================
   Legal prose (privacy, terms)
   ============================================================ */
.legal {
  max-width: 46rem;
}
.legal .item {
  padding: clamp(28px, 3vw, 40px) 0;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
}
.legal .item:first-child {
  border-top: 0;
  padding-top: 0;
}
.legal .item .n {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  padding-top: 0.35rem;
}
.legal .item h2 {
  font-family: var(--sans);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.012em;
}
.legal .item p {
  margin-top: 0.8rem;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}
.legal .item p a {
  color: var(--accent);
  text-decoration: none;
}
.legal .item p a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   Site overview (deep footer band, shared on every page)
   ============================================================ */
.deep-footer {
  background: var(--bg-warm);
}
.deep-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.deep-footer .brand-block img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: block;
}
.deep-footer .brand-block p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 40ch;
}
.deep-footer h4 {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.9rem;
}
.deep-footer .col p,
.deep-footer .col a {
  display: block;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
}
.deep-footer .col a {
  color: var(--accent);
  text-decoration: none;
}
.deep-footer .col a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   Site footer (shared on every page)
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--hairline);
}
.site-footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 1.25rem var(--gutter) 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer-links {
  display: flex;
  gap: 1.25rem;
}
.site-footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 120ms ease;
}
.site-footer-links a:hover {
  color: var(--text);
}

@media (max-width: 720px) {
  .site-footer-inner {
    padding: 1rem var(--gutter) 1.125rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.625rem;
    letter-spacing: 0.06em;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 860px) {
  .hero-grid,
  .proof-grid,
  .posture,
  .principles,
  .channels,
  .feature-grid,
  .deep-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 40px;
  }
  .posture .row {
    border-right: 0;
  }
  .posture .row:nth-last-child(2) {
    border-bottom: 1px solid var(--hairline);
  }
  .principles .p,
  .channels .channel {
    padding: 2rem 0 0;
    border-left: 0;
    border-top: 1px solid var(--hairline);
    margin-top: 2rem;
  }
  .principles .p:first-child,
  .channels .channel:first-child {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .specs {
    grid-template-columns: 1fr;
  }
  .specs dt {
    padding-bottom: 0.25rem;
    border-top: 1px solid var(--hairline);
  }
  .specs dd {
    padding-top: 0.25rem;
    border-top: 0;
  }
  .specs dt:first-of-type {
    border-top: 0;
  }
  .legal .item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

/* ============================================================
   Motion — safe time-based load-in only. Base state visible,
   so content never depends on scroll or JS to appear.
   ============================================================ */
.rise {
  opacity: 1;
  transform: none;
}
@keyframes ax-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero .rise,
  .page-head.rise {
    animation: ax-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero .artifact.rise {
    animation-delay: 0.12s;
  }
}
