:root {
  --ink: #111827;
  --ink-soft: #3f4b5f;
  --paper: #fbfcfa;
  --white: #ffffff;
  --line: #d8dedb;
  --teal: #0a7f6b;
  --teal-dark: #075d50;
  --mint: #dff4ec;
  --sky: #dff1fb;
  --sun: #f3bd4f;
  --coral: #e25d4f;
  --nav-height: 76px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-height);
  padding: 12px max(24px, calc((100% - 1240px) / 2));
  background: rgba(251, 252, 250, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 780;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--teal);
  border-radius: 6px;
  color: var(--white);
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 650;
}

.nav a {
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--teal-dark);
}

.nav .nav-cta {
  padding: 9px 14px;
  border: 1px solid var(--ink);
  border-radius: 6px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 116px);
  overflow: hidden;
  background: #eef2ef;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 120px;
}

.hero-copy::before {
  position: absolute;
  inset: 42px auto 42px -100vw;
  z-index: -1;
  width: calc(100vw + 760px);
  background: rgba(238, 242, 239, 0.93);
  content: "";
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: 78px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 12px;
  font-size: 32px;
  font-weight: 720;
  line-height: 1.16;
}

.hero-support {
  max-width: 550px;
  margin: 0 0 34px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.nav a:focus-visible,
.closing-links a:focus-visible,
.site-footer a:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 3px;
}

.button-primary {
  background: var(--teal);
  color: var(--white);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--teal-dark);
}

.button img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-screen {
  position: absolute;
  width: 720px;
  border: 1px solid #c8d1cd;
  border-radius: 6px;
  box-shadow: 0 24px 65px rgba(17, 24, 39, 0.18);
}

.hero-screen-one {
  top: 9%;
  right: -180px;
  transform: rotate(2deg);
}

.hero-screen-two {
  top: 43%;
  right: 130px;
  transform: rotate(-2deg);
}

.hero-screen-three {
  top: 70%;
  right: -210px;
  transform: rotate(1deg);
}

.outcomes {
  position: relative;
  z-index: 4;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.outcomes-inner {
  display: grid;
  width: min(1240px, calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
}

.outcomes p {
  margin: 0;
  padding: 16px 28px;
  border-right: 1px solid var(--line);
  font-weight: 720;
}

.outcomes p:first-child {
  padding-left: 0;
}

.outcomes p:last-child {
  border-right: 0;
}

.outcomes span {
  margin-right: 10px;
  color: var(--coral);
  font-size: 12px;
}

.apps-intro {
  padding: 110px 24px 80px;
  background: var(--paper);
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.closing h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.app {
  padding: 92px 24px;
  border-top: 1px solid var(--line);
}

.app-carryleads {
  background: #edf7f4;
}

.app-munafa {
  background: #fff6e8;
}

.app-dhandha {
  background: #edf3f7;
}

.app-inner {
  display: grid;
  width: min(1240px, 100%);
  margin: 0 auto;
  align-items: center;
  gap: 68px;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.app-inner-reverse .app-copy {
  order: 2;
}

.app-inner-reverse .product-visual {
  order: 1;
}

.app-identity {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-identity > img {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 8px;
}

.app-kicker {
  margin: 0 0 2px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.app-identity h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: 0;
}

.app-statement {
  max-width: 500px;
  margin: 28px 0 22px;
  font-size: 25px;
  font-weight: 720;
  line-height: 1.28;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin: 0;
  padding: 13px 0 13px 26px;
  border-top: 1px solid rgba(17, 24, 39, 0.16);
  color: var(--ink-soft);
}

.feature-list li:last-child {
  border-bottom: 1px solid rgba(17, 24, 39, 0.16);
}

.feature-list li::before {
  position: absolute;
  top: 23px;
  left: 2px;
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  content: "";
}

.app-actions {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-url {
  color: var(--ink-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.product-visual {
  margin: 0;
}

.product-visual > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.14);
}

.product-visual figcaption {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 13px;
}

.approach {
  padding: 110px 24px;
  background: var(--ink);
  color: var(--white);
}

.approach-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.section-heading-light .eyebrow {
  color: #80dbc5;
}

.principles {
  display: grid;
  margin-top: 72px;
  border-top: 1px solid #485162;
  border-bottom: 1px solid #485162;
  grid-template-columns: repeat(3, 1fr);
}

.principles > div {
  min-height: 210px;
  padding: 34px;
  border-right: 1px solid #485162;
}

.principles > div:first-child {
  padding-left: 0;
}

.principles > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.principles span {
  color: var(--sun);
  font-size: 12px;
  font-weight: 780;
}

.principles h3 {
  margin: 40px 0 8px;
  font-size: 24px;
  letter-spacing: 0;
}

.principles p {
  margin: 0;
  color: #cdd3de;
}

.closing {
  padding: 110px 24px;
  text-align: center;
}

.closing h2 {
  max-width: 780px;
  margin: 0 auto;
}

.closing-links {
  display: flex;
  width: min(1040px, 100%);
  margin: 50px auto 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.closing-links a {
  flex: 1 1 0;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  color: var(--teal-dark);
  font-weight: 720;
  text-decoration: none;
}

.closing-links a:last-child {
  border-right: 0;
}

.closing-links a:hover {
  background: var(--mint);
}

.site-footer {
  display: grid;
  padding: 52px max(24px, calc((100% - 1240px) / 2));
  align-items: center;
  gap: 20px;
  background: #e6ebe8;
  border-top: 1px solid var(--line);
  grid-template-columns: auto 1fr auto;
}

.site-footer p {
  margin: 0;
  color: var(--ink-soft);
}

.site-footer > a:not(.brand) {
  color: var(--teal-dark);
  font-weight: 700;
}

.site-footer .copyright {
  grid-column: 1 / -1;
  font-size: 12px;
}

.breadcrumbs {
  display: flex;
  width: min(1240px, calc(100% - 48px));
  min-height: 52px;
  margin: 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.breadcrumbs span[aria-hidden="true"] {
  color: #8b948f;
}

.page-hero {
  display: grid;
  min-height: 600px;
  padding: 72px max(24px, calc((100% - 1240px) / 2));
  align-items: center;
  gap: 68px;
  background: #edf2ef;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.page-hero > div {
  max-width: 610px;
}

.page-hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero > div > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.page-hero > img,
.page-hero > .product-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.18);
  border-radius: 6px;
  box-shadow: 0 22px 50px rgba(17, 24, 39, 0.14);
}

.page-hero-apps {
  background: #edf7f4;
}

.guides-hero {
  background: #fff6e8;
}

.app-detail-hero h2 {
  margin: 34px 0 0;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

.app-identity.large > img {
  width: 72px;
  height: 72px;
}

.app-identity.large h1 {
  font-size: 48px;
}

.price-note {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.content-band,
.steps-band,
.related-band,
.home-guides {
  padding: 96px 24px;
}

.content-band {
  background: var(--paper);
}

.steps-band {
  background: #eaf2f6;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.related-band,
.home-guides {
  background: #f4f6f3;
  border-top: 1px solid var(--line);
}

.content-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading.align-left > p:last-child {
  margin-left: 0;
}

.content-grid {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.content-grid.three-up {
  grid-template-columns: repeat(3, 1fr);
}

.content-grid.two-up {
  grid-template-columns: repeat(2, 1fr);
}

.content-card {
  min-width: 0;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.content-grid.three-up .content-card:last-child,
.content-grid.two-up .content-card:nth-child(even) {
  border-right: 0;
}

.content-grid.two-up .content-card:nth-child(n + 3) {
  border-top: 1px solid var(--line);
}

.content-card h2 {
  margin: 12px 0;
  font-size: 25px;
  line-height: 1.24;
  letter-spacing: 0;
}

.app-summary h2 {
  margin: 0;
}

.content-card > p:not(.app-kicker) {
  color: var(--ink-soft);
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 750;
  text-underline-offset: 4px;
}

.decision-band {
  padding: 96px 24px;
  background: var(--ink);
  color: var(--white);
}

.decision-band .eyebrow {
  color: #80dbc5;
}

.split-copy {
  display: grid;
  align-items: start;
  gap: 72px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.split-copy h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.16;
  letter-spacing: 0;
}

.split-copy > p,
.split-copy > div > p:not(.eyebrow) {
  margin: 0;
  color: inherit;
  font-size: 19px;
}

.decision-band .split-copy > div:last-child > p {
  color: #cdd3de;
}

.light-link {
  color: #80dbc5;
}

.feature-list-large li {
  padding-top: 17px;
  padding-bottom: 17px;
  font-size: 18px;
}

.feature-list-large li::before {
  top: 29px;
}

.steps-grid {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid #bfcbd1;
  border-bottom: 1px solid #bfcbd1;
  grid-template-columns: repeat(3, 1fr);
}

.steps-grid article {
  min-height: 260px;
  padding: 34px;
  border-right: 1px solid #bfcbd1;
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 780;
}

.steps-grid h3 {
  margin: 52px 0 10px;
  font-size: 24px;
  letter-spacing: 0;
}

.steps-grid p {
  margin: 0;
  color: var(--ink-soft);
}

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

.large-copy {
  font-size: 21px !important;
  line-height: 1.6;
}

.guide-link-list {
  display: grid;
  margin: 54px 0 20px;
  border-top: 1px solid var(--line);
}

.guide-link-list a {
  display: grid;
  padding: 19px 0;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 19px;
  font-weight: 720;
  grid-template-columns: 190px 1fr;
  text-decoration: none;
}

.guide-link-list a:hover {
  color: var(--teal-dark);
}

.guide-link-list span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.guide-article {
  padding: 84px 24px 110px;
}

.article-header,
.article-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.article-header {
  max-width: 900px;
  text-align: center;
}

.article-header h1 {
  margin: 0;
  font-size: 54px;
  line-height: 1.08;
  letter-spacing: 0;
}

.article-header > p:not(.eyebrow) {
  margin: 26px auto 16px;
  color: var(--ink-soft);
  font-size: 20px;
}

.article-header > span {
  color: #667085;
  font-size: 13px;
}

.article-layout {
  display: grid;
  margin-top: 72px;
  align-items: start;
  gap: 86px;
  grid-template-columns: minmax(0, 1fr) 310px;
}

.article-body section {
  padding: 0 0 38px;
  border-bottom: 1px solid var(--line);
}

.article-body section + section {
  padding-top: 38px;
}

.article-body h2 {
  margin: 0 0 18px;
  font-size: 31px;
  line-height: 1.2;
  letter-spacing: 0;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.article-body ul {
  margin: 0;
  padding-left: 24px;
}

.article-aside {
  position: sticky;
  top: 108px;
  padding: 28px 0;
  border-top: 3px solid var(--teal);
  border-bottom: 1px solid var(--line);
}

.article-aside > img {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-aside h2 {
  margin: 0;
  font-size: 27px;
  letter-spacing: 0;
}

.article-aside > p:not(.app-kicker) {
  color: var(--ink-soft);
}

.not-found {
  min-height: 65vh;
  padding: 110px 24px;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  font-size: 58px;
  letter-spacing: 0;
}

.not-found .app-actions {
  justify-content: center;
}

@media (max-width: 980px) {
  .hero {
    min-height: 760px;
  }

  .hero-copy {
    padding-top: 90px;
  }

  .hero-copy::before {
    width: calc(100vw + 620px);
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero-screen {
    width: 620px;
  }

  .hero-screen-one {
    right: -300px;
  }

  .hero-screen-two {
    right: -50px;
  }

  .hero-screen-three {
    right: -330px;
  }

  .app-inner {
    gap: 44px;
    grid-template-columns: 1fr;
  }

  .app-inner-reverse .app-copy,
  .app-inner-reverse .product-visual {
    order: initial;
  }

  .app-copy {
    max-width: 720px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer > p:first-of-type {
    grid-column: 1 / -1;
  }

  .page-hero {
    min-height: 0;
    gap: 44px;
    grid-template-columns: 1fr;
  }

  .page-hero > div {
    max-width: 760px;
  }

  .content-grid.three-up {
    grid-template-columns: 1fr;
  }

  .content-grid.three-up .content-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .content-grid.three-up .content-card:last-child {
    border-bottom: 0;
  }

  .article-layout {
    gap: 54px;
    grid-template-columns: minmax(0, 1fr) 270px;
  }
}

@media (max-width: 680px) {
  :root {
    --nav-height: 66px;
  }

  .site-header {
    padding: 10px 18px;
  }

  .nav {
    gap: 14px;
    font-size: 13px;
  }

  .nav .nav-cta {
    display: none;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: calc(100svh - 132px);
  }

  .hero-copy {
    width: calc(100% - 36px);
    padding: 64px 0 250px;
  }

  .hero-copy::before {
    inset: 24px -18px auto -18px;
    width: auto;
    height: 405px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 27px;
  }

  .hero-support {
    font-size: 17px;
  }

  .hero-screen {
    width: 430px;
  }

  .hero-screen-one {
    top: auto;
    right: -170px;
    bottom: 175px;
  }

  .hero-screen-two {
    top: auto;
    right: -20px;
    bottom: 25px;
  }

  .hero-screen-three {
    display: none;
  }

  .outcomes-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .outcomes p,
  .outcomes p:first-child {
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .outcomes p:last-child {
    border-bottom: 0;
  }

  .apps-intro,
  .app,
  .approach,
  .closing {
    padding-right: 18px;
    padding-left: 18px;
  }

  .apps-intro {
    padding-top: 78px;
    padding-bottom: 56px;
  }

  .section-heading h2,
  .closing h2 {
    font-size: 36px;
  }

  .app {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .app-identity > img {
    width: 54px;
    height: 54px;
  }

  .app-identity h2 {
    font-size: 30px;
  }

  .app-statement {
    font-size: 22px;
  }

  .app-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-visual > img {
    object-fit: contain;
  }

  .approach {
    padding-top: 78px;
    padding-bottom: 78px;
  }

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

  .principles > div,
  .principles > div:first-child,
  .principles > div:last-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid #485162;
  }

  .principles > div:last-child {
    border-bottom: 0;
  }

  .principles h3 {
    margin-top: 20px;
  }

  .closing {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .closing-links {
    flex-direction: column;
  }

  .closing-links a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .closing-links a:last-child {
    border-bottom: 0;
  }

  .site-footer {
    padding: 44px 18px;
    grid-template-columns: 1fr;
  }

  .site-footer > p:first-of-type,
  .site-footer .copyright {
    grid-column: auto;
  }

  .breadcrumbs {
    width: calc(100% - 36px);
    overflow: hidden;
    white-space: nowrap;
  }

  .breadcrumbs span[aria-current="page"] {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .page-hero {
    padding: 54px 18px;
  }

  .page-hero h1,
  .article-header h1 {
    font-size: 40px;
  }

  .app-detail-hero h2 {
    font-size: 32px;
  }

  .app-identity.large h1 {
    font-size: 38px;
  }

  .content-band,
  .steps-band,
  .related-band,
  .home-guides,
  .decision-band {
    padding: 72px 18px;
  }

  .content-grid.two-up,
  .split-copy,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .content-grid.two-up .content-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .content-grid.two-up .content-card:last-child {
    border-bottom: 0;
  }

  .content-card,
  .steps-grid article {
    padding: 28px 0;
  }

  .steps-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #bfcbd1;
  }

  .steps-grid article:last-child {
    border-bottom: 0;
  }

  .steps-grid h3 {
    margin-top: 22px;
  }

  .split-copy {
    gap: 32px;
  }

  .split-copy h2 {
    font-size: 33px;
  }

  .guide-link-list a {
    gap: 5px;
    grid-template-columns: 1fr;
  }

  .guide-article {
    padding: 64px 18px 78px;
  }

  .article-layout {
    margin-top: 54px;
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .article-body h2 {
    font-size: 27px;
  }

  .article-body p,
  .article-body li {
    font-size: 17px;
  }
}

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

  .button {
    transition: none;
  }
}
