:root {
  --bg: #040405;
  --bg-soft: #0b0c0f;
  --panel: rgba(12, 13, 16, 0.9);
  --panel-soft: rgba(18, 19, 23, 0.92);
  --border: rgba(255, 255, 255, 0.07);
  --border-soft: rgba(255, 255, 255, 0.04);
  --text: #f5f5f6;
  --muted: #848993;
  --muted-strong: #a6abb3;
  --green: #11b37b;
  --purple: #a451ff;
  --blue-glow: rgba(118, 150, 255, 0.2);
  --shadow: 0 45px 120px rgba(0, 0, 0, 0.55);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --content-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #040405;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 50% 28%, rgba(111, 73, 175, 0.09), transparent 16%),
    linear-gradient(180deg, #000 0%, #040405 42%, #050506 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 8%);
  mix-blend-mode: screen;
  opacity: 0.8;
  z-index: 0;
}

a {
  text-decoration: none;
}

.page-wrap {
  position: relative;
  z-index: 1;
}

.site-header {
  position: relative;
  z-index: 5;
  padding: 10px 26px 0;
}

.nav-shell {
  max-width: var(--content-width);
  margin: 0 auto;
}

.navbar {
  --bs-navbar-padding-y: 0;
  min-height: 52px;
}

.navbar-brand {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: #fff;
}

.brand-mark {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: block;
  object-fit: contain;
}

.navbar-nav {
  gap: 1.1rem;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.93rem;
  font-weight: 500;
  padding: 0.25rem 0.3rem;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.88);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.55rem;
  color: #fff;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: auto;
  height: auto;
}

.navbar-toggler-icon::before {
  content: "\F479";
  font-family: "bootstrap-icons";
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
}

.launch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.86rem 1.3rem;
  border-radius: 999px;
  background: rgba(15, 16, 19, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ebecf0;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1;
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.launch-btn:hover,
.launch-btn:focus {
  color: #fff;
  background: rgba(22, 23, 27, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.hero-section {
  position: relative;
  padding: 0px 16px 24px;
}

.hero-stage {
  position: relative;
  max-width: 1740px;
  margin: 0 auto;
  min-height: clamp(700px, 52vw, 920px);
  border-radius: 0 0 30px 30px;
  overflow: hidden;
  isolation: isolate;
  animation: fade-up 0.9s ease both;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/main_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: min(120vw, 2140px) auto;
  z-index: -2;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 14%, rgba(0, 0, 0, 0.06) 52%, rgba(0, 0, 0, 0.78) 84%, #050506 100%),
    radial-gradient(circle at center 67%, rgba(146, 169, 255, 0.18), transparent 22%),
    radial-gradient(circle at center 30%, rgba(183, 118, 255, 0.08), transparent 14%);
  z-index: -1;
}

.hero-content {
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 1rem calc(7.2rem + 30px);
  text-align: center;
}

.hero-copy {
  max-width: 760px;
  animation: fade-up 1.2s ease 0.12s both;
}

.hero-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.93);
  text-wrap: balance;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.72);
}

.body-copy-light {
  font-weight: 300 !important;
  font-variation-settings: "wght" 300;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.65rem;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-width: 154px;
  padding: 1rem 1.45rem;
  border-radius: 17px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cta-primary {
  color: #0a0b0f;
  background: linear-gradient(180deg, #ffffff 0%, #f0f1f5 100%);
  box-shadow: 0 14px 30px rgba(255, 255, 255, 0.14);
}

.cta-secondary {
  color: #eceef3;
  background: linear-gradient(180deg, rgba(31, 34, 42, 0.85) 0%, rgba(29, 31, 39, 0.9) 100%);
  border-color: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
}

.cta-primary:hover,
.cta-primary:focus {
  transform: translateY(-1px);
  color: #0a0b0f;
}

.cta-secondary:hover,
.cta-secondary:focus {
  transform: translateY(-1px);
  color: inherit;
}

.stack-section {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 10px 24px 20px;
}

.stack-heading {
  max-width: 1000px;
  animation: fade-up 0.9s ease 0.2s both;
}

.section-kicker {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.section-title {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0;
  font-weight: 700;
  white-space: nowrap;
}

.section-lead {
  margin: 0.8rem 0 0;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--muted);
}

.build-section {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px 150px;
}

.build-heading {
  max-width: 920px;
  animation: fade-up 0.9s ease 0.2s both;
}

.build-heading .section-lead {
  max-width: none;
  white-space: nowrap;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 34px;
  margin-top: 50px;
}

.build-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 30px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(15, 16, 18, 0.62), rgba(7, 8, 9, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 26px 80px rgba(0, 0, 0, 0.3);
  animation: fade-up 0.9s ease both;
}

.build-card:nth-child(2) {
  animation-delay: 0.08s;
}

.build-card:nth-child(3) {
  animation-delay: 0.16s;
}

.build-card.is-active {
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, rgba(18, 19, 21, 0.92), rgba(8, 9, 10, 0.92));
}

.build-card-content {
  position: relative;
  z-index: 2;
  padding: 0;
}

.build-track {
  margin: 0 0 22px;
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.24);
}

.build-card h3 {
  margin: 0;
  max-width: 520px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
}

.build-card p:not(.build-track) {
  margin: 16px 0 0;
  max-width: 540px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.5);
}

.build-visual {
  position: relative;
  left: 50%;
  z-index: 1;
  width: min(116%, 560px);
  margin: 44px 0 0;
  transform: translateX(-50%);
  opacity: 0.46;
  filter: brightness(1.35) contrast(1.06);
}

.build-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.build-card.is-active .build-visual {
  width: min(110%, 540px);
  opacity: 0.48;
  filter: brightness(1.35) contrast(1.06);
}

.build-card:nth-child(2) .build-visual {
  width: min(116%, 565px);
}

.build-card:nth-child(3) .build-visual {
  width: min(122%, 590px);
}

.build-corner {
  position: absolute;
  z-index: 3;
  width: 9px;
  height: 9px;
  background: #fff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.55);
}

.build-corner-top-left {
  top: -1px;
  left: -1px;
}

.build-corner-top-right {
  top: -1px;
  right: -1px;
}

.build-corner-bottom-left {
  bottom: -1px;
  left: -1px;
}

.build-corner-bottom-right {
  right: -1px;
  bottom: -1px;
}

.workflow-section {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px 100px;
  overflow: hidden;
}

.workflow-heading {
  max-width: 1120px;
  animation: fade-up 0.9s ease 0.2s both;
}

.workflow-panel {
  position: relative;
}

.workflow-panel img {
  display: block;
  width: 100%;
  max-width: 950px;
  height: auto;
  transform: translateX(-4.5455%);
}

.review-section {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px 160px;
}

.review-heading {
  max-width: 1120px;
  animation: fade-up 0.9s ease 0.2s both;
}

.review-panel {
  position: relative;
  margin: 74px auto 0;
  max-width: 450px;
  animation: fade-up 0.9s ease 0.32s both;
}

.review-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.monitor-section {
  position: relative;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px 70px;
}

.monitor-heading {
  max-width: 1120px;
  animation: fade-up 0.9s ease 0.2s both;
}

.monitor-title {
  white-space: normal;
}

.monitor-copy p {
  margin: 0 0 14px;
}

.monitor-copy p:last-child {
  margin-bottom: 0;
}

.monitor-panel {
  position: relative;
  margin: 70px 0 0;
  max-width: 1000px;
  animation: fade-up 0.9s ease 0.32s both;
}

.monitor-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.stack-visual {
  width: 100%;
  margin-left: -10px;
  margin-right: -10px;
  overflow: hidden;
  animation: fade-up 1s ease 0.35s both;
}

.stack-visual img {
  display: block;
  width: 110%;
  max-width: none;
  height: auto;
  margin-left: -5%;
}

.site-footer {
  position: relative;
  min-height: 650px;
  padding: 0 24px 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 4, 5, 0.1) 0%, rgba(4, 4, 5, 0.45) 34%, rgba(4, 4, 5, 0.92) 86%, #040405 100%),
    url("../img/footer_bg.png") center top / cover no-repeat;
  isolation: isolate;
  animation: fade-up 0.9s ease 0.18s both;
}

.footer-video {
  position: absolute;
  top: 0;
  left: -50%;
  z-index: -2;
  width: 150%;
  height: auto;
  min-height: 0;
  object-fit: fill;
  object-position: top left;
  opacity: 0.52;
  pointer-events: none;
}

.footer-shell {
  position: relative;
  max-width: var(--content-width);
  min-height: 650px;
  margin: 0 auto;
  padding: 238px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  height: 250px;
  background: linear-gradient(
    180deg,
    #050506 0%,
    rgba(5, 5, 6, 0.86) 28%,
    rgba(5, 5, 6, 0.42) 68%,
    rgba(5, 5, 6, 0) 100%
  );
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 17%),
    linear-gradient(90deg, rgba(4, 4, 5, 0.78) 0%, rgba(4, 4, 5, 0.08) 42%, rgba(4, 4, 5, 0.72) 100%);
  pointer-events: none;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  text-align: center;
}

.footer-title {
  margin: 0;
  max-width: 820px;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 800;
  text-wrap: balance;
}

.footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  min-width: 146px;
  min-height: 50px;
  padding: 0.95rem 1.28rem;
  border-radius: 14px;
  color: #090a0d;
  background: linear-gradient(180deg, #fff 0%, #eceef3 100%);
  border: 1px solid rgba(255, 255, 255, 0.54);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 18px 44px rgba(255, 255, 255, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-action:hover,
.footer-action:focus {
  color: #090a0d;
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(255, 255, 255, 0.17);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(360px, 1.25fr) minmax(220px, 1fr);
  gap: 44px;
  align-items: end;
  padding-top: 0;
  min-height: 142px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  width: fit-content;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-brand-link:hover,
.footer-brand-link:focus {
  color: #fff;
}

.footer-mark {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-tagline,
.footer-note,
.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.84rem;
  line-height: 1.5;
  font-weight: 400;
}

.footer-note {
  margin-top: 58px;
  font-size: 0.78rem;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 58px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 2.05rem;
}

.footer-nav a,
.footer-contact-link {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus,
.footer-contact-link:hover,
.footer-contact-link:focus {
  color: #fff;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 62px;
  text-align: right;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.6rem;
}

.language-switcher {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.62rem;
  flex-wrap: wrap;
}

.language-switcher a {
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.language-switcher a:hover,
.language-switcher a:focus {
  color: rgba(255, 255, 255, 0.72);
}

.language-switcher a.is-active {
  color: #fff;
  font-weight: 800;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus {
  transform: translateY(-2px);
}

.footer-social-link img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199.98px) {
  .build-section {
    max-width: 820px;
    padding-bottom: 110px;
  }

  .build-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 52px;
  }

  .workflow-section {
    padding-bottom: 120px;
  }

  .review-section {
    padding-bottom: 120px;
  }

  .monitor-section {
    padding-bottom: 70px;
  }

  .footer-shell {
    min-height: 600px;
    padding-top: 188px;
  }

  .footer-bottom {
    grid-template-columns: minmax(180px, 0.9fr) minmax(300px, 1.2fr) minmax(180px, 0.9fr);
    gap: 24px;
  }

  .footer-title {
    font-size: clamp(40px, 5vw, 58px);
  }

  .footer-center {
    gap: 42px;
  }

  .footer-note {
    margin-top: 42px;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-meta {
    align-items: flex-end;
    text-align: right;
  }

  .footer-contacts {
    align-items: flex-end;
  }

}

@media (max-width: 991.98px) {
  .site-header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-shell {
    max-width: none;
  }

  .navbar-collapse {
    margin-top: 0.9rem;
    padding: 1rem 1.05rem 0.4rem;
    border-radius: 18px;
    background: rgba(9, 10, 13, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
  }

  .navbar-nav {
    gap: 0.4rem;
  }

  .launch-btn {
    margin-top: 0.9rem;
    width: fit-content;
    justify-content: center;
  }

  .hero-stage::before {
    background-size: min(1500px, 152%) auto;
    background-position: center top;
  }

  .site-footer {
    min-height: auto;
    padding: 0 24px 30px;
  }

  .footer-video {
    left: -70%;
    width: 190%;
    opacity: 0.46;
  }

  .site-footer::before {
    height: 230px;
  }

  .footer-shell {
    min-height: 700px;
    padding-top: 168px;
    gap: 80px;
    justify-content: flex-start;
  }

  .footer-cta {
    gap: 26px;
  }

  .footer-title {
    max-width: 680px;
    font-size: clamp(40px, 7vw, 56px);
  }

  .footer-action {
    align-self: center;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand meta"
      "center center";
    gap: 38px 32px;
    align-items: end;
    min-height: 0;
  }

  .footer-brand {
    grid-area: brand;
    align-items: flex-start;
    text-align: left;
  }

  .footer-center {
    grid-area: center;
    align-items: center;
    gap: 30px;
  }

  .footer-meta {
    grid-area: meta;
    align-items: flex-end;
    gap: 28px;
    text-align: right;
  }

  .footer-note {
    margin-top: 24px;
  }

  .footer-nav,
  .footer-socials {
    justify-content: center;
  }

  .footer-contacts {
    align-items: flex-end;
  }

}

@media (max-width: 767.98px) {
  .hero-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-stage {
    min-height: 620px;
  }

  .hero-stage::before {
    background-size: contain;
    background-position: center top;
  }

  .hero-content {
    padding-bottom: calc(4.8rem + 30px);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .cta-primary,
  .cta-secondary {
    width: fit-content;
  }

  .stack-section {
    padding: 0 24px 84px;
  }

  .stack-visual {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
  }

  .stack-visual img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .section-lead {
    max-width: none;
  }

  .section-title {
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
  }

  .build-section {
    padding: 0 24px 88px;
  }

  .workflow-section {
    padding: 0 24px 92px;
  }

  .workflow-panel img {
    max-width: 100%;
    margin-left: 0;
    transform: none;
  }

  .review-section {
    padding: 0 24px 92px;
  }

  .monitor-section {
    padding: 0 24px 58px;
  }

  .review-panel {
    margin-top: 42px;
    max-width: 100%;
  }

  .monitor-panel {
    margin-top: 42px;
  }

  .build-heading {
    padding-left: 0;
  }

  .build-heading .section-lead {
    white-space: normal;
  }

  .build-grid {
    margin-top: 40px;
  }

  .build-card {
    border-radius: 18px;
    padding: 30px;
  }

  .build-card.is-active {
    border-radius: 0;
  }

  .build-card-content {
    padding: 0;
  }

  .build-track {
    margin-bottom: 18px;
  }

  .build-visual,
  .build-card.is-active .build-visual,
  .build-card:nth-child(2) .build-visual,
  .build-card:nth-child(3) .build-visual {
    width: min(112%, 507px);
    margin-top: 34px;
  }

  .site-footer {
    padding: 0 24px 28px;
    min-height: auto;
  }

  .footer-video {
    left: -120%;
    width: 260%;
    opacity: 0.42;
  }

  .site-footer::before {
    height: 210px;
    background: linear-gradient(
      180deg,
      #050506 0%,
      rgba(5, 5, 6, 0.9) 30%,
      rgba(5, 5, 6, 0.5) 72%,
      rgba(5, 5, 6, 0) 100%
    );
  }

  .footer-shell {
    min-height: 680px;
    padding-top: 124px;
    gap: 88px;
    justify-content: flex-start;
  }

  .footer-cta {
    gap: 22px;
  }

  .footer-title {
    max-width: 360px;
    font-size: clamp(38px, 12vw, 50px);
    line-height: 1.04;
    letter-spacing: -0.055em;
  }

  .footer-action {
    width: fit-content;
    min-height: 48px;
    padding: 0.88rem 1.18rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "center"
      "meta";
    justify-items: center;
    gap: 30px;
  }

  .footer-brand,
  .footer-center,
  .footer-meta,
  .footer-contacts {
    align-items: center;
    text-align: center;
  }

  .footer-note {
    margin-top: 10px;
  }

  .footer-center {
    gap: 28px;
  }

  .footer-nav {
    justify-content: center;
    gap: 0.75rem 1.22rem;
  }

  .footer-contacts,
  .footer-socials,
  .language-switcher {
    justify-content: center;
  }

  .footer-socials {
    max-width: 267px;
  }

  .footer-meta {
    gap: 22px;
  }

}

@media (max-width: 479.98px) {
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-video {
    left: -145%;
    width: 310%;
  }

  .footer-shell {
    min-height: 650px;
    padding-top: 112px;
    gap: 76px;
  }

  .footer-title {
    max-width: 310px;
    font-size: clamp(34px, 12vw, 44px);
  }

  .footer-nav {
    gap: 0.72rem 1rem;
  }

  .footer-socials {
    gap: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
