:root {
  --ink: #303640;
  --ink-deep: #20252d;
  --paper: #ffffff;
  --mist: #f3f5f7;
  --line: #dce1e6;
  --yellow: #ffdc68;
  --yellow-bright: #f7fb72;
  --coral: #ff8e88;
  --muted: #69717c;
  --radius: 1.5rem;
  --shadow: 0 1.5rem 4rem rgba(29, 35, 44, 0.14);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}
.shell {
  width: min(73rem, calc(100% - 2.5rem));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 99;
  left: 1rem;
  top: 1rem;
  padding: 0.7rem 1rem;
  background: var(--paper);
  border-radius: 0.6rem;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(220, 225, 230, 0.8);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink-deep);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand img {
  border-radius: 0.65rem;
}
.brand-dot {
  color: #8d7600;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.site-nav > a:not(.button) {
  color: #505965;
  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;
}
.site-nav > a:hover,
.site-nav > a[aria-current="page"] {
  color: var(--ink-deep);
}
.menu-button {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 50%;
  background: var(--mist);
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.button {
  display: inline-flex;
  min-height: 3.6rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0.65rem 1.35rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.05;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.8rem 1.7rem rgba(32, 37, 45, 0.17);
  background: var(--ink-deep);
}
.button-small {
  min-height: 2.75rem;
  padding: 0.55rem 1.25rem;
  font-size: 0.9rem;
}
.button-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}
.button-ghost:hover {
  color: var(--paper);
  border-color: var(--ink-deep);
}
.button-kicker {
  margin-bottom: 0.22rem;
  font-size: 0.64rem;
  font-weight: 600;
  opacity: 0.72;
  letter-spacing: 0.04em;
}
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.store-buttons .button {
  min-width: 10.5rem;
}
.microcopy {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero {
  min-height: 43rem;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}
.eyebrow {
  margin: 0 0 1rem;
  color: #796500;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero h1,
.page-intro h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(3.3rem, 7vw, 6.5rem);
  font-weight: 820;
  line-height: 0.94;
  letter-spacing: -0.065em;
}
.hero h1 em {
  position: relative;
  z-index: 0;
  font-style: normal;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.05em;
  right: -0.06em;
  bottom: 0.06em;
  height: 0.27em;
  border-radius: 999px;
  background: var(--yellow);
  transform: rotate(-2deg);
}
.hero-lede {
  max-width: 35rem;
  margin: 1.8rem 0 2rem;
  color: #59616c;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}
.hero-visual {
  position: relative;
  min-height: 37rem;
  display: grid;
  place-items: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 29rem;
  aspect-ratio: 1;
  border-radius: 48% 52% 54% 46%;
  background: var(--yellow-bright);
  transform: rotate(12deg);
}
.phone-frame {
  position: relative;
  z-index: 2;
  width: min(18.5rem, 68vw);
  height: 36.5rem;
  padding: 0.55rem;
  overflow: hidden;
  border: 5px solid var(--ink-deep);
  border-radius: 3rem;
  background: var(--ink-deep);
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}
.phone-frame::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 0.7rem;
  width: 5.4rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--ink-deep);
  transform: translateX(-50%);
}
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 2.25rem;
}
.signal-card {
  position: absolute;
  z-index: 4;
  display: grid;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(48, 54, 64, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1rem 2.3rem rgba(32, 37, 45, 0.16);
  backdrop-filter: blur(10px);
}
.signal-card strong {
  font-size: 0.93rem;
}
.signal-card span {
  color: var(--muted);
  font-size: 0.74rem;
}
.signal-card-top {
  top: 15%;
  right: -2%;
}
.signal-card-bottom {
  bottom: 13%;
  left: -5%;
}
.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(48, 54, 64, 0.25);
  border-radius: 50%;
}
.orbit-one {
  width: 31rem;
  height: 18rem;
  transform: rotate(-32deg);
}
.orbit-two {
  width: 26rem;
  height: 32rem;
  transform: rotate(28deg);
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: var(--mist);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.proof-grid p {
  min-height: 7rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 0;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--line);
}
.proof-grid p:first-child {
  border-left: 1px solid var(--line);
}
.proof-grid strong {
  color: var(--ink-deep);
  font-size: 1rem;
}
.proof-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}
.section-heading {
  margin-bottom: 3rem;
}
.section-heading h2,
.trust-panel h2,
.closing-cta h2,
.simple-cta h2,
.contact-panel h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 4rem;
}
.split-heading > p {
  max-width: 29rem;
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 1.08rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-card {
  position: relative;
  min-height: 26rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}
.feature-card h3 {
  max-width: 9ch;
  margin: auto 0 1rem;
  color: var(--ink-deep);
  font-size: 2rem;
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}
.feature-index {
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.feature-card-dark {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}
.feature-card-dark h3 {
  color: white;
}
.feature-card-dark p {
  color: #d5dae1;
}
.feature-card-yellow {
  background: var(--yellow-bright);
  border-color: #e3e952;
}
.feature-card-yellow p {
  color: #515824;
}
.card-mark {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.2rem;
}

.section-dark {
  color: white;
  background: var(--ink-deep);
}
.section-dark .eyebrow {
  color: var(--yellow);
}
.section-dark h2,
.section-dark h3 {
  color: white;
}
.centered-heading {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}
.steps {
  max-width: 57rem;
  margin: 4rem auto 0;
  padding: 0;
  list-style: none;
}
.steps li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  border-top: 1px solid #454c57;
}
.steps li:last-child {
  border-bottom: 1px solid #454c57;
}
.steps li > span {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink-deep);
  background: var(--yellow);
  font-weight: 800;
}
.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
}
.steps p {
  margin: 0;
  color: #bec5ce;
}

.trust-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  padding: clamp(2rem, 6vw, 5rem);
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: linear-gradient(135deg, #f7f8f9, #fff7d8);
}
.trust-copy {
  align-self: end;
}
.trust-copy > p {
  margin: 0 0 2rem;
  color: #525a65;
  font-size: 1.08rem;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink-deep);
  font-weight: 800;
  text-decoration: none;
}
.text-link span {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  transition: transform 0.2s ease;
}
.text-link:hover span {
  transform: translateX(0.2rem);
}
.faq-preview {
  max-width: 57rem;
}
.faq-list {
  margin-bottom: 2rem;
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  color: var(--ink-deep);
  font-size: 1.12rem;
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.2rem;
  top: 1.25rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mist);
  font-size: 1.2rem;
}
.faq-list details[open] summary::after {
  content: "−";
  background: var(--yellow);
}
.faq-list details p {
  max-width: 47rem;
  margin: -0.25rem 0 1.5rem;
  color: var(--muted);
}
.faq-list details a {
  font-weight: 700;
}
.closing-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3rem;
  margin-bottom: 2rem;
  padding: clamp(2.5rem, 6vw, 5rem);
  border-radius: 2rem;
  color: white;
  background: var(--ink);
}
.closing-cta h2 {
  max-width: 13ch;
  color: white;
}
.closing-cta .eyebrow {
  color: var(--yellow);
}
.store-buttons-light .button {
  color: var(--ink-deep);
  background: var(--yellow);
  border-color: var(--yellow);
}
.store-buttons-light .button-ghost {
  color: white;
  background: transparent;
  border-color: #69717c;
}

.page-intro {
  padding-block: clamp(4.5rem, 10vw, 8rem);
  border-bottom: 1px solid var(--line);
}
.page-intro h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 6vw, 5.7rem);
}
.page-intro > p:last-child {
  max-width: 43rem;
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2rem, 7vw, 7rem);
}
.editorial-card {
  min-height: 25rem;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 2.5rem;
  border-radius: 2rem;
}
.editorial-card-yellow {
  background: var(--yellow-bright);
}
.editorial-card h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.055em;
}
.long-copy {
  align-self: center;
}
.long-copy p {
  margin: 0 0 1.5rem;
  color: #505965;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.55;
}
.section-soft {
  background: var(--mist);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.values-grid article {
  padding-top: 1.5rem;
  border-top: 2px solid var(--ink);
}
.values-grid span {
  color: #8d7600;
  font-size: 0.75rem;
  font-weight: 800;
}
.values-grid h2 {
  margin: 2.2rem 0 0.75rem;
  font-size: 1.55rem;
}
.values-grid p {
  margin: 0;
  color: var(--muted);
}
.simple-cta {
  text-align: center;
}
.simple-cta > p {
  color: var(--muted);
}
.simple-cta .store-buttons {
  justify-content: center;
  margin-top: 2rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
}
.contact-panel > div:first-child > p:last-child {
  max-width: 32rem;
  color: var(--muted);
}
.contact-action {
  padding: 2.5rem;
  border-radius: 1.5rem;
  background: var(--yellow-bright);
}
.contact-action > span {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-action > a {
  display: inline-block;
  color: var(--ink-deep);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25em;
}
.contact-action p {
  margin: 2rem 0 0;
  color: #5b602f;
}
.faq-page {
  max-width: 57rem;
}

.legal {
  padding-block: clamp(3rem, 8vw, 6rem);
}
.legal section {
  display: grid;
  grid-template-columns: minmax(12rem, 0.65fr) 1.35fr;
  column-gap: 4rem;
  padding-block: 2rem;
  border-bottom: 1px solid var(--line);
}
.legal h2 {
  grid-row: 1 / span 20;
  margin: 0;
  color: var(--ink-deep);
  font-size: 1.12rem;
  line-height: 1.35;
}
.legal h3 {
  grid-column: 2;
  margin: 0 0 0.25rem;
  color: var(--ink-deep);
  font-size: 1rem;
}
.legal p,
.legal ul {
  grid-column: 2;
  margin: 0 0 1rem;
  color: #565f6a;
}
.legal li + li {
  margin-top: 0.5rem;
}
.legal a {
  font-weight: 700;
}
.legal section:target {
  margin-inline: -1rem;
  padding-inline: 1rem;
  border-radius: 1rem;
  background: #fff8d7;
  scroll-margin-top: 6rem;
}

.offer-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 57rem;
}
.offer-icon img {
  border-radius: 1.35rem;
  box-shadow: 0 0.8rem 2rem rgba(32, 37, 45, 0.18);
}
.offer-panel h2 {
  margin: 0 0 0.8rem;
  color: var(--ink-deep);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
.offer-panel p {
  color: var(--muted);
}
.offer-actions {
  grid-column: 2;
}
.offer-actions > .button {
  width: fit-content;
  min-width: 12rem;
  margin-bottom: 1rem;
}
.offer-actions .store-buttons .button {
  min-height: 3rem;
  min-width: 9rem;
  font-size: 0.86rem;
}

.site-footer {
  margin-top: 4rem;
  padding-top: 4rem;
  color: #dbe0e7;
  background: var(--ink-deep);
}
.site-footer .brand {
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 4rem;
}
.footer-grid h2 {
  margin: 0.65rem 0 1.2rem;
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-grid > div:not(:first-child) a {
  display: block;
  width: fit-content;
  margin: 0.55rem 0;
  color: #c1c7cf;
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-grid a:hover {
  color: white;
}
.footer-note {
  max-width: 20rem;
  color: #aeb6c0;
  font-size: 0.9rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.4rem;
  border-top: 1px solid #3b424c;
  color: #9fa8b3;
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }
  .site-nav {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    top: calc(100% + 0.5rem);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: white;
    box-shadow: var(--shadow);
  }
  .site-nav[data-open="true"] {
    display: flex;
  }
  .site-nav > a:not(.button) {
    padding: 0.8rem;
  }
  .site-nav .button {
    margin-top: 0.5rem;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero h1,
  .hero-lede {
    margin-inline: auto;
  }
  .hero .store-buttons {
    justify-content: center;
  }
  .hero-visual {
    min-height: 34rem;
  }
  .phone-frame {
    height: 32rem;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card:last-child {
    grid-column: 1 / -1;
    min-height: 19rem;
  }
  .trust-panel,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .closing-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .editorial-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    gap: 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 1.5rem, 73rem);
  }
  .header-inner {
    min-height: 4.4rem;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .hero {
    padding-top: 3.5rem;
  }
  .hero h1 {
    font-size: clamp(3.15rem, 16vw, 4.8rem);
  }
  .hero-visual {
    min-height: 31rem;
  }
  .hero-visual::before {
    width: 23rem;
  }
  .phone-frame {
    width: 15rem;
    height: 29rem;
    border-width: 4px;
    border-radius: 2.5rem;
  }
  .phone-frame img {
    border-radius: 1.9rem;
  }
  .orbit {
    display: none;
  }
  .signal-card-top {
    right: 0;
    top: 12%;
  }
  .signal-card-bottom {
    left: 0;
    bottom: 8%;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid p,
  .proof-grid p:first-child {
    min-height: auto;
    padding: 1.1rem 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .proof-grid p:last-child {
    border-bottom: 0;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card,
  .feature-card:last-child {
    grid-column: auto;
    min-height: 21rem;
  }
  .steps li {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
  }
  .steps li > span {
    width: 2.5rem;
    height: 2.5rem;
  }
  .trust-panel {
    padding: 1.5rem;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .editorial-card {
    min-height: 20rem;
  }
  .legal section {
    display: block;
  }
  .legal h2 {
    margin-bottom: 1.25rem;
  }
  .legal h3 {
    margin-top: 1rem;
  }
  .offer-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .offer-icon {
    margin-inline: auto;
  }
  .offer-actions {
    grid-column: 1;
  }
  .offer-actions > .button {
    margin-inline: auto;
  }
  .offer-actions .store-buttons {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.25rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: rise 0.65s ease-out both;
  }
  .hero-visual {
    animation: rise 0.8s 0.08s ease-out both;
  }
  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(1.2rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    /* biome-ignore lint/complexity/noImportantStyles: Reduced-motion overrides must win every component cascade. */
    scroll-behavior: auto !important;
    /* biome-ignore lint/complexity/noImportantStyles: Reduced-motion overrides must win every component cascade. */
    transition-duration: 0.01ms !important;
    /* biome-ignore lint/complexity/noImportantStyles: Reduced-motion overrides must win every component cascade. */
    animation-duration: 0.01ms !important;
    /* biome-ignore lint/complexity/noImportantStyles: Reduced-motion overrides must win every component cascade. */
    animation-iteration-count: 1 !important;
  }
}
