:root {
  --leaf: #2f7d32;
  --leaf-dark: #174b2b;
  --mint: #e8f6ea;
  --lime: #b6df5d;
  --sun: #f3c85a;
  --ink: #17211b;
  --muted: #5d6c62;
  --line: #d8e5d6;
  --paper: #fbfdf8;
  --white: #ffffff;
  --soil: #7c5a38;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(82, 210, 115, 0.34);
  color: #ffffff;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

body.download-site {
  --leaf: #52d273;
  --leaf-dark: #07140d;
  --mint: #101f17;
  --lime: #9cff6b;
  --sun: #ffd166;
  --ink: #edf7ee;
  --muted: #a9b8ad;
  --line: rgba(130, 255, 166, 0.18);
  --paper: #070b09;
  --white: #101713;
  background:
    radial-gradient(circle at 18% 0%, rgba(82, 210, 115, 0.2), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(255, 209, 102, 0.16), transparent 28%),
    linear-gradient(180deg, #060907 0%, #08110c 42%, #050705 100%);
  color: var(--ink);
}

body.enhanced-ui {
  text-rendering: geometricPrecision;
}

body.enhanced-ui::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent 72%);
  pointer-events: none;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 253, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

site-header,
site-footer,
site-breadcrumbs {
  display: block;
}

.main-nav a[aria-current="page"] {
  color: #f1fff4;
}

.main-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--leaf);
  content: "";
}

.main-nav a {
  position: relative;
}

.breadcrumbs {
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(130, 255, 166, 0.12);
  background: rgba(6, 14, 9, 0.92);
}

.breadcrumbs ol {
  display: flex;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  gap: 9px;
  list-style: none;
  color: var(--muted);
  font-size: 0.88rem;
}

.breadcrumbs li {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.breadcrumbs li:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.32);
  content: "/";
}

.breadcrumbs a {
  color: #c8d4ca;
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs [aria-current="page"] {
  color: var(--leaf);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--leaf-dark);
  color: var(--sun);
  font-size: 0.9rem;
}

.main-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a,
.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--leaf);
}

.hero {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: stretch;
  background: var(--leaf-dark);
  color: var(--white);
}

.download-site .hero {
  color: #edf7ee;
  background: #07140d;
}

.download-site .hero h1 {
  color: #edf7ee;
}

.download-site .hero-lede {
  color: #d6eadb;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 96px) clamp(22px, 5vw, 70px);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 710px;
  margin: 24px 0 0;
  color: #e6f3df;
  font-size: 1.08rem;
}

.hero-art {
  min-height: 460px;
  background-image: linear-gradient(90deg, rgba(23, 75, 43, 0.88), rgba(23, 75, 43, 0.22) 38%, rgba(23, 75, 43, 0.06)), url("/assets/pvz-fusion-hero.webp");
  background-size: cover;
  background-position: center;
}

.download-site.page-pc .hero-art {
  background-image:
    linear-gradient(90deg, rgba(7, 20, 13, 0.78), rgba(7, 20, 13, 0.18) 42%, rgba(7, 20, 13, 0.03)),
    url("/assets/pvz-pc-section.webp");
}

.home-page .site-header {
  background: rgba(5, 11, 7, 0.86);
}

.home-page main {
  overflow: hidden;
}

.home-page .hero {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: min(740px, calc(100svh - 120px));
  overflow: hidden;
  border-bottom: 1px solid rgba(130, 255, 166, 0.18);
  background:
    linear-gradient(90deg, rgba(3, 9, 6, 0.98) 0%, rgba(3, 9, 6, 0.91) 32%, rgba(3, 9, 6, 0.48) 58%, rgba(3, 9, 6, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 9, 6, 0.88) 0%, transparent 35%),
    url("/assets/pvz-home-hero-premium.webp") center / cover no-repeat;
}

.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(130, 255, 166, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 255, 166, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, 0.28) 68%, transparent);
}

.home-page .hero::after {
  content: "";
  position: absolute;
  left: clamp(22px, 5vw, 70px);
  bottom: 0;
  width: min(660px, 72vw);
  height: 1px;
  background: linear-gradient(90deg, #52d273, #ffd166 58%, transparent);
  box-shadow: 0 0 28px rgba(82, 210, 115, 0.62);
}

.home-page .hero-copy {
  min-height: inherit;
  max-width: 900px;
  padding-top: clamp(54px, 7vh, 78px);
  padding-bottom: clamp(34px, 4vh, 46px);
}

.home-page .hero h1 {
  max-width: 840px;
  background: linear-gradient(90deg, #ffffff 0%, #d8ffe0 54%, #ffd979 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(3rem, 5.2vw, 5.45rem);
  line-height: 0.98;
  text-wrap: balance;
}

.home-page .hero-lede {
  max-width: 735px;
  color: #d6e8da;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

.home-page .hero-art {
  display: none;
}

.home-page .hero-actions .button {
  min-height: 52px;
  padding-inline: 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.home-page .hero-actions .button.primary {
  background: linear-gradient(135deg, #ffd166, #f1b83d);
  box-shadow: 0 14px 46px rgba(255, 209, 102, 0.2);
}

.home-page .hero-actions .button.secondary {
  border-color: rgba(186, 252, 200, 0.32);
  background: rgba(8, 20, 13, 0.62);
  backdrop-filter: blur(12px);
}

.home-page .hero-stats {
  max-width: 700px;
  gap: 10px;
  margin-top: 30px;
}

.home-page .hero-stats div {
  position: relative;
  overflow: hidden;
  min-height: 78px;
  padding: 14px 16px;
  border-color: rgba(130, 255, 166, 0.2);
  background: linear-gradient(180deg, rgba(17, 35, 24, 0.78), rgba(7, 16, 10, 0.72));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.home-page .hero-stats div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.08), transparent 65%);
  transform: translateX(-100%);
  transition: transform 520ms ease;
}

.home-page .hero-stats div:hover::after {
  transform: translateX(100%);
}

.home-page .hero-stats dt {
  color: #91b99b;
  text-transform: uppercase;
  font-weight: 800;
}

.home-page .hero-stats dd {
  color: #f2fff4;
  font-size: 1rem;
}

.home-page .section {
  position: relative;
  padding-block: clamp(54px, 6vw, 78px);
  scroll-margin-top: 112px;
}

.home-page .section h2,
.home-page .section h3,
.home-page summary {
  text-wrap: balance;
}

.home-page .section > * {
  width: min(100%, 1320px);
  margin-inline: auto;
}

.home-page .section + .section {
  border-top: 1px solid rgba(130, 255, 166, 0.08);
}

.home-page section.intro-grid,
.home-page section.content-section,
.home-page section.split {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.home-page .intro-grid {
  align-items: stretch;
}

.home-page .intro-grid > article {
  padding: clamp(6px, 2vw, 18px) 0;
}

.home-page .quick-card,
.home-page .panel,
.home-page .card,
.home-page .feature-list article,
.home-page details {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(13, 23, 17, 0.84);
  border-color: rgba(130, 255, 166, 0.15);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.2);
}

.home-page .quick-card {
  align-self: stretch;
  padding: 28px;
}

.home-page .quick-card a,
.home-page .text-link,
.home-page .article a {
  color: #8feaa6;
}

.home-page .quick-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-color: rgba(130, 255, 166, 0.13);
}

.home-page .quick-card a::after {
  content: "↗";
  color: #ffd166;
}

.home-page .band {
  background:
    linear-gradient(90deg, rgba(82, 210, 115, 0.035), transparent 28%, rgba(255, 209, 102, 0.025)),
    rgba(7, 16, 10, 0.74);
}

.home-page .card,
.home-page .panel,
.home-page .feature-list article {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.home-page .cards .card {
  min-height: 190px;
}

.home-page .cards.four .card {
  min-height: 210px;
}

.home-page .card:hover,
.home-page .panel:hover,
.home-page .feature-list article:hover {
  border-color: rgba(255, 209, 102, 0.4);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.home-page .panel.accent {
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.12), transparent 55%),
    rgba(20, 25, 15, 0.9);
  border-color: rgba(255, 209, 102, 0.28);
}

.home-page .feature-list {
  gap: 12px;
  border: 0;
  overflow: visible;
  background: transparent;
}

.home-page .feature-list article {
  border: 1px solid rgba(130, 255, 166, 0.15);
  border-radius: 8px;
}

.home-page .feature-list span {
  color: #ffd166;
  font-size: 0.82rem;
}

.home-page #install {
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
}

.home-page #install > * {
  width: 100%;
}

.home-page #install > div:first-child {
  position: sticky;
  top: 112px;
}

.home-page .steps {
  counter-reset: install-step;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.home-page .steps li {
  counter-increment: install-step;
  position: relative;
  min-height: 176px;
  padding: 56px 20px 20px;
  border: 1px solid rgba(130, 255, 166, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(82, 210, 115, 0.055), transparent 48%),
    rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.home-page .steps li::before {
  content: counter(install-step, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 209, 102, 0.38);
  border-radius: 7px;
  background: rgba(255, 209, 102, 0.09);
  color: #ffd166;
  font-size: 0.72rem;
  font-weight: 900;
}

.home-page .steps li:hover {
  border-color: rgba(255, 209, 102, 0.4);
  background:
    linear-gradient(145deg, rgba(82, 210, 115, 0.09), transparent 52%),
    rgba(255, 255, 255, 0.035);
  transform: translateY(-2px);
}

.home-page .steps strong {
  display: block;
  margin-bottom: 7px;
  color: #f1fff4;
  font-size: 1.02rem;
}

.home-page .faq {
  display: grid;
  max-width: 1320px;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 12px clamp(34px, 5vw, 74px);
  align-items: start;
}

.home-page .faq .section-heading {
  grid-row: 1 / span 4;
  position: sticky;
  top: 112px;
  width: 100%;
  margin: 0;
  padding-right: 20px;
}

.home-page .faq .section-heading h2 {
  font-size: clamp(2.15rem, 3.2vw, 3.55rem);
}

.home-page .faq details {
  grid-column: 2;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(130, 255, 166, 0.13);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.home-page .faq details:last-child {
  border-bottom: 1px solid rgba(130, 255, 166, 0.13);
}

.home-page .faq details[open] {
  border-color: rgba(82, 210, 115, 0.34);
  background:
    linear-gradient(135deg, rgba(82, 210, 115, 0.075), transparent 55%),
    rgba(13, 23, 17, 0.9);
}

.home-page .faq summary {
  position: relative;
  display: flex;
  min-height: 76px;
  align-items: center;
  padding: 20px 66px 20px 22px;
  color: #f1fff4;
  font-size: 1rem;
  line-height: 1.35;
  list-style: none;
  transition: background 180ms ease, color 180ms ease;
}

.home-page .faq summary:hover {
  background: rgba(82, 210, 115, 0.045);
}

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

.home-page .faq summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(130, 255, 166, 0.22);
  border-radius: 7px;
  color: #9cffb4;
  font-size: 1.2rem;
  font-weight: 500;
  transform: translateY(-50%);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.home-page .faq details[open] summary::after {
  content: "−";
  border-color: rgba(255, 209, 102, 0.48);
  color: #ffd166;
}

.home-page .faq details p {
  max-width: none;
  margin: 0;
  padding: 0 22px 22px;
  color: #aebdb2;
}

.home-page .site-footer {
  background: #030604;
}

.home-page a:focus-visible,
.home-page button:focus-visible,
.home-page summary:focus-visible {
  outline: 2px solid #ffd166;
  outline-offset: 3px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button,
.pill,
.download-actions a {
  position: relative;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.pill:hover,
.download-actions a:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--sun);
  color: #2c2308;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: inherit;
}

.panel .button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--leaf-dark);
}

.hero-stats {
  display: grid;
  max-width: 630px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 38px 0 0;
}

.hero-stats div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  color: #cfe3c9;
  font-size: 0.76rem;
}

.hero-stats dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 4vw, 56px);
}

.intro-grid,
.content-section,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.section h2 {
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.section p {
  margin: 0 0 16px;
  color: var(--muted);
}

.quick-card,
.panel,
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.quick-card {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.quick-card a {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  color: var(--leaf-dark);
  font-weight: 800;
  text-decoration: none;
}

.band {
  background: var(--mint);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.cards {
  display: grid;
  gap: 18px;
}

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

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 24px;
}

.link-card {
  text-decoration: none;
}

.link-card:hover {
  border-color: var(--leaf);
  transform: translateY(-2px);
  transition: transform 160ms ease, border-color 160ms ease;
}

.prose {
  max-width: 860px;
}

.text-link {
  color: var(--leaf-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.panel {
  padding: clamp(24px, 4vw, 40px);
}

.panel.accent {
  background: #fff8df;
  border-color: #ead996;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.feature-list article {
  padding: 28px;
  background: var(--white);
}

.feature-list span {
  display: block;
  margin-bottom: 24px;
  color: var(--leaf);
  font-weight: 900;
}

.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
}

.steps li {
  padding-left: 6px;
  color: var(--muted);
}

.steps strong {
  color: var(--ink);
}

.faq {
  max-width: 1050px;
  margin: 0 auto;
}

details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

details p {
  max-width: 820px;
  margin-top: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.site-footer .footer-brand {
  max-width: 560px;
}

.site-footer .footer-brand .brand {
  width: fit-content;
  color: #f1fff4;
}

.site-footer small {
  display: block;
  max-width: 540px;
  margin-top: 14px;
  color: #7f9184;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  min-width: min(100%, 520px);
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 30px;
}

.site-footer .footer-links nav {
  align-content: start;
  flex-direction: column;
  gap: 9px;
}

.site-footer .footer-links strong {
  margin-bottom: 5px;
  color: #f1fff4;
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.legal-page .article h2 {
  margin-top: 40px;
}

.legal-page .article h3 {
  margin-top: 26px;
}

.site-footer p {
  max-width: 580px;
  margin: 6px 0 0;
  color: #c8d4ca;
}

.article-hero {
  padding: clamp(54px, 8vw, 94px) clamp(18px, 4vw, 56px);
  background: var(--leaf-dark);
  color: var(--white);
}

.download-site .site-header {
  background: rgba(7, 12, 9, 0.82);
  border-bottom-color: rgba(130, 255, 166, 0.16);
}

.download-site .brand-mark {
  background: linear-gradient(135deg, #52d273, #ffd166);
  color: #07140d;
  box-shadow: 0 0 24px rgba(82, 210, 115, 0.28);
}

.download-site .article-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  border-bottom: 1px solid rgba(130, 255, 166, 0.16);
  background:
    linear-gradient(90deg, rgba(5, 10, 7, 0.94), rgba(5, 10, 7, 0.72)),
    var(--page-art, url("/assets/pvz-fusion-hero.webp"));
  background-size: cover;
  background-position: center;
}

.download-site.page-download {
  --page-art: url("/assets/pvz-download-hero-premium.webp");
}

.download-site.page-apk {
  --page-art: url("/assets/pvz-apk-section.webp");
}

.download-site.page-pc {
  --page-art: url("/assets/pvz-pc-section.webp");
}

.download-site.page-versions {
  --page-art: url("/assets/pvz-versions-section.webp");
}

.download-site.page-ios {
  --page-art: url("/assets/pvz-ios-guidance.webp");
}

.download-site.page-hybrid {
  --page-art: url("/assets/pvz-english-language.webp");
}

.download-site.page-gameplay {
  --page-art: url("/assets/pvz-gameplay-fusion.webp");
}

.download-site.page-faq {
  --page-art: url("/assets/pvz-community-faq.webp");
}

.download-site.page-hybrid .hero-art,
.download-site.page-gameplay .hero-art {
  background-image:
    linear-gradient(90deg, rgba(7, 20, 13, 0.76), rgba(7, 20, 13, 0.08) 48%),
    var(--page-art);
}

.download-site .article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(130, 255, 166, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 255, 166, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}

.download-site .article-hero > * {
  position: relative;
  z-index: 1;
}

.download-site .article-hero > p,
.download-site .article-hero > h1,
.download-site .article-hero > .pill-row {
  grid-column: 1;
}

.download-site .article-hero h1 {
  max-width: 1040px;
  background: linear-gradient(90deg, #ffffff, #bafcc8 55%, #ffd166);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.download-site .article-hero p {
  color: #d6eadb;
}

.download-site .card,
.download-site .quick-card,
.download-site .panel,
.download-site .version-card,
.download-site .download-table,
.download-site .article-callout {
  background: rgba(16, 23, 19, 0.82);
  border-color: rgba(130, 255, 166, 0.16);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
}

.download-site .band {
  background: rgba(11, 25, 16, 0.72);
}

.download-site .download-table th {
  background: rgba(82, 210, 115, 0.12);
  color: #dfffe6;
}

.download-site .download-table td {
  color: #b9c8bd;
}

.download-site .download-table td:first-child,
.download-site .download-table strong {
  color: #edf7ee;
}

.download-site .download-table a:not(.download-actions a) {
  color: #8feaa6;
  font-weight: 850;
  text-underline-offset: 3px;
}

.download-site .download-table tbody tr {
  transition: background 160ms ease;
}

.download-site .download-table tbody tr:hover {
  background: rgba(82, 210, 115, 0.045);
}

.download-site .site-footer {
  background: #050705;
  border-top-color: rgba(130, 255, 166, 0.16);
  color: #edf7ee;
}

.download-site .site-footer strong {
  color: #edf7ee;
}

.download-site .site-footer nav,
.download-site .site-footer p {
  color: #a9b8ad;
}

.download-site .pill {
  border-color: rgba(130, 255, 166, 0.28);
  background: rgba(82, 210, 115, 0.1);
  color: #dfffe6;
}

.download-site .pill:hover {
  border-color: rgba(255, 209, 102, 0.7);
  color: #ffd166;
}

.download-site .article a,
.download-site .text-link,
.download-site .quick-card a,
.download-site .prose a {
  color: #8feaa6;
}

.download-site .article a:hover,
.download-site .text-link:hover,
.download-site .quick-card a:hover,
.download-site .prose a:hover {
  color: #ffd166;
}

.download-site .panel .button.secondary {
  border-color: rgba(130, 255, 166, 0.24);
  background: rgba(82, 210, 115, 0.09);
  color: #dfffe6;
}

.download-site .download-actions a {
  border: 1px solid rgba(82, 210, 115, 0.38);
  background: #49c96b;
  color: #061009;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.download-site .download-actions a:hover {
  border-color: rgba(156, 255, 180, 0.78);
  background: #68df86;
  color: #061009;
}

.download-site .download-actions a.alt {
  border-color: rgba(255, 209, 102, 0.5);
  background: #ffd166;
  color: #241b05;
}

.download-site .download-actions a.alt:hover {
  background: #ffdc84;
  color: #241b05;
}

.download-site .download-actions span {
  border-color: rgba(169, 184, 173, 0.2);
  background: rgba(255, 255, 255, 0.035);
  color: #a9b8ad;
}

.download-site .article-callout strong,
.download-site .panel strong,
.download-site details summary {
  color: #edf7ee;
}

.download-site details {
  border-color: rgba(130, 255, 166, 0.15);
}

.download-site:not(.home-page) details {
  margin: 12px 0;
  padding: 0;
  border: 1px solid rgba(130, 255, 166, 0.15);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(16, 23, 19, 0.76);
}

.download-site:not(.home-page) details:last-child {
  border-bottom: 1px solid rgba(130, 255, 166, 0.15);
}

.download-site:not(.home-page) details[open] {
  border-color: rgba(82, 210, 115, 0.34);
  background:
    linear-gradient(135deg, rgba(82, 210, 115, 0.07), transparent 55%),
    rgba(16, 23, 19, 0.88);
}

.download-site:not(.home-page) details summary {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  padding: 18px 60px 18px 20px;
  list-style: none;
}

.download-site:not(.home-page) details summary::-webkit-details-marker {
  display: none;
}

.download-site:not(.home-page) details summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(130, 255, 166, 0.25);
  border-radius: 7px;
  color: #9cffb4;
  transform: translateY(-50%);
}

.download-site:not(.home-page) details[open] summary::after {
  content: "−";
  border-color: rgba(255, 209, 102, 0.5);
  color: #ffd166;
}

.download-site:not(.home-page) details p {
  max-width: none;
  margin: 0;
  padding: 0 20px 20px;
}

.ui-icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
}

.main-nav .ui-icon,
.site-footer nav .ui-icon {
  width: 15px;
  height: 15px;
}

.section-art {
  grid-column: 2;
  grid-row: 1 / span 3;
  margin: 0;
  border: 1px solid rgba(130, 255, 166, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(82, 210, 115, 0.18), rgba(255, 209, 102, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.section-art img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.section-visual,
.content-visual,
.article-visual,
.card-visual,
.micro-visual,
.summary-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(130, 255, 166, 0.18);
  border-radius: 8px;
  background: #0b160f;
}

.section-visual img,
.content-visual img,
.article-visual img,
.card-visual img,
.micro-visual img,
.summary-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--visual-position, center);
  transition: transform 480ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 240ms ease;
}

.section-visual {
  width: min(calc(100% - clamp(36px, 8vw, 112px)), 1320px);
  height: clamp(210px, 25vw, 340px);
  margin: -6px auto 30px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.section-visual img {
  filter: saturate(0.92) contrast(1.02);
}

.has-section-visual:hover > .section-visual img {
  transform: scale(1.018);
}

.content-visual {
  aspect-ratio: 16 / 10;
  margin-top: 24px;
}

.article-visual {
  aspect-ratio: 16 / 7;
  margin: 18px 0 24px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
}

.card-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
}

.card-visual.compact {
  aspect-ratio: 2 / 1;
}

.visual-card:hover > .card-visual img,
.feature-list article:hover > .card-visual img,
.article-visual:hover img,
.content-visual:hover img {
  transform: scale(1.045);
}

.insight-card .card-visual,
.mirror-card .card-visual {
  aspect-ratio: 2 / 1;
  margin-bottom: 14px;
}

.download-console > .card-visual {
  aspect-ratio: 16 / 6;
  margin-bottom: 20px;
}

.quick-card > .card-visual {
  aspect-ratio: 16 / 7;
}

.version-card > .card-visual {
  aspect-ratio: 16 / 8;
}

.micro-visual {
  width: 100%;
  height: 92px;
  margin-bottom: 16px;
}

body:not(.home-page) .steps > li > .micro-visual {
  display: none;
}

.summary-visual {
  width: 64px;
  height: 48px;
  flex: 0 0 auto;
  margin-right: 14px;
  border-color: rgba(130, 255, 166, 0.14);
}

.magic-border {
  position: relative;
}

.magic-border::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(82, 210, 115, 0.42), rgba(255, 209, 102, 0.2), rgba(151, 236, 255, 0.22));
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.magic-border:hover::before {
  opacity: 1;
}

.magic-border > * {
  position: relative;
  z-index: 1;
}

.pro-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.download-console {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(130, 255, 166, 0.2);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 23, 19, 0.92), rgba(8, 14, 10, 0.92));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.download-console::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 34%),
    linear-gradient(90deg, transparent, rgba(82, 210, 115, 0.08), transparent);
  pointer-events: none;
}

.console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bafcc8;
  font-size: 0.88rem;
  font-weight: 850;
}

.status-dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #52d273;
  box-shadow: 0 0 18px #52d273;
}

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

.mirror-card {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(130, 255, 166, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.mirror-card h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 6px;
  color: var(--ink);
}

.mirror-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.insight-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(130, 255, 166, 0.16);
  border-radius: 8px;
  background: rgba(16, 23, 19, 0.78);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.insight-card strong {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 1.05rem;
}

.mirror-card:hover,
.insight-card:hover,
.version-card:hover,
.card:hover,
.quick-card:hover {
  border-color: rgba(255, 209, 102, 0.45);
  transform: translateY(-3px);
}

.insight-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.compare-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-list li {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(130, 255, 166, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
}

.compare-list strong {
  color: var(--ink);
}

.article-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  line-height: 1.02;
}

.article-hero p {
  max-width: 780px;
  color: #dcebd8;
  font-size: 1.08rem;
}

.article {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 86px) 18px;
}

.article h2 {
  margin-top: 38px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.15;
}

.article p,
.article li {
  color: var(--muted);
}

.article a {
  color: var(--leaf-dark);
  font-weight: 800;
}

.article-callout {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--leaf);
  border-radius: 8px;
  background: var(--white);
}

.download-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.download-site .download-table {
  min-width: 840px;
}

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

.download-table th {
  color: var(--leaf-dark);
  background: var(--mint);
  font-size: 0.9rem;
}

.download-table tr:last-child td {
  border-bottom: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--leaf-dark);
  font-weight: 800;
  text-decoration: none;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 0;
}

.download-actions a,
.download-actions span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.download-actions a {
  background: var(--leaf-dark);
  color: var(--white);
}

.download-actions a.alt {
  background: var(--sun);
  color: #2c2308;
}

.download-actions span {
  border: 1px solid var(--line);
  color: var(--muted);
  background: #f3f7f0;
}

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

.version-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.version-card strong {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 1.15rem;
}

.card h3,
.quick-card h3 {
  display: flex;
  align-items: center;
  gap: 9px;
}

.version-card span {
  color: var(--muted);
}

@media (max-width: 940px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    width: 100%;
  }

  .hero,
  .intro-grid,
  .content-section,
  .split,
  .pro-dashboard {
    grid-template-columns: 1fr;
  }

  .hero-art {
    min-height: 360px;
    order: -1;
  }

  .cards.three,
  .cards.four,
  .feature-list,
  .version-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

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

  .compare-list li {
    grid-template-columns: 1fr;
  }

  .download-site .article-hero {
    grid-template-columns: 1fr;
  }

  .download-site .article-hero > p,
  .download-site .article-hero > h1,
  .download-site .article-hero > .pill-row,
  .section-art {
    grid-column: 1;
  }

  .section-art {
    grid-row: auto;
    max-width: 560px;
  }

  .download-site .download-table {
    display: block;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }

  .download-site .download-table thead,
  .download-site .download-table tbody {
    display: table;
    width: 840px;
    table-layout: fixed;
  }

  .home-page .hero {
    min-height: 720px;
    background-position: 62% center;
  }

  .home-page .hero-copy {
    max-width: 740px;
  }

  .home-page .hero h1 {
    max-width: 700px;
    font-size: clamp(2.8rem, 8.5vw, 4.6rem);
  }

  .home-page #install,
  .home-page .faq {
    grid-template-columns: 1fr;
  }

  .home-page #install > div:first-child,
  .home-page .faq .section-heading {
    position: static;
  }

  .home-page .faq .section-heading {
    grid-row: auto;
    margin-bottom: 18px;
    padding-right: 0;
  }

  .home-page .faq details {
    grid-column: 1;
  }
}

@media (max-width: 620px) {

  body {
    line-height: 1.58;
  }

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

  .brand {
    gap: 9px;
    font-size: 1rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 0.82rem;
  }

  .main-nav {
    gap: 10px 14px;
    font-size: 0.86rem;
  }

  .download-site .site-header {
    gap: 10px;
  }

  .download-site .main-nav {
    width: calc(100vw - 36px);
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 42px), transparent);
    scroll-padding-inline: 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .download-site .main-nav::-webkit-scrollbar {
    display: none;
  }

  .download-site .main-nav a {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .breadcrumbs {
    overflow-x: auto;
    padding: 12px 18px;
  }

  .breadcrumbs ol {
    width: max-content;
    max-width: none;
    font-size: 0.84rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 230px;
  }

  .hero-copy {
    padding: 32px 20px 38px;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
    line-height: 1.06;
    text-wrap: balance;
  }

  .hero-lede {
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 18px;
  }

  .hero-stats div {
    min-height: 68px;
    padding: 10px;
  }

  .hero-stats dt {
    font-size: 0.62rem;
  }

  .hero-stats dd {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .hero-actions {
    gap: 9px;
    margin-top: 20px;
  }

  .button {
    width: 100%;
    min-height: 44px;
    padding: 10px 15px;
  }

  .section {
    padding: 42px 18px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section h2 {
    margin-bottom: 14px;
    font-size: clamp(1.55rem, 8vw, 2.05rem);
    line-height: 1.12;
  }

  .section h3 {
    font-size: 1.04rem;
  }

  .card,
  .quick-card,
  .panel,
  .feature-list article,
  .download-console,
  .mirror-card,
  .insight-card,
  .version-card {
    padding: 18px;
  }

  .quick-card {
    gap: 8px;
  }

  .content-section,
  .split,
  .intro-grid,
  .pro-dashboard {
    gap: 22px;
  }

  .content-visual,
  .article-visual,
  .card-visual {
    margin-top: 16px;
    margin-bottom: 16px;
  }

  .section-visual {
    width: calc(100% - 36px);
    height: 180px;
    margin: -4px auto 22px;
  }

  .summary-visual {
    width: 52px;
    height: 40px;
    margin-right: 10px;
  }

  .download-site:not(.home-page) details summary {
    min-height: 60px;
    padding: 14px 54px 14px 16px;
    line-height: 1.35;
  }

  .download-site:not(.home-page) details summary::after {
    right: 14px;
    width: 26px;
    height: 26px;
  }

  .download-site:not(.home-page) details p {
    padding: 0 16px 16px;
  }

  .download-site .article-hero {
    gap: 20px;
    padding: 42px 20px;
  }

  .article-hero h1,
  .download-site .article-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.06;
    text-wrap: balance;
  }

  .article-hero p {
    font-size: 0.98rem;
  }

  .download-site .article-hero .section-art {
    width: 100%;
    max-width: none;
  }

  .download-site .article-hero .section-art img {
    aspect-ratio: 16 / 9;
  }

  .article {
    padding: 42px 18px;
  }

  .article h2 {
    margin-top: 30px;
    font-size: clamp(1.45rem, 7.2vw, 1.95rem);
  }

  .article-callout {
    margin: 22px 0;
    padding: 18px;
  }

  .download-actions {
    gap: 8px;
  }

  .download-actions a,
  .download-actions span {
    width: 100%;
    min-height: 42px;
    padding: 9px 12px;
  }

  .download-site .download-table {
    display: block;
    min-width: 0;
    border: 0;
    background: transparent;
    overflow: visible;
    white-space: normal;
  }

  .download-site .download-table thead {
    display: none;
  }

  .download-site .download-table tbody,
  .download-site .download-table tr,
  .download-site .download-table td {
    display: block;
    width: 100%;
  }

  .download-site .download-table tbody {
    display: grid;
    gap: 12px;
  }

  .download-site .download-table tr {
    overflow: hidden;
    border: 1px solid rgba(130, 255, 166, 0.16);
    border-radius: 8px;
    background: rgba(16, 23, 19, 0.82);
  }

  .download-site .download-table td {
    padding: 13px 14px;
    border-bottom: 1px solid rgba(130, 255, 166, 0.12);
  }

  .download-site .download-table td:last-child {
    border-bottom: 0;
  }

  .download-site .download-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 4px;
    color: #ffd166;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

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

  .home-page .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(3, 9, 6, 0.38) 0%, rgba(3, 9, 6, 0.76) 28%, rgba(3, 9, 6, 0.98) 68%),
      url("/assets/pvz-home-hero-premium.webp") 66% top / auto 46% no-repeat,
      #030906;
  }

  .home-page .hero::before {
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), #000 70%, transparent);
  }

  .home-page .hero-copy {
    padding: 180px 20px 38px;
  }

  .home-page .hero h1 {
    font-size: clamp(2.12rem, 10vw, 2.9rem);
    line-height: 1.04;
    text-wrap: pretty;
  }

  .home-page .hero-lede {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .home-page .hero-actions {
    margin-top: 20px;
  }

  .home-page .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin-top: 18px;
  }

  .home-page .hero-stats div {
    min-height: 70px;
    padding: 10px;
  }

  .home-page .hero-stats dt {
    font-size: 0.62rem;
  }

  .home-page .hero-stats dd {
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .home-page .section {
    padding-block: 42px;
  }

  .home-page .steps {
    grid-template-columns: 1fr;
  }

  .home-page .steps li {
    min-height: 0;
  }

  .home-page .faq summary {
    min-height: 64px;
    padding: 15px 54px 15px 16px;
  }

  .home-page .faq summary::after {
    right: 16px;
  }

  .home-page .faq details p {
    padding: 0 18px 18px;
  }
}

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

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