/* Generated by scripts/bundle-css.py. Edit the source files listed below, then re-run the script. */

/* --- static/fonts/inter.css --- */
/* Self-hosted site fonts. Montserrat is the UI face; Inter is used in the logo. */

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/montserrat-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/montserrat-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/montserrat-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/montserrat-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-cyrillic-logo.woff2") format("woff2");
  unicode-range: U+0430, U+0434, U+043A, U+0440-0441, U+0443, U+044C;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter-latin-logo.woff2") format("woff2");
  unicode-range: U+0061, U+0063-0066, U+006D, U+0072, U+0074-0075;
}

/* --- static/site-nav.css --- */
:root {
  --site-nav-bg: rgba(9, 14, 30, 0.72);
  --site-nav-border: rgba(255, 255, 255, 0.14);
  --site-nav-ink: #eef3ff;
  --site-nav-muted: rgba(238, 243, 255, 0.68);
  --site-nav-accent: #6ad3ff;
}

.site-header {
  position: fixed;
  top: 18px;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  justify-content: center;
  padding: 0 18px;
  pointer-events: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: calc(100vw - 36px);
  max-width: calc(100dvw - 36px);
  min-height: 48px;
  padding: 7px 8px 7px 12px;
  border: 1px solid var(--site-nav-border);
  border-radius: 8px;
  background: var(--site-nav-bg);
  color: var(--site-nav-ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.site-nav__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--site-nav-ink);
  text-decoration: none;
}

.site-nav__brand:focus-visible {
  border-radius: 6px;
  outline: 2px solid rgba(235, 69, 66, 0.64);
  outline-offset: 4px;
}

.site-nav__brand :where(img, .framecut-logo) {
  display: block;
  width: auto;
  height: clamp(32px, 3.4vw, 40px);
}

.site-nav__toggle {
  display: none;
  width: 38px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--site-nav-ink);
  cursor: pointer;
}

.site-nav__toggle:hover,
.site-nav__toggle:focus-visible {
  border-color: rgba(106, 211, 255, 0.45);
  background: rgba(106, 211, 255, 0.1);
  outline: none;
}

.site-nav__toggle-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 12px;
}

.site-nav__toggle-icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: 50% 50%;
  transition:
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
}

.site-nav__toggle-icon span:nth-child(1) {
  top: 0;
}

.site-nav__toggle-icon span:nth-child(2) {
  top: 5px;
}

.site-nav__toggle-icon span:nth-child(3) {
  top: 10px;
}

.site-nav--open .site-nav__toggle-icon span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-nav--open .site-nav__toggle-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.site-nav--open .site-nav__toggle-icon span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.framecut-logo {
  overflow: visible;
}

.framecut-logo__text {
  transition-property: opacity, transform;
  transition-duration: 190ms, 360ms;
  transition-timing-function: ease, cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0ms, 0ms;
  transform-box: view-box;
  transform-origin: 320px 85px;
  will-change: opacity, transform;
}

.framecut-logo__text--default {
  opacity: 1;
  transform: translateY(0);
}

.framecut-logo__text--hover {
  opacity: 0;
  transform: translateY(12px);
}

.site-nav__brand:hover .framecut-logo__text--default,
.site-nav__brand:focus-visible .framecut-logo__text--default,
.site-nav__brand--hovered .framecut-logo__text--default {
  opacity: 1;
  transform: translateY(0);
}

.site-nav__brand:hover .framecut-logo__text--hover,
.site-nav__brand:focus-visible .framecut-logo__text--hover,
.site-nav__brand--hovered .framecut-logo__text--hover {
  opacity: 0;
  transform: translateY(0);
  transition-delay: 0ms, 0ms;
}

.framecut-logo__main {
  fill: #ffffff;
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif;
  font-size: 106px;
  font-weight: 780;
  letter-spacing: 0;
}

.framecut-logo__divider {
  fill: none;
  stroke: rgb(235, 69, 66);
  stroke-linecap: round;
  stroke-width: 7;
  transform-box: view-box;
  transform-origin: 354px 85px;
}

.site-nav__brand--springing .framecut-logo__divider {
  animation: framecut-divider-spring 780ms cubic-bezier(0.16, 1, 0.3, 1);
  animation-play-state: running !important;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__links > a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--site-nav-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
  white-space: nowrap;
}

.site-nav__links > a:hover,
.site-nav__links > a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(106, 211, 255, 0.45);
  background: rgba(106, 211, 255, 0.1);
  color: var(--site-nav-ink);
  outline: none;
}

.site-nav__links > a[aria-current="page"] {
  border-color: rgba(255, 211, 111, 0.42);
  background: rgba(255, 211, 111, 0.12);
  color: #fff3c8;
}

.site-nav__socials {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.site-nav__social-link {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--site-nav-ink);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-nav__social-link:hover,
.site-nav__social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(106, 211, 255, 0.52);
  background: rgba(106, 211, 255, 0.13);
  color: #ffffff;
  outline: none;
}

.site-nav__social-link :where(svg, img) {
  display: block;
  width: 20px;
  height: 20px;
}

.site-nav__social-link svg:not(.max-logo-icon) {
  fill: currentColor;
}

.site-nav__social-link--telegram {
  color: #72d8ff;
}

.site-nav__social-link--max svg {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 12px;
  }

  .site-nav__links > a {
    padding: 0 8px;
    font-size: 0.7rem;
  }

  .site-nav__socials {
    margin-left: 2px;
    padding-left: 6px;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 10px;
  }

  .site-nav {
    width: calc(100vw - 24px);
    width: calc(100dvw - 24px);
    max-width: calc(100dvw - 24px);
    min-height: 0;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    padding: 6px 7px;
  }

  .site-nav__brand {
    width: auto;
    justify-content: flex-start;
  }

  .site-nav__brand :where(img, .framecut-logo) {
    height: 30px;
  }

  .site-nav__links {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 3px;
    min-width: 0;
  }

  .site-nav__links > a {
    min-height: 28px;
    padding: 0 7px;
    font-size: 0.62rem;
  }
}

@keyframes framecut-divider-spring {
  0% {
    transform: scaleY(1);
  }

  25% {
    transform: scaleY(0.34);
  }

  43% {
    transform: scaleY(1.18);
  }

  58% {
    transform: scaleY(0.92);
  }

  73% {
    transform: scaleY(1.06);
  }

  88% {
    transform: scaleY(0.99);
  }

  100% {
    transform: scaleY(1);
  }
}

.lead-policy-note,
p.lead-policy-note,
.final-cta p.lead-policy-note,
.hub-cta__inner p.lead-policy-note,
.brief-form .lead-policy-note,
.lead-popup .lead-policy-note {
  margin: 0;
  color: rgba(238, 243, 255, 0.48);
  font-size: 9px;
  line-height: 1.35;
  opacity: 0.8;
  text-align: center;
}

.lead-policy-note a,
.lead-policy-note__link,
.final-cta .lead-policy-note a,
.hub-cta__inner .lead-policy-note a,
.brief-form .lead-policy-note a,
.lead-popup .lead-policy-note a {
  color: inherit;
  font-size: 9px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.lead-policy-note__link:hover,
.lead-policy-note__link:focus-visible {
  color: rgba(238, 243, 255, 0.72);
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  .framecut-logo__text {
    transition: none;
  }

  .site-nav__toggle-icon span {
    transition: none;
  }

  .site-nav__brand--springing .framecut-logo__divider {
    animation: none;
  }
}

/* --- static/shared/hero-media.css --- */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-media__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

@media (max-width: 920px) {
  /* Match the mobile.css winner: 70% bottom / auto 136% */
  .hero-media__img {
    position: absolute;
    left: 70%;
    bottom: 0;
    width: auto;
    max-width: none;
    min-width: 0;
    height: 136%;
    object-fit: fill;
    object-position: unset;
    transform: translateX(-70%);
  }
}

/* --- static/shared/brand-intro.css --- */
:root {
  --brand-intro-ink: #f7f8ff;
  --brand-intro-accent: rgb(235, 69, 66);
}

.brand-intro {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050715;
  color: var(--brand-intro-ink);
  cursor: default;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1), visibility 420ms step-end;
}

.brand-intro__glow {
  position: absolute;
  width: min(72vw, 940px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 96, 183, 0.25), rgba(17, 24, 60, 0.12) 35%, transparent 70%);
  transform: scale(0.5);
  opacity: 0;
  pointer-events: none;
}

.brand-intro__logo {
  position: relative;
  z-index: 1;
  width: min(68vw, 560px);
  overflow: visible;
}

.brand-intro__word text {
  fill: currentColor;
  font-family: Inter, Manrope, "Helvetica Neue", Arial, sans-serif;
  font-size: 106px;
  font-weight: 780;
  letter-spacing: 0;
}

.brand-intro__word {
  opacity: 0;
}

.brand-intro__word--frame {
  transform: translateX(-72px);
}

.brand-intro__word--cut {
  transform: translateX(72px);
}

.brand-intro__cut {
  stroke: var(--brand-intro-accent);
  stroke-linecap: round;
  stroke-width: 7;
  stroke-dasharray: 138;
  stroke-dashoffset: 138;
  filter: drop-shadow(0 0 14px rgba(235, 69, 66, 0.6));
}

.brand-intro__hint {
  position: absolute;
  bottom: 9vh;
  margin: 0;
  color: rgba(247, 248, 255, 0.52);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  opacity: 0;
  pointer-events: none;
  text-transform: uppercase;
}

.brand-intro--playing .brand-intro__glow {
  animation: brand-intro-glow 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.brand-intro--playing .brand-intro__word {
  animation: brand-intro-word 680ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.brand-intro--playing .brand-intro__word--frame {
  animation-delay: 150ms;
}

.brand-intro--playing .brand-intro__word--cut {
  animation-delay: 300ms;
}

.brand-intro--playing .brand-intro__cut {
  animation: brand-intro-cut 610ms cubic-bezier(0.16, 1, 0.3, 1) 610ms forwards;
}

.brand-intro--can-skip {
  cursor: pointer;
}

.brand-intro--can-skip .brand-intro__hint {
  animation: brand-intro-hint 320ms ease forwards;
  pointer-events: none;
}

.brand-intro--leaving {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

@keyframes brand-intro-glow {
  0% { opacity: 0; transform: scale(0.5); }
  52% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.55; transform: scale(1.18); }
}

@keyframes brand-intro-word {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes brand-intro-cut {
  to { stroke-dashoffset: 0; }
}

@keyframes brand-intro-hint {
  to { opacity: 1; }
}

@media (max-width: 640px) {
  .brand-intro__logo { width: min(82vw, 440px); }
  .brand-intro__hint { bottom: 7vh; font-size: 0.58rem; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-intro { display: none; }
}

/* --- static/shared/messenger-menu.css --- */
.messenger-menu {
  position: relative;
  display: inline-block;
  color: #eef3ff;
}

.messenger-menu__button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #eef3ff;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
  list-style: none;
  white-space: nowrap;
}

.messenger-menu__button::-webkit-details-marker {
  display: none;
}

.messenger-menu__button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 160ms ease;
}

.messenger-menu[open] .messenger-menu__button svg {
  transform: rotate(180deg);
}

.messenger-menu__button:hover,
.messenger-menu__button:focus-visible,
.messenger-menu[open] .messenger-menu__button {
  transform: translateY(-1px);
  border-color: rgba(106, 211, 255, 0.45);
  background: rgba(106, 211, 255, 0.12);
  outline: none;
}

.messenger-menu__list {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 40;
  display: grid;
  width: max-content;
  min-width: 220px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(10, 15, 34, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.messenger-menu__item {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border-radius: 7px;
  color: rgba(238, 243, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.lead-popup__actions .messenger-menu__item {
  display: flex;
  min-height: 42px;
  justify-content: flex-start;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: rgba(238, 243, 255, 0.82);
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 850;
}

.lead-popup__actions .messenger-menu {
  flex: 1 1 250px;
  min-width: min(100%, 250px);
}

.lead-popup__actions .messenger-menu__button {
  width: 100%;
}

.lead-popup__actions .messenger-menu__list {
  position: absolute;
  right: 0;
  top: auto;
  bottom: calc(100% + 8px);
  width: 100%;
  min-width: 0;
  margin-top: 0;
}

.brief-actions .messenger-menu {
  display: inline-block;
}

.brief-actions .messenger-menu__button {
  min-height: 48px;
  border: 0;
  background: #eef3ff;
  color: #080d1f;
  box-shadow: none;
}

.brief-actions .messenger-menu__button:hover,
.brief-actions .messenger-menu__button:focus-visible,
.brief-actions .messenger-menu[open] .messenger-menu__button {
  border-color: transparent;
  background: #ffffff;
  color: #080d1f;
}

.brief-actions .messenger-menu__list {
  left: 0;
  right: auto;
}

.messenger-menu__item:hover,
.messenger-menu__item:focus-visible,
.lead-popup__actions .messenger-menu__item:hover,
.lead-popup__actions .messenger-menu__item:focus-visible {
  background: rgba(106, 211, 255, 0.12);
  color: #ffffff;
  outline: none;
  transform: none;
}

.messenger-menu__icon {
  display: inline-grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.messenger-menu__icon svg,
.messenger-menu__icon img {
  display: block;
  width: 18px;
  height: 18px;
}

.messenger-menu__icon svg:not(.max-logo-icon) {
  fill: currentColor;
}

.messenger-menu__icon--telegram {
  color: #72d8ff;
}

.messenger-menu__icon--max {
  background: transparent;
}

.messenger-menu__icon--max svg {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.messenger-menu__icon--whatsapp {
  color: #25d366;
}

@media (max-width: 640px) {
  .brief-actions .messenger-menu,
  .lead-popup__actions .messenger-menu {
    width: 100%;
  }

  .messenger-menu__button {
    width: 100%;
    white-space: normal;
  }

  .messenger-menu__list {
    right: 0;
    left: 0;
    width: 100%;
    min-width: 0;
  }
}

/* --- static/shared/site-footer.css --- */
.site-footer {
  --footer-ink: #eef3ff;
  --footer-muted: rgba(238, 243, 255, 0.62);
  --footer-line: rgba(255, 255, 255, 0.1);
  --footer-accent: #6ad3ff;
  --footer-cut: #eb4542;
  position: relative;
  margin-top: 8px;
  padding: 0 22px 28px;
  color: var(--footer-ink);
  background: #080c1d;
  isolation: isolate;
}

.site-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 18px;
  background:
    radial-gradient(circle at 9px 9px, #070b22 4.5px, transparent 5px) 0 0 / 18px 18px,
    linear-gradient(var(--footer-line), var(--footer-line)) 0 8px / 100% 1px no-repeat;
  content: "";
  pointer-events: none;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(140px, 1fr));
  gap: 36px 28px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 46px 0 28px;
}

.site-footer__brand {
  max-width: 28rem;
}

.site-footer__logo {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
}

.site-footer__logo .framecut-logo {
  display: block;
  width: auto;
  height: 36px;
}

.site-footer__tagline {
  max-width: 34ch;
  margin: 16px 0 0;
  color: var(--footer-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.site-footer__social {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--footer-ink);
  text-decoration: none;
}

.site-footer__social:hover,
.site-footer__social:focus-visible {
  border-color: rgba(106, 211, 255, 0.5);
  background: rgba(106, 211, 255, 0.12);
  outline: none;
}

.site-footer__social svg,
.site-footer__social img {
  display: block;
  width: 20px;
  height: 20px;
}

.site-footer__social svg:not(.max-logo-icon) {
  fill: currentColor;
}

.site-footer__social--telegram {
  color: #72d8ff;
}

.site-footer__social--max svg {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.site-footer__col h2 {
  margin: 0 0 14px;
  color: rgba(238, 243, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__col ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__col a {
  color: var(--footer-ink);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.site-footer__col a:hover,
.site-footer__col a:focus-visible,
.site-footer__col a[aria-current="page"] {
  color: var(--footer-accent);
  outline: none;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid var(--footer-line);
  color: var(--footer-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.site-footer__bottom a {
  color: inherit;
  text-decoration: none;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

@media (max-width: 920px) {
  .site-footer {
    padding: 0 16px 22px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 40px;
  }

  .site-footer__brand {
    max-width: none;
  }

  .site-footer__col {
    display: none;
  }

  .site-footer__bottom {
    display: grid;
    gap: 8px;
  }
}
