:root {
  color-scheme: dark;
  --ink: #06111f;
  --panel: #0b2135;
  --panel-raised: #0e263c;
  --emerald: #31e69b;
  --emerald-bright: #5af2b3;
  --gold: #f3c96b;
  --text: #f7fbff;
  --muted: #a9b8c8;
  --line: rgba(154, 190, 218, 0.18);
  --line-strong: rgba(49, 230, 155, 0.32);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --glow: 0 14px 42px rgba(49, 230, 155, 0.15);
  --radius-sm: 16px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --shell: min(calc(100% - 32px), 1180px);
}

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

html {
  background: var(--ink);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  padding-bottom: 104px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 92% 8%, rgba(49, 230, 155, 0.08), transparent 28rem),
    radial-gradient(circle at 8% 42%, rgba(243, 201, 107, 0.04), transparent 22rem),
    var(--ink);
  color: var(--text);
  font-family: Inter, Arial, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--emerald);
  color: #03130d;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(6, 17, 31, 0.9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 12px;
}

.brand {
  flex: 0 0 auto;
  color: var(--text);
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.07em;
}

.brand span {
  color: var(--gold);
}

.menu-trigger {
  display: grid;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 10px;
  place-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  color: var(--text);
}

.menu-trigger > span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
}

.desktop-nav {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-action {
  display: inline-flex;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.025em;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary,
.button-small {
  background: var(--emerald);
  box-shadow: 0 10px 28px rgba(49, 230, 155, 0.2);
  color: #03150e;
}

.button-primary:hover,
.button-small:hover {
  background: var(--emerald-bright);
  box-shadow: 0 14px 34px rgba(49, 230, 155, 0.26);
}

.button-small {
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 12px;
  font-size: 0.78rem;
}

.button-secondary {
  border-color: rgba(243, 201, 107, 0.64);
  background: var(--gold);
  color: #181204;
}

.button-outline {
  border-color: var(--line-strong);
  background: rgba(49, 230, 155, 0.06);
  color: var(--emerald-bright);
}

.button-wide {
  width: 100%;
}

.mobile-nav {
  width: var(--shell);
  margin: 0 auto 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.mobile-nav a:hover {
  background: rgba(49, 230, 155, 0.08);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 42px 0 28px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(135deg, rgba(49, 230, 155, 0.06), transparent 42%),
    radial-gradient(circle at 72% 56%, rgba(49, 230, 155, 0.12), transparent 24rem);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 30px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--emerald);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 17ch;
  margin-bottom: 16px;
  font-size: clamp(2rem, 9vw, 4.5rem);
  font-weight: 950;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 6vw, 2.55rem);
  font-weight: 900;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 850;
}

.hero-lede,
.page-intro,
.article-dek {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.quiet-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.quiet-link span {
  margin-left: 8px;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow), var(--glow);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 58%, rgba(6, 17, 31, 0.6));
  content: "";
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 7.2;
  object-fit: cover;
}

.hero-glow {
  position: absolute;
  z-index: 1;
  right: 12%;
  bottom: -20%;
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(49, 230, 155, 0.2);
  filter: blur(45px);
  pointer-events: none;
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-block: 1px solid var(--line);
  background: rgba(11, 33, 53, 0.72);
}

.trust-grid {
  display: grid;
}

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}

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

.trust-item > span:last-child {
  display: grid;
  min-width: 0;
}

.trust-item strong {
  font-size: 0.9rem;
  line-height: 1.3;
}

.trust-item small {
  color: var(--muted);
  font-size: 0.73rem;
}

.trust-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(49, 230, 155, 0.08);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
}

.section {
  padding-block: 62px 0;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.compact-heading {
  margin-bottom: 18px;
}

.category-grid,
.article-card-grid,
.content-entry-grid,
.related-grid {
  display: grid;
  gap: 14px;
}

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
}

.category-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 31, 0.05) 28%, rgba(6, 17, 31, 0.96) 100%);
  content: "";
}

.category-card:hover img {
  transform: scale(1.035);
}

.category-card-copy {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
}

.category-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.category-card-copy span {
  display: inline-block;
  margin-top: 9px;
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 850;
}

.promo-panel,
.security-panel,
.conversion-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(49, 230, 155, 0.09), transparent 48%),
    var(--panel);
  box-shadow: var(--shadow);
}

.promo-copy,
.security-copy {
  position: relative;
  z-index: 2;
  padding: 28px 22px;
}

.promo-copy > p:not(.eyebrow),
.security-copy > p:not(.eyebrow),
.conversion-panel p {
  margin: 0 0 22px;
  color: var(--muted);
}

.promo-panel img,
.security-panel img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-top: 1px solid var(--line);
}

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

.steps-grid li {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(14, 38, 60, 0.96), rgba(11, 33, 53, 0.76));
}

.steps-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 15px;
  place-items: center;
  border: 1px solid rgba(243, 201, 107, 0.35);
  border-radius: 12px;
  background: rgba(243, 201, 107, 0.08);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.steps-grid strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.88rem;
}

.check-list li::before {
  position: absolute;
  top: 0.07em;
  left: 0;
  color: var(--emerald);
  content: "✓";
  font-weight: 900;
}

.entry-card,
.article-card,
.related-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.entry-card:hover,
.article-card:hover,
.related-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: var(--panel-raised);
}

.entry-card p,
.article-card p,
.related-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.85rem;
}

.entry-card span,
.article-card span,
.related-card span {
  margin-top: auto;
  color: var(--emerald);
  font-size: 0.77rem;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
}

.faq-list summary {
  position: relative;
  padding: 18px 48px 18px 18px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--gold);
  content: "+";
  font-size: 1.25rem;
  transform: translateY(-50%);
}

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

.faq-list details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.responsible {
  margin-top: 62px;
  padding: 22px;
  border: 1px solid rgba(243, 201, 107, 0.28);
  border-radius: var(--radius-md);
  background: rgba(243, 201, 107, 0.06);
  text-align: center;
}

.responsible strong {
  color: var(--gold);
  font-size: 0.92rem;
}

.responsible p {
  max-width: 46rem;
  margin: 7px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  margin-top: 60px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: rgba(3, 12, 23, 0.78);
}

.footer-grid {
  display: grid;
  gap: 22px;
}

.brand-footer {
  display: inline-block;
  margin-bottom: 10px;
}

.footer-grid p {
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
}

.footer-grid nav a {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.sticky-cta {
  position: fixed;
  z-index: 50;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: 10px;
  display: flex;
  max-width: 520px;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-inline: auto;
  padding: 10px 10px 10px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(11, 33, 53, 0.96);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.44), var(--glow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.sticky-cta > span {
  display: grid;
  min-width: 0;
}

.sticky-cta strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.sticky-cta small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-cta .button {
  min-height: 48px;
  flex: 0 0 auto;
  padding-inline: 17px;
}

.breadcrumb {
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

.breadcrumb a {
  color: var(--emerald);
}

.breadcrumb span {
  margin-inline: 7px;
  color: rgba(169, 184, 200, 0.48);
}

.page-hero {
  padding-block: 40px 8px;
}

.page-hero h1 {
  max-width: 19ch;
  font-size: clamp(2rem, 9vw, 3.7rem);
}

.page-hero .page-intro {
  max-width: 46rem;
}

.page-hero > .button {
  width: 100%;
  margin-top: 24px;
}

.inline-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.inline-trust span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(49, 230, 155, 0.05);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
}

.article-card {
  min-height: 180px;
  padding: 24px;
}

.article-card .card-kicker {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.conversion-panel {
  align-items: center;
  gap: 20px;
  padding: 28px 22px;
}

.conversion-panel h2 {
  font-size: 1.65rem;
}

.conversion-panel p {
  margin-bottom: 0;
}

.conversion-panel .button {
  width: 100%;
}

.article-shell {
  width: min(calc(100% - 32px), 760px);
  margin-inline: auto;
}

.article {
  padding-top: 34px;
}

.article-header h1 {
  max-width: 20ch;
  font-size: clamp(2rem, 8.7vw, 3.75rem);
}

.article-dek {
  font-size: 1.04rem;
}

.article-hero {
  margin-top: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.article-hero img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.toc {
  margin: 28px 0;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(49, 230, 155, 0.055);
}

.toc > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--emerald);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.toc ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 20px;
}

.toc a {
  color: var(--muted);
  font-size: 0.88rem;
}

.article-body {
  color: #d9e4ed;
}

.article-body h2 {
  margin-top: 42px;
  font-size: 1.55rem;
  scroll-margin-top: 92px;
}

.article-body h3 {
  margin-top: 30px;
}

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

.article-body ul,
.article-body ol {
  padding-left: 23px;
}

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

.article-body .check-list {
  padding-left: 0;
}

.article-cta,
.article-end {
  margin-top: 42px;
  padding: 25px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 90% 20%, rgba(49, 230, 155, 0.12), transparent 16rem),
    var(--panel);
  box-shadow: var(--glow);
}

.article-cta h2 {
  font-size: 1.55rem;
}

.article-cta > p:not(.eyebrow),
.article-end p {
  color: var(--muted);
}

.article-cta .button,
.article-end .button {
  width: 100%;
}

.related-articles,
.article .faq-section {
  margin-top: 50px;
}

.article-end {
  border-color: rgba(243, 201, 107, 0.32);
  background:
    radial-gradient(circle at 90% 20%, rgba(243, 201, 107, 0.08), transparent 16rem),
    var(--panel);
}

.article-end > strong {
  color: var(--gold);
}

.error-page {
  display: grid;
  min-height: calc(100vh - 68px);
  place-items: center;
  padding: 52px 0 120px;
}

.error-panel {
  max-width: 650px;
  padding: 34px 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow), var(--glow);
  text-align: center;
}

.error-code {
  margin: 0;
  color: var(--gold);
  font-size: clamp(4rem, 24vw, 8rem);
  font-weight: 950;
  line-height: 1;
}

.error-panel h1 {
  max-width: none;
  font-size: 1.9rem;
}

.error-panel > p:not(.error-code) {
  color: var(--muted);
}

@media (min-width: 420px) {
  .text-action {
    display: inline-flex;
  }

  .hero-actions {
    display: flex;
    align-items: center;
  }

  .button-wide {
    width: auto;
  }

  .quiet-link {
    justify-content: flex-start;
  }
}

@media (min-width: 720px) {
  body {
    padding-bottom: 112px;
  }

  .header-inner {
    min-height: 74px;
  }

  .hero {
    padding-block: 66px 44px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
    align-items: center;
    gap: 38px;
  }

  .hero-visual img {
    min-height: 350px;
    aspect-ratio: auto;
  }

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

  .trust-item {
    border-right: 1px solid var(--line);
    border-bottom: 0;
    padding: 19px 20px;
  }

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

  .section {
    padding-top: 82px;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
    align-items: end;
    gap: 30px;
  }

  .compact-heading {
    grid-template-columns: 1fr;
  }

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

  .category-card {
    min-height: 250px;
  }

  .category-card img {
    min-height: 250px;
  }

  .promo-panel,
  .security-panel {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    align-items: stretch;
  }

  .promo-copy,
  .security-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
  }

  .promo-panel img,
  .security-panel img {
    height: 100%;
    min-height: 360px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

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

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

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

  .conversion-panel {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 36px;
  }

  .conversion-panel .button {
    width: auto;
  }

  .page-hero > .button {
    width: auto;
  }

  .footer-grid {
    grid-template-columns: minmax(220px, 1.2fr) minmax(220px, 1fr);
    align-items: end;
  }

  .copyright {
    grid-column: 1 / -1;
  }

  .article-cta .button,
  .article-end .button {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .menu-trigger,
  .mobile-nav {
    display: none !important;
  }

  .desktop-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 22px;
    margin-left: auto;
  }

  .desktop-nav a {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 780;
    transition: color 160ms ease;
  }

  .desktop-nav a:hover {
    color: var(--text);
  }

  .header-actions {
    margin-left: 15px;
  }

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

  .category-card,
  .category-card img {
    min-height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.9fr auto;
    align-items: center;
  }

  .copyright {
    grid-column: auto;
    text-align: right;
  }
}

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

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