.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(6, 15, 26, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(14px);
}

.header-shell {
  height: 100%;
  display: grid;
  grid-template-columns: 190px 1fr 150px;
  align-items: center;
  gap: 24px;
}

.brand {
  width: 122px;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(30px, 4vw, 64px);
}

.primary-nav a {
  color: #edf2f7;
  font-size: 14px;
  transition: color .2s ease;
}

.primary-nav a:hover {
  color: var(--gold);
}

.language-menu {
  --language-menu-width: 132px;
  position: relative;
  justify-self: end;
  width: var(--language-menu-width);
  z-index: 12;
}

.language-trigger {
  width: 100%;
  min-width: 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 14px;
  color: #b9c1cc;
  background: rgba(13, 27, 42, .78);
  border: 1px solid rgba(201, 212, 225, .24);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
  color: #fff;
  border-color: rgba(201, 212, 225, .55);
  background: rgba(13, 27, 42, .94);
}

.language-chevron {
  width: 11px;
  height: 11px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform .2s ease;
}

.language-trigger[aria-expanded="true"] .language-chevron {
  transform: translateY(3px) rotate(225deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  width: 100%;
  min-width: 0;
  padding: 16px 0 20px;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  background: rgba(7, 17, 29, .93);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .3);
  backdrop-filter: blur(18px);
}

.language-options[hidden] {
  display: none;
}

.language-option {
  display: block;
  padding: 7px 14px;
  color: #d7dde6;
  font-size: 14px;
  line-height: 1.45;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-current {
  color: #fff;
  background: rgba(255, 255, 255, .055);
}

.hero {
  --ticker-height: clamp(42px, 5.208vw, 100px);
  --hero-media-height: max(540px, 46.875vw);
  --ticker-start: clamp(
    calc(var(--hero-media-height) / 2),
    calc(100svh - var(--header-height) - var(--ticker-height)),
    var(--hero-media-height)
  );
  --ticker-scroll-offset: 0px;
  position: relative;
  height: calc(var(--hero-media-height) + var(--ticker-height));
  min-height: 0;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 35%, rgba(242, 173, 55, .28), transparent 32%),
    linear-gradient(135deg, #1b2a38, #07111d 70%);
}

.hero-video,
.hero-shade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: var(--hero-media-height);
}

.hero-video {
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity .45s ease;
}

.hero.has-video-frame .hero-video {
  opacity: 1;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 12, 21, .58), rgba(5, 13, 22, .18) 58%, rgba(4, 12, 21, .32)),
    linear-gradient(0deg, rgba(4, 12, 21, .56), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - var(--content-gutter)), var(--hero-content));
  margin-top: clamp(80px, 7.292vw, 140px);
}

.hero-title {
  max-width: 900px;
  font-size: clamp(42px, 3.646vw, 70px);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: .02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .4);
}

.hero-title span {
  font-weight: 700;
}

html[lang="en"] .hero-title {
  line-height: 1.12;
}

.hero p {
  max-width: 670px;
  margin-top: clamp(10px, .938vw, 18px);
  margin-bottom: clamp(30px, 3.854vw, 74px);
  color: #f3f4f5;
  font-size: clamp(14px, .938vw, 18px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.button {
  width: clamp(158px, 10.417vw, 200px);
  height: clamp(44px, 2.604vw, 50px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 5px;
  text-align: center;
  font-weight: 700;
  transition: box-shadow .28s ease;
}

.button-primary {
  color: #121212;
  background: var(--gold);
  box-shadow:
    0 3px 8px rgba(0, 0, 0, .22),
    0 0 0 1px rgba(255, 235, 158, .1);
}

.button-primary:hover {
  background: var(--gold);
  box-shadow:
    0 0 0 1px rgba(255, 239, 177, .34),
    0 0 8px rgba(255, 215, 77, .34),
    0 0 18px rgba(255, 196, 32, .24),
    0 6px 22px rgba(255, 171, 0, .18);
}

.hero-watermark {
  position: absolute;
  z-index: 1;
  top: calc(var(--ticker-start) + var(--ticker-scroll-offset));
  left: 50%;
  bottom: auto;
  width: min(62.5vw, 1200px);
  max-width: none;
  height: auto;
  aspect-ratio: 1200 / 191;
  object-fit: fill;
  transform: translate(-50%, -100%);
  opacity: .42;
  pointer-events: none;
}

.ticker {
  --ticker-repeat-gap: clamp(160px, 12vw, 240px);
  position: absolute;
  z-index: 4;
  top: var(--ticker-start);
  left: 0;
  right: 0;
  height: var(--ticker-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: rgba(6, 15, 26, .96);
  transform: translateY(var(--ticker-scroll-offset));
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 42s linear infinite;
  will-change: transform;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.hero:not(.is-in-view) .ticker-track {
  animation-play-state: paused;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: var(--ticker-repeat-gap);
}

.ticker-stat,
.ticker-clients {
  position: relative;
  color: #a5a5a5;
  font-size: clamp(14px, 1.25vw, 24px);
  letter-spacing: .08em;
  white-space: nowrap;
}

.ticker-stat {
  padding-inline: 28px;
}

.ticker-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  background: url("https://www.pusscats.com/page/tl/assets/decor/ticker-dot.png") center / contain no-repeat;
  transform: translateY(-50%);
}

.ticker-clients {
  margin-left: 72px;
}

@keyframes ticker-scroll {
  to { transform: translateX(-50%); }
}

.dark-section {
  position: relative;
  background: var(--ink);
}

.advantages,
.projects,
.team-section,
.partners,
.contact-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.advantages,
.projects,
.partners {
  padding: var(--section-space) 0;
}

.section-title {
  margin-bottom: var(--section-title-gap);
  color: #f3f5f7;
  font-size: var(--section-title-size);
  line-height: 1.25;
  font-weight: 600;
}

.section-title > span {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 18px;
  margin-left: 14px;
  vertical-align: bottom;
}

.section-title > span::before,
.section-title > span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  background: var(--gold-deep);
}

.section-title > span::before {
  top: 3px;
  width: 34px;
}

.section-title > span::after {
  bottom: 3px;
  width: 58px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--advantage-grid-gap);
}

.advantage-card {
  position: relative;
  min-height: 260px;
  padding: 34px 28px 28px;
  overflow: hidden;
  border-radius: 14px;
  background: url("https://www.pusscats.com/page/tl/assets/ui/advantage-card.png") center / 100% 100% no-repeat;
  transition: transform .3s ease;
}

.advantage-card::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 0;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 202, 55, .96) 50%, transparent);
  box-shadow: 0 -3px 10px rgba(255, 202, 55, .45);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}

.advantage-card img {
  width: 36px;
  height: 36px;
  margin-bottom: 25px;
}

.advantage-heading {
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 700;
}

.advantages-en .advantage-heading {
  min-height: 3.3em;
}

.advantage-card p {
  margin: 0;
  color: #e1e4e8;
  font-size: 14px;
  line-height: 1.7;
}

.projects {
  padding-top: 75px;
}

.dark-section.projects {
  padding-bottom: 0;
}

.wegame-feature {
  display: grid;
  grid-template-columns: 338px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 110px;
}

.wegame-heading {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 600;
}

.project-detail-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.wegame-copy p {
  color: #d6dbe1;
  font-size: 14px;
}

.wegame-copy p::before {
  content: "✓";
  box-sizing: border-box;
  display: inline-flex;
  width: 10px;
  height: 10px;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
  vertical-align: 1px;
}

.wegame-copy .project-meta {
  margin-bottom: 8px;
  color: #fff;
}

.wegame-gallery {
  min-width: 0;
  width: calc(100% + max(24px, calc(50vw - 570px)));
  max-width: calc(100% + max(24px, calc(50vw - 570px)));
  overflow: hidden;
}

.project-track {
  display: flex;
  gap: 13px;
  width: 100%;
  max-width: 100%;
  padding: 15px 0 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline-start: 0;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  overscroll-behavior-x: contain;
}

.project-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.project-track.is-dragging .poster-card {
  pointer-events: none;
}

.project-track::-webkit-scrollbar {
  display: none;
}

.poster-card {
  position: relative;
  flex: 0 0 calc(33.333333% - 8.666667px);
  width: calc(33.333333% - 8.666667px);
  max-width: none;
  aspect-ratio: 420 / 586;
  padding: 1px;
  overflow: visible;
  scroll-snap-align: start;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform-origin: center;
  transition: transform .28s ease;
}

.poster-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  clip-path: polygon(6.5% 0, 100% 0, 93.5% 100%, 0 100%);
  transition: background-color .2s ease;
}

.poster-card.is-position-first::before {
  background: #ffcd38;
}

.poster-card.is-position-second .project-art,
.poster-card.is-position-third .project-art {
  opacity: .6;
}

.poster-card.is-position-third {
  transform: scale(.9);
}

.language-badge {
  position: absolute;
  z-index: 3;
  right: 8%;
  top: -15px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(7, 17, 29, .93);
  color: #e9edf2;
  font-size: 12px;
}

.project-art,
.project-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
}

.project-art {
  z-index: 1;
  width: 100%;
  height: 100%;
  clip-path: polygon(6.5% 0, 100% 0, 93.5% 100%, 0 100%);
  transition: opacity .28s ease;
}

.project-art img,
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-dots {
  display: flex;
  width: calc((100% - 26px) / 3);
  justify-content: space-between;
  min-height: 14px;
  margin-top: 18px;
}

.project-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #9299a2;
  cursor: pointer;
}

.project-dot.is-active {
  background: var(--gold);
}

.project-group {
  --project-group-space: 100px;
  margin-top: var(--project-group-space);
}

.subsection-title {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 85px;
  font-size: 27px;
  font-weight: 500;
}

.subsection-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 203, 56, .2);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--project-grid-row-gap) var(--project-grid-column-gap);
}

.project-card-title {
  margin: 16px 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.project-card p,
.wide-project-card p {
  margin-bottom: 2px;
  color: #d1d6dd;
  font-size: 13px;
}

.project-media {
  width: 100%;
  aspect-ratio: 8 / 3;
  border-radius: 10px;
  transition: transform .45s cubic-bezier(.2, .7, .2, 1);
}

.project-card,
.wide-project-card {
  overflow: hidden;
}

.other-projects {
  max-width: none;
  margin-bottom: var(--project-group-space);
}

.other-projects .wide-project-card {
  width: 100%;
  max-width: none;
}

.wide-project-card {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(250px, 1.25fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 32px;
}

.wide-project-card > div:last-child {
  width: 100%;
  min-width: 0;
  padding-right: 10px;
}

.wide-project-card p {
  width: 100%;
  max-width: none;
}

.other-projects .wide-project-card:last-child {
  margin-bottom: 0;
}

.wide-project-card .project-card-title {
  margin-top: 0;
}

.light-cut {
  position: relative;
  z-index: 2;
  color: var(--paper-text);
  background: var(--paper);
  clip-path: polygon(7% 0, 93% 0, 95% 28px, 100% 28px, 100% calc(100% - 28px), 95% calc(100% - 28px), 93% 100%, 7% 100%, 5% calc(100% - 28px), 0 calc(100% - 28px), 0 28px, 5% 28px);
}

.team-section {
  padding: 100px 0 118px;
}

.team-content {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.team-title {
  max-width: 830px;
  margin-bottom: 28px;
  font-size: clamp(31px, 3vw, 48px);
  font-weight: 700;
  line-height: 1;
}

.team-title span {
  font-size: .78em;
}

.team-content > p {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  color: #252a30;
  font-size: 15px;
}

.community-games {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  column-gap: 14px;
  row-gap: 12px;
  width: 100%;
  margin: 34px 0 0;
}

.community-games > img {
  grid-column: span 2;
  width: 100%;
  aspect-ratio: 2.08 / 1;
  object-fit: cover;
  border-radius: 999px;
}

.community-games > img:nth-child(5) {
  grid-column: 2 / span 2;
}

.community-games > img:nth-child(6) {
  grid-column: 4 / span 2;
}

.community-games > img:nth-child(7) {
  grid-column: 6 / span 2;
}

.team-watermark {
  position: absolute;
  z-index: 0;
  left: 50%;
  right: auto;
  bottom: 0;
  width: min(62.5vw, 1200px);
  max-width: none;
  height: auto;
  aspect-ratio: 1200 / 157;
  object-fit: fill;
  transform: translateX(-50%);
  opacity: .18;
  pointer-events: none;
}

.partners .content-shell {
  width: min(calc(100% - var(--content-gutter)), var(--partner-content));
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  gap: 12px;
  width: 100%;
  max-width: var(--partner-content);
}

.partner-grid > .partner-logo {
  --logo-inline-space: 36px;
  --logo-block-space: 28px;
  position: relative;
  width: 100%;
  max-width: 224px;
  height: auto;
  max-height: 129px;
  aspect-ratio: 224 / 129;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #e7e7e7;
}

.partner-logo img {
  position: absolute;
  inset: 0;
  display: block;
  width: calc(100% - var(--logo-inline-space));
  height: calc(100% - var(--logo-block-space));
  max-width: none;
  max-height: none;
  margin: auto;
  object-fit: contain;
}

.asset-note {
  margin: 18px 0 0;
  color: #707b88;
  font-size: 12px;
}

.contact-section {
  padding: var(--section-space) 0;
  background: var(--paper);
  color: var(--paper-text);
  color-scheme: light;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(520px, 1.25fr);
  gap: 110px;
  padding-top: 65px;
  border-top: 1px solid #dedede;
}

.contact-block + .contact-block {
  margin-top: 60px;
}

.contact-heading {
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.contact-block p {
  margin-bottom: 16px;
  font-size: 17px;
}

.contact-item {
  width: min(100%, 340px);
  display: block;
  margin-top: 10px;
  padding: 10px 16px;
  background: var(--ink);
  color: #fff;
}

.contact-form label,
.contact-form legend {
  display: block;
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 700;
}

.contact-form,
.form-section,
.contact-form fieldset {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.contact-form fieldset {
  min-width: 0;
  margin: 26px 0;
  padding: 0;
  border: 0;
}

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

.field-wrap label {
  margin: 0 0 4px 2px;
  color: #4b5057;
  font-size: 12px;
  font-weight: 600;
}

.field-full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #ededed;
  color: #222;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form input,
.contact-form select {
  height: 54px;
  padding: 0 18px;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
  background-color: #e3e3e3;
  background-image:
    linear-gradient(45deg, transparent 50%, #8b929b 50%),
    linear-gradient(135deg, #8b929b 50%, transparent 50%);
  background-position:
    calc(100% - 25px) 50%,
    calc(100% - 19px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.contact-form select option {
  background: #e3e3e3;
  color: #222;
}

.contact-form select.custom-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.contact-form select.custom-select-native[hidden] {
  display: none;
}

.custom-select {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.custom-select-trigger {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: 54px;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #e3e3e3;
  color: #777f88;
  font: inherit;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.custom-select-trigger::after {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-left: auto;
  border-right: 2px solid #8b929b;
  border-bottom: 2px solid #8b929b;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}

.custom-select-trigger.has-value {
  color: #222;
}

.custom-select.is-open .custom-select-trigger,
.custom-select-trigger:focus-visible {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(255, 203, 56, .18);
}

.custom-select.is-open .custom-select-trigger::after {
  transform: translateY(3px) rotate(225deg);
}

.custom-select-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-select-options {
  position: absolute;
  z-index: 30;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  max-height: 270px;
  overflow-y: auto;
  border: 1px solid #c8c8c8;
  border-radius: 8px;
  background: #e3e3e3;
  box-shadow: 0 10px 24px rgba(15, 20, 28, .18);
}

.custom-select-options[hidden] {
  display: none;
}

.custom-select-option {
  display: block;
  width: 100%;
  padding: 13px 18px;
  border: 0;
  background: #e3e3e3;
  color: #222;
  font: inherit;
  text-align: left;
  cursor: pointer;
  outline: none;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  background: #d4d4d4;
}

.custom-select-option[aria-selected="true"] {
  font-weight: 700;
}

.contact-form textarea {
  min-height: 170px;
  padding: 15px 18px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-deep);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 203, 56, .18);
}

.contact-form select:focus {
  background-color: #e3e3e3;
}

.contact-form .is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 2px rgba(217, 54, 62, .12);
}

.field-error {
  min-height: 18px;
  margin: 3px 0 0;
  color: var(--danger);
  font-size: 12px;
  line-height: 1.4;
}

.field-error:empty {
  min-height: 0;
  margin: 0;
}

.submit-button {
  position: relative;
  width: 104px;
  height: 54px;
  padding: 0 20px 0 8px;
  border: 0;
  background: transparent url("https://www.pusscats.com/page/tl/assets/ui/submit-button.png") center / 100% 100% no-repeat;
  color: #fff;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease, opacity .2s ease;
}

.submit-button:hover {
  filter: brightness(1.32);
  transform: translateY(-2px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: .58;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--danger);
  font-size: 14px;
}

.form-success {
  min-height: 360px;
  place-content: center;
  text-align: center;
}

.form-success:not([hidden]) {
  display: grid;
}

.form-success strong {
  color: #151a21;
  font-size: 28px;
}

.site-footer {
  min-height: 230px;
  padding: 62px 0 74px;
  background: #151515;
  color: #686e75;
  border-bottom: 2px solid #213149;
  font-size: 14px;
  text-align: center;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  margin-bottom: 24px;
}

.site-footer nav a {
  position: relative;
  padding: 0 16px;
}

.site-footer nav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 14px;
  background: #72767b;
  transform: translateY(-50%);
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer .footer-legal {
  margin: 0 auto;
  line-height: 1.9;
}

@media (hover: hover) and (pointer: fine) {
  .advantage-card:hover {
    transform: translateY(-5px);
  }

  .advantage-card:hover::after {
    opacity: 1;
  }

  .project-card:hover .project-media,
  .wide-project-card:hover .project-media {
    transform: scale(1.06);
  }

}
