:root {
  color-scheme: light;
  --blue: #2f6db2;
  --blue-deep: #22538b;
  --paper: #f2f0ea;
  --white: #ffffff;
  --ink: #080808;
  --muted: #585853;
  --line-dark: rgba(8, 8, 8, 0.2);
  --line-light: rgba(255, 255, 255, 0.28);
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --section-pad: clamp(5rem, 9vw, 9rem);
  --max: 100rem;
  font-family: "DM Sans", "Microsoft YaHei", system-ui, sans-serif;
  background: var(--ink);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ink);
  font-family: "DM Sans", "Microsoft YaHei", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--white);
  color: var(--blue-deep);
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-180%);
}

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

.announcement {
  position: relative;
  z-index: 50;
  min-height: 2.25rem;
  display: grid;
  place-items: center;
  background: #24231f;
  color: var(--white);
  text-align: center;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.announcement a {
  display: block;
  width: 100%;
  padding: 0.65rem 1rem;
  text-decoration: none;
}

.growth-header {
  position: relative;
  z-index: 40;
  min-height: 4.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1.5rem;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: var(--blue);
  color: var(--white);
}

.growth-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.4rem);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.growth-header nav a,
.growth-brand {
  text-decoration: none;
}

.growth-primary-links {
  justify-self: start;
}

.growth-actions {
  justify-self: end;
}

.growth-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: center;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.growth-brand img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.nav-cta {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border: 1px solid var(--white);
  border-radius: 999px;
}

main {
  width: 100%;
}

.growth-hero {
  position: relative;
  min-height: calc(100svh - 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(25rem, 0.92fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 2rem clamp(2rem, 5vw, 6rem);
  align-items: center;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8.5rem) var(--page-pad) 0;
  background: var(--blue);
  color: var(--white);
  isolation: isolate;
}

.hero-wordmark {
  position: absolute;
  z-index: -1;
  top: 9%;
  right: -2%;
  left: -2%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.13);
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(9rem, 17.5vw, 22rem);
  line-height: 0.84;
  letter-spacing: -0.035em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 46rem;
  padding-bottom: 3rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 clamp(2.5rem, 4vw, 3.75rem);
  color: rgba(255, 255, 255, 0.78);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.67rem;
  line-height: 1.5;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-underline-offset: 0.2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.growth-hero .eyebrow {
  color: var(--white);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 100%;
  margin: 0;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(3.75rem, 5.1vw, 5.8rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.98;
}

.lede {
  max-width: 35rem;
  margin: clamp(2rem, 3.4vw, 2.75rem) 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.75rem;
}

.primary-cta,
.secondary-cta,
.inverse-cta {
  min-height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--white);
  border-radius: 999px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.primary-cta {
  background: var(--white);
  color: var(--ink);
}

.secondary-cta {
  background: transparent;
  color: var(--white);
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: clamp(31rem, 55vw, 44rem);
  align-self: end;
}

.hero-product-frame {
  position: absolute;
  z-index: 1;
  top: 9%;
  left: 1%;
  width: min(74%, 35rem);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: #1e1e1e;
  box-shadow: clamp(0.65rem, 1.2vw, 1.1rem) clamp(0.65rem, 1.2vw, 1.1rem) 0 var(--ink);
  transform: rotate(-5deg);
}

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

.hero-character {
  position: absolute;
  z-index: 3;
  right: -4%;
  bottom: -5%;
  width: auto;
  height: 73%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 1.4rem 1.6rem rgba(0, 0, 0, 0.2));
}

.hero-sticker {
  position: absolute;
  z-index: 4;
  top: 3%;
  right: 0;
  width: 8.6rem;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  margin: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0.5rem 0.5rem 0 var(--ink);
  color: var(--ink);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.hero-sticker span {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-member {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 1.2rem;
  margin: 0;
  color: var(--white);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
}

.trust-list {
  position: relative;
  z-index: 5;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.trust-list li {
  min-height: 5.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  padding: 1rem clamp(0.75rem, 2vw, 1.5rem);
  border-right: 1px solid var(--line-light);
}

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

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.trust-list span {
  color: rgba(255, 255, 255, 0.74);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.63rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.editorial-section,
.related-section,
.discover-section {
  padding: var(--section-pad) var(--page-pad);
  background: var(--paper);
  color: var(--ink);
}

.editorial-heading,
.section-head {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.editorial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(17rem, 0.65fr);
  gap: 2.5rem clamp(4rem, 8vw, 9rem);
  align-items: end;
  margin-bottom: clamp(4.5rem, 7vw, 7.5rem);
}

.editorial-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--blue-deep);
}

.editorial-heading h2,
.section-head h2 {
  max-width: 18ch;
  margin: 0;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: clamp(3.5rem, 5vw, 6.3rem);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.98;
}

.editorial-heading > p:last-child {
  max-width: 27rem;
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.content-grid {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.content-card {
  min-height: 26rem;
  padding: clamp(2rem, 3.2vw, 3.25rem);
  border-right: 1px solid var(--line-dark);
}

.content-card:last-child {
  border-right: 0;
}

.card-number,
.related-number {
  display: block;
  color: var(--blue-deep);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 600;
}

.content-card h3 {
  max-width: 13ch;
  margin: clamp(4.5rem, 7vw, 7.5rem) 0 1.5rem;
  font-size: clamp(1.7rem, 2vw, 2.25rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.content-card p {
  max-width: 39ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.process-section {
  padding: var(--section-pad) var(--page-pad);
  background: var(--ink);
  color: var(--white);
}

.process-section .section-head {
  display: grid;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(0, 1.65fr);
  gap: 3rem;
  align-items: start;
}

.process-section .section-head h2 {
  max-width: 11ch;
}

.process-section .eyebrow {
  color: rgba(255, 255, 255, 0.66);
}

.process-section ol {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(4rem, 7vw, 7rem) auto 3rem;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  list-style: none;
}

.process-section li {
  min-height: 18rem;
  padding: 1.5rem 2rem 2rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.process-section li + li {
  padding-left: 2rem;
}

.process-section li:last-child {
  border-right: 0;
}

.process-section li > span {
  color: #76a8e0;
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-size: 4.8rem;
  line-height: 1;
}

.process-section li strong {
  display: block;
  margin: 4rem 0 1rem;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.process-section li p {
  max-width: 24rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.inverse-cta {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem 7rem;
  padding: var(--section-pad) var(--page-pad);
  background: var(--blue);
  color: var(--white);
}

.faq-section .section-head h2 {
  max-width: 8ch;
}

.faq-list {
  align-self: center;
}

.faq-section details {
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.faq-section details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
}

.faq-section summary {
  position: relative;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  padding: 1rem 3rem 1rem 0;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 600;
  list-style: none;
}

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

.faq-section summary::after {
  position: absolute;
  right: 0;
  content: "+";
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 1.5rem;
  font-weight: 500;
}

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

.faq-section details p {
  max-width: 48rem;
  margin: 0;
  padding: 0 3rem 1.5rem 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.related-section .section-head,
.discover-section .section-head {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.related-section .eyebrow,
.discover-section .eyebrow {
  color: var(--blue-deep);
}

.related-grid,
.discover-grid {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto;
}

.related-grid a,
.discover-card {
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  border: 2px solid var(--ink);
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0.55rem 0.55rem 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.related-grid a:nth-child(2),
.discover-card:nth-child(3n + 2) {
  background: var(--white);
  color: var(--ink);
}

.related-grid a:nth-child(3),
.discover-card:nth-child(3n) {
  background: var(--ink);
  color: var(--white);
}

.related-grid .related-number,
.discover-card .related-number {
  color: currentColor;
  opacity: 0.72;
}

.related-grid strong,
.discover-card strong {
  display: block;
  margin: clamp(3rem, 6vw, 5rem) 0 1rem;
  font-size: clamp(1.5rem, 1.9vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.related-grid a > span:not(.related-number),
.discover-card p {
  display: block;
  margin: 0;
  opacity: 0.76;
  max-width: 42ch;
  line-height: 1.72;
}

.related-grid b,
.discover-card b {
  margin-top: auto;
  padding-top: 2rem;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.discover-section {
  border-top: 2px solid var(--ink);
}

.discover-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.discover-card {
  min-height: 22rem;
}

.growth-footer {
  min-height: 7rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  padding: 2rem var(--page-pad);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 0.67rem;
  text-transform: uppercase;
}

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

.primary-cta:hover,
.secondary-cta:hover,
.inverse-cta:hover,
.nav-cta:hover {
  transform: translateY(-0.15rem);
}

.secondary-cta:hover,
.nav-cta:hover {
  background: var(--white);
  color: var(--ink);
}

.related-grid a:hover,
.discover-card:hover {
  box-shadow: 0.2rem 0.2rem 0 var(--ink);
  transform: translate(0.35rem, 0.35rem);
}

.growth-header a:hover,
.growth-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.editorial-section a:focus-visible,
.related-section a:focus-visible,
.discover-section a:focus-visible {
  outline-color: var(--blue-deep);
}

@media (max-width: 1050px) {
  .growth-primary-links a:nth-child(3),
  .growth-actions > a:not(.nav-cta) {
    display: none;
  }

  .growth-hero {
    grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.8fr);
    gap: 2rem;
  }

  h1 {
    font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  }

  .hero-product-frame {
    width: 78%;
  }

  .editorial-heading,
  .faq-section {
    gap: 3rem;
  }
}

@media (max-width: 820px) {
  .growth-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .growth-primary-links {
    visibility: hidden;
  }

  .growth-primary-links a {
    display: none;
  }

  .growth-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 4rem;
  }

  .hero-copy {
    max-width: 42rem;
    padding-bottom: 0;
  }

  .breadcrumbs {
    margin-bottom: 2.5rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.35rem, 9vw, 5.25rem);
    line-height: 0.99;
  }

  .hero-visual {
    min-height: 35rem;
  }

  .hero-product-frame {
    top: 4%;
    left: 4%;
    width: min(72%, 30rem);
  }

  .hero-character {
    right: 4%;
    height: 78%;
  }

  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-list li:nth-child(2) {
    border-right: 0;
  }

  .trust-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .editorial-heading,
  .process-section .section-head,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .editorial-heading .eyebrow {
    margin-bottom: 0;
  }

  .editorial-heading h2,
  .section-head h2 {
    font-size: clamp(3.2rem, 8vw, 4.8rem);
  }

  .content-grid,
  .process-section ol,
  .related-grid,
  .discover-grid {
    grid-template-columns: 1fr;
  }

  .content-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

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

  .content-card h3 {
    margin-top: 2.5rem;
  }

  .process-section li,
  .process-section li + li {
    min-height: 0;
    padding: 1.5rem 0 2rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .process-section li strong {
    margin-top: 1.5rem;
  }

  .faq-list {
    width: 100%;
  }

  .related-grid a,
  .discover-card {
    min-height: 17rem;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 0.9rem;
    --section-pad: 4.5rem;
  }

  .announcement {
    min-height: 2rem;
    font-size: 0.56rem;
    letter-spacing: 0;
  }

  .announcement a {
    padding: 0.55rem 0.5rem;
  }

  .growth-header {
    min-height: 4rem;
    padding-inline: 0.75rem;
  }

  .growth-brand {
    gap: 0.4rem;
    font-size: 0.72rem;
  }

  .growth-brand img {
    width: 1.85rem;
    height: 1.85rem;
  }

  .growth-actions {
    gap: 0;
  }

  .nav-cta {
    min-height: 2.75rem;
    padding-inline: 0.8rem;
    font-size: 0.6rem;
  }

  .growth-hero {
    gap: 1rem;
    padding-top: 3rem;
  }

  .hero-wordmark {
    top: 12%;
    font-size: 29vw;
  }

  .breadcrumbs span:last-child {
    display: none;
  }

  .hero-copy .eyebrow {
    margin-bottom: 0.75rem;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 13.5vw, 4.2rem);
    letter-spacing: 0.005em;
    line-height: 1;
  }

  .lede {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-cta,
  .secondary-cta,
  .inverse-cta {
    width: 100%;
    min-height: 3.25rem;
  }

  .hero-visual {
    min-height: 27rem;
  }

  .hero-product-frame {
    top: 8%;
    left: 1%;
    width: 78%;
    box-shadow: 0.6rem 0.6rem 0 var(--ink);
  }

  .hero-character {
    right: -8%;
    bottom: -2%;
    height: 72%;
  }

  .hero-sticker {
    top: 2%;
    right: 0.25rem;
    width: 6.5rem;
    font-size: 0.57rem;
    box-shadow: 0.35rem 0.35rem 0 var(--ink);
  }

  .hero-sticker span {
    font-size: 1.25rem;
  }

  .hero-member {
    bottom: 0.6rem;
    font-size: 0.58rem;
  }

  .trust-list li {
    min-height: 4.8rem;
    padding: 0.85rem;
  }

  .trust-list strong {
    font-size: 0.84rem;
  }

  .trust-list span {
    font-size: 0.55rem;
  }

  .editorial-heading {
    margin-bottom: 3rem;
  }

  .editorial-heading h2,
  .section-head h2 {
    max-width: 100%;
    font-size: clamp(2.9rem, 11.5vw, 3.8rem);
    line-height: 1;
  }

  .editorial-heading > p:last-child {
    font-size: 1rem;
  }

  .content-card {
    padding: 1.35rem 0.2rem 2.25rem;
  }

  .content-card h3 {
    font-size: 1.7rem;
    line-height: 1.12;
  }

  .process-section li > span {
    font-size: 3.8rem;
  }

  .faq-section {
    gap: 2.5rem;
  }

  .faq-section summary {
    min-height: 4.25rem;
    font-size: 1rem;
  }

  .related-grid,
  .discover-grid {
    gap: 0.8rem;
  }

  .related-grid a,
  .discover-card {
    min-height: 16rem;
    padding: 1.25rem;
    box-shadow: 0.4rem 0.4rem 0 var(--ink);
  }

  .related-grid strong,
  .discover-card strong {
    margin-top: 2.75rem;
    font-size: 1.8rem;
  }

  .growth-footer {
    padding-block: 2rem 3rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
