@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/SpaceGrotesk.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --espresso: #24150f;
  --espresso-soft: #382319;
  --ink: #191310;
  --bone: #f4ecdf;
  --bone-deep: #e8dbc8;
  --cream: #fffaf1;
  --papaya: #ff7048;
  --papaya-dark: #e94f2b;
  --green: #bed177;
  --green-dark: #315039;
  --line: rgba(36, 21, 15, 0.16);
  --shadow: 0 24px 70px rgba(48, 27, 17, 0.16);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--cream);
  background: var(--espresso);
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--papaya);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--cream);
  background: var(--espresso);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(36, 21, 15, 0.1);
  background: rgba(255, 250, 241, 0.9);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  color: var(--espresso);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
}

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

.site-nav a:not(.button) {
  color: var(--espresso);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:not(.button):hover {
  color: var(--papaya-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  color: var(--espresso);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.72rem 1.25rem;
  gap: 8px;
  color: var(--cream);
  background: var(--espresso);
  border: 1px solid var(--espresso);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--espresso-soft);
  box-shadow: 0 10px 28px rgba(36, 21, 15, 0.2);
  transform: translateY(-2px);
}

.button--papaya {
  color: var(--espresso);
  background: var(--papaya);
  border-color: var(--papaya);
}

.button--papaya:hover {
  background: #ff835f;
}

.button--light {
  color: var(--espresso);
  background: var(--cream);
  border-color: var(--cream);
}

.button--outline {
  color: var(--espresso);
  background: transparent;
  border-color: rgba(36, 21, 15, 0.42);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  gap: 8px;
  color: var(--papaya-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--espresso);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7.5vw, 7rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.lede {
  max-width: 680px;
  color: #5d4c43;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.55;
}

.hero {
  padding: 28px 0 0;
}

.hero-card {
  position: relative;
  min-height: min(760px, calc(100vh - 112px));
  overflow: hidden;
  color: var(--cream);
  background: #16100d;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 450ms ease, visibility 450ms ease;
}

.hero-panel.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(21, 13, 9, 0.96) 0%, rgba(21, 13, 9, 0.72) 36%, rgba(21, 13, 9, 0.08) 76%), linear-gradient(0deg, rgba(21, 13, 9, 0.48), transparent 45%);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(650px, 62%);
  min-height: inherit;
  padding: clamp(44px, 7vw, 92px);
}

.hero-content h1,
.hero-content .eyebrow {
  color: var(--cream);
}

.hero-content h1 {
  font-size: clamp(3.2rem, 7.1vw, 6.8rem);
}

.hero-content .lede {
  color: rgba(255, 250, 241, 0.8);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
  gap: 12px;
}

.hero-switcher {
  position: absolute;
  z-index: 4;
  right: 24px;
  bottom: 24px;
  display: flex;
  padding: 5px;
  background: rgba(255, 250, 241, 0.12);
  border: 1px solid rgba(255, 250, 241, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.hero-switcher button {
  min-width: 108px;
  padding: 10px 18px;
  color: var(--cream);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 700;
  cursor: pointer;
}

.hero-switcher button[aria-selected="true"] {
  color: var(--espresso);
  background: var(--cream);
}

.trust-strip {
  padding: 24px 0;
}

.trust-list {
  display: grid;
  margin: 0;
  padding: 22px 28px;
  grid-template-columns: repeat(4, 1fr);
  color: var(--espresso);
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 18px;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 16px;
  border-right: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.trust-list li:last-child {
  border-right: 0;
}

.section {
  padding: clamp(82px, 11vw, 148px) 0;
}

.section--tight {
  padding: 72px 0;
}

.section--bone {
  background: var(--bone);
}

.section--espresso {
  color: rgba(255, 250, 241, 0.75);
  background: var(--espresso);
}

.section--espresso h2,
.section--espresso h3,
.section--espresso .eyebrow {
  color: var(--cream);
}

.section-head {
  display: grid;
  align-items: end;
  margin-bottom: 54px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 70px;
}

.section-head h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.section-head p {
  margin-bottom: 4px;
  color: #6a574b;
}

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

.feature-card,
.guide-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 30px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.feature-card:nth-child(2) {
  background: var(--papaya);
}

.feature-card:nth-child(3) {
  background: var(--green);
}

.card-number {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 70px;
  place-items: center;
  color: var(--cream);
  background: var(--espresso);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}

.feature-card p,
.guide-card p {
  margin-bottom: 0;
  color: #5c4b41;
}

.how-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(44px, 8vw, 100px);
}

.phone-stage {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--green);
  border-radius: var(--radius-lg);
}

.phone-shell {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(310px, 67%);
  aspect-ratio: 0.49;
  padding: 10px;
  background: #14100e;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 46px;
  box-shadow: 0 36px 70px rgba(36, 21, 15, 0.3);
  transform: translate(-50%, -50%) rotate(5deg);
}

.phone-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 20px 22px;
  color: var(--cream);
  background: var(--espresso);
  border-radius: 37px;
}

.phone-notch {
  width: 76px;
  height: 20px;
  margin: -19px auto 34px;
  background: #090706;
  border-radius: 999px;
}

.phone-label {
  color: rgba(255, 250, 241, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-title {
  margin: 4px 0 18px;
  color: var(--cream);
  font-size: 1.65rem;
  font-weight: 650;
  letter-spacing: -0.05em;
}

.phone-lane {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: linear-gradient(#71904e, #425d34);
  border-radius: 18px;
}

.phone-lane::before {
  position: absolute;
  top: 13%;
  left: 50%;
  width: 2px;
  height: 70%;
  content: "";
  background: rgba(255, 255, 255, 0.85);
  transform: rotate(-7deg);
  transform-origin: bottom;
}

.phone-lane::after {
  position: absolute;
  top: 9%;
  left: calc(50% - 8px);
  width: 16px;
  height: 16px;
  content: "";
  background: #0d0d0c;
  border: 4px solid var(--cream);
  border-radius: 50%;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 0.72rem;
  font-weight: 600;
}

.steps {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding: 24px 0 24px 64px;
  border-top: 1px solid var(--line);
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 24px;
  left: 0;
  display: grid;
  width: 38px;
  height: 38px;
  content: counter(steps, decimal-leading-zero);
  place-items: center;
  color: var(--cream);
  background: var(--espresso);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
}

.steps strong {
  display: block;
  margin-bottom: 2px;
  color: var(--espresso);
}

.steps span {
  color: #6a574b;
}

.environment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.environment-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.environment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.environment-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(25, 15, 10, 0.9), rgba(25, 15, 10, 0.02) 66%);
}

.environment-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
  color: rgba(255, 250, 241, 0.8);
}

.environment-copy h3 {
  margin-bottom: 6px;
  color: var(--cream);
  font-size: 2rem;
}

.guide-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.guide-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.guide-card .eyebrow {
  margin-bottom: auto;
}

.guide-card .arrow {
  display: inline-block;
  margin-top: 22px;
  color: var(--papaya-dark);
  font-weight: 700;
}

.guide-card--dark {
  background: var(--espresso);
}

.guide-card--dark h3,
.guide-card--dark p,
.guide-card--dark .eyebrow,
.guide-card--dark .arrow {
  color: var(--cream);
}

.guide-card--papaya {
  background: var(--papaya);
}

.guide-card--papaya .eyebrow,
.guide-card--papaya .arrow {
  color: var(--espresso);
}

.faq-list {
  max-width: 880px;
  margin: 48px auto 0;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--espresso);
  font-size: 1.15rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 10px;
  content: "+";
  color: var(--papaya-dark);
  font-size: 1.7rem;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  padding: 0 48px 24px 0;
  color: #604e43;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 8vw, 92px);
  color: var(--cream);
  background: var(--espresso);
  border-radius: var(--radius-lg);
}

.cta-band::after {
  position: absolute;
  top: -90px;
  right: -60px;
  width: 340px;
  height: 340px;
  content: "";
  background: var(--papaya);
  border-radius: 50%;
  opacity: 0.85;
}

.cta-band > * {
  position: relative;
  z-index: 2;
}

.cta-band h2 {
  max-width: 750px;
  color: var(--cream);
}

.cta-band p {
  max-width: 590px;
  color: rgba(255, 250, 241, 0.74);
}

.site-footer {
  padding: 74px 0 34px;
  color: rgba(255, 250, 241, 0.7);
  background: #180e0a;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.4fr) repeat(2, minmax(150px, 0.6fr));
  gap: 60px;
}

.site-footer .brand {
  margin-bottom: 18px;
  color: var(--cream);
}

.site-footer p {
  max-width: 420px;
}

.footer-title {
  margin-bottom: 16px;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--papaya);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  gap: 28px;
  border-top: 1px solid rgba(255, 250, 241, 0.14);
  font-size: 0.82rem;
}

/* Guide pages */
.article-hero {
  padding: clamp(70px, 11vw, 132px) 0 76px;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  max-width: 970px;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.article-hero .lede {
  max-width: 760px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 42px;
  padding: 0;
  gap: 8px;
  color: #6b594e;
  font-size: 0.82rem;
  font-weight: 600;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  color: #a39184;
}

.breadcrumbs a {
  text-decoration: none;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 12px 28px;
  color: #68564b;
  font-size: 0.86rem;
  font-weight: 600;
}

.article-layout {
  display: grid;
  align-items: start;
  padding: 76px 0 110px;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(50px, 9vw, 120px);
}

.article-toc {
  position: sticky;
  top: 108px;
  padding: 20px;
  background: var(--bone);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.article-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--espresso);
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.article-toc ol {
  margin: 0;
  padding-left: 20px;
  color: #604e43;
  font-size: 0.86rem;
}

.article-toc li + li {
  margin-top: 8px;
}

.article-toc a {
  text-decoration: none;
}

.article-body {
  min-width: 0;
}

.article-body > p:first-child {
  color: var(--espresso);
  font-size: 1.3rem;
  line-height: 1.55;
}

.article-body h2 {
  margin-top: 70px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.article-body h3 {
  margin-top: 38px;
  font-size: 1.55rem;
}

.article-body p,
.article-body li {
  color: #4f4037;
}

.article-body strong {
  color: var(--espresso);
}

.article-body li + li {
  margin-top: 9px;
}

.article-body blockquote {
  margin: 42px 0;
  padding: 26px 30px;
  color: var(--espresso);
  background: var(--green);
  border-radius: var(--radius-sm);
  font-size: 1.18rem;
  font-weight: 600;
}

.callout {
  margin: 42px 0;
  padding: 28px 30px;
  background: var(--bone);
  border-left: 5px solid var(--papaya);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.callout h3 {
  margin-top: 0;
}

.drill {
  margin: 34px 0;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.drill h3 {
  margin-top: 0;
}

.drill-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: var(--espresso);
  background: var(--green);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.comparison th,
.comparison td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  color: var(--espresso);
  background: var(--bone);
}

.article-faq {
  margin-top: 76px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.article-faq h2 {
  border: 0;
}

.related-guides {
  padding: 80px 0;
  background: var(--bone);
}

.related-guides h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.legal-page {
  padding: 90px 0 120px;
}

.legal-page .article-body {
  max-width: 780px;
}

.legal-page h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    margin: 0;
    padding: 24px 20px 28px;
    gap: 18px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 30px rgba(36, 21, 15, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .button {
    align-self: flex-start;
  }

  .hero-card {
    min-height: 740px;
  }

  .hero-content {
    justify-content: flex-end;
    width: 100%;
    padding: 40px 34px 105px;
  }

  .hero-panel::after {
    background: linear-gradient(0deg, rgba(21, 13, 9, 0.98) 0%, rgba(21, 13, 9, 0.77) 42%, rgba(21, 13, 9, 0.1) 85%);
  }

  .hero-panel img {
    object-position: 68% center;
  }

  .section-head,
  .how-grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 20px;
  }

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

  .article-toc {
    position: static;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    padding-top: 14px;
  }

  .hero-card,
  .cta-band,
  .environment-card,
  .phone-stage {
    border-radius: 24px;
  }

  .hero-card {
    min-height: 690px;
  }

  .hero-content {
    padding: 30px 24px 110px;
  }

  .hero-content h1 {
    font-size: clamp(3.05rem, 15vw, 4.8rem);
  }

  .hero-switcher {
    right: 50%;
    bottom: 24px;
    transform: translateX(50%);
  }

  .hero-switcher button {
    min-width: 98px;
    padding-inline: 14px;
  }

  .trust-list,
  .grid-3,
  .environment-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-list li {
    padding: 10px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-list li:last-child {
    border-bottom: 0;
  }

  .feature-card,
  .guide-card {
    min-height: 280px;
  }

  .environment-card {
    min-height: 460px;
  }

  .phone-stage {
    min-height: 540px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-hero {
    padding-top: 60px;
  }

  .article-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .article-layout {
    padding-top: 54px;
    gap: 40px;
  }

  .comparison {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

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