/* ==========================================================================
   stats
   ========================================================================== */

.stats {
  position: relative;
  padding-block: clamp(26px, 3vw, 38px);
  background: linear-gradient(180deg, rgba(163, 230, 53, 0.035), transparent 60%), var(--c-bg-2);
  border-block: 1px solid var(--c-line);
}

.stats__ornament {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background: url(../images2/line.png) center / 1225px 16px no-repeat;
  opacity: 0.25;
  mix-blend-mode: screen;
  transform: translateY(-50%);
  pointer-events: none;
}

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

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: clamp(20px, 3vw, 32px) clamp(12px, 2vw, 24px);
  text-align: center;
  border-left: 1px solid var(--c-line);
}

.stats__item:first-child {
  border-left: none;
}

.stats__num {
  font-family: var(--ff-display);
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, var(--c-acid-2), var(--c-emerald));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(163, 230, 53, 0.25));
}

.stats__label {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-txt-3);
}

@media (max-width: 780px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__item {
    border-left: none;
    border-top: 1px solid var(--c-line);
  }

  .stats__item:nth-child(-n + 2) {
    border-top: none;
  }

  .stats__item:nth-child(odd) {
    border-right: 1px solid var(--c-line);
  }
}


/* ==========================================================================
   features
   ========================================================================== */

.feats {
  padding-block: clamp(40px, 5vw, 74px);
}

.feats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feat {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  min-height: 230px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.feat::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(6, 8, 6, 0.2) 0%,
    rgba(6, 8, 6, 0.78) 56%,
    rgba(6, 8, 6, 0.95) 100%
  );
  pointer-events: none;
}

.feat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 242, 74, 0.55), transparent);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}

.feat:hover,
.feat:focus-within {
  transform: translateY(-5px);
  border-color: var(--c-line-2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 60px -24px rgba(163, 230, 53, 0.28);
}

.feat:hover::after,
.feat:focus-within::after {
  opacity: 1;
}

.feat__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.feat__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  filter: saturate(1.75) contrast(1.18) brightness(0.72) blur(0.5px);
  transform: scale(1.06);
  transition:
    transform 0.7s var(--ease),
    filter 0.7s var(--ease);
}

.feat:hover .feat__media img,
.feat:focus-within .feat__media img {
  transform: scale(1.12);
  filter: saturate(1.9) contrast(1.2) brightness(0.95) blur(0);
}

.feat__body {
  margin-top: auto;
  padding: clamp(20px, 2.4vw, 30px);
}

.feat__title {
  font-family: var(--ff-display);
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.15;
  color: var(--c-txt);
  margin: 0 0 10px;
}

.feat__text {
  font-family: var(--ff-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-txt-2);
  max-width: 46ch;
  margin: 0;
}

.feat--tall {
  min-height: 420px;
}

.feat--tall .feat__title {
  font-size: clamp(26px, 2.6vw, 40px);
}

.feat--banner .feat__body {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 60px);
  width: 100%;
  margin-block: auto;
}

/* the art is a low frieze, so the strip crops to its glowing band */
.feat--banner .feat__media img {
  object-position: 50% 58%;
  transform: scale(1.02);
  filter: saturate(1.2) contrast(1.05) brightness(1.15);
}

.feat--banner:hover .feat__media img,
.feat--banner:focus-within .feat__media img {
  transform: scale(1.06);
  filter: saturate(1.3) contrast(1.08) brightness(1.35);
}

.feat--banner::before {
  background: linear-gradient(
    90deg,
    rgba(6, 8, 6, 0.9) 0%,
    rgba(6, 8, 6, 0.75) 34%,
    rgba(6, 8, 6, 0.3) 62%,
    rgba(6, 8, 6, 0.5) 100%
  );
}

.feat--banner .feat__title {
  margin-bottom: 0;
  flex-shrink: 0;
}

.feat--banner .feat__text {
  flex: 1 1 200px;
  margin: 0;
}

.feat--banner .feat__link {
  margin-top: 0;
  margin-left: auto;
}

.feat__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--c-line-2);
  color: var(--c-acid);
  background: rgba(8, 11, 9, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.feat__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-acid);
  transition: color 0.25s var(--ease);
}

.feat__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.feat__link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}

.feat__link:hover,
.feat__link:focus-visible {
  color: var(--c-acid-2);
}

.feat__link:hover::after,
.feat__link:focus-visible::after {
  transform: scaleX(1);
}

.feat__link:hover svg,
.feat__link:focus-visible svg {
  transform: translateX(4px);
}

.feat__link:focus-visible {
  outline: 2px solid var(--c-acid);
  outline-offset: 4px;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .feats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat--a,
  .feat--f {
    grid-column: 1 / -1;
  }

  .feat--banner {
    min-height: 200px;
  }
}

@media (min-width: 1100px) {
  .feats__grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(230px, auto);
  }

  .feat--a {
    grid-column: 1 / 6;
    grid-row: 1 / 3;
  }

  .feat--b {
    grid-column: 6 / 10;
    grid-row: 1;
  }

  .feat--c {
    grid-column: 10 / 13;
    grid-row: 1;
  }

  .feat--d {
    grid-column: 6 / 10;
    grid-row: 2;
  }

  .feat--e {
    grid-column: 10 / 13;
    grid-row: 2;
  }

  .feat--f {
    grid-column: 1 / 13;
    grid-row: 3;
  }
}


/* ==========================================================================
   stages
   ========================================================================== */

.stages {
  padding-block: clamp(40px, 5vw, 74px);
}

.stages__rail {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 32px);
}

.stages__rail::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-line-2), transparent);
  pointer-events: none;
  z-index: 0;
}

.stage {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 2.6vw, 38px);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--c-panel-2), var(--c-panel));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.stage:hover,
.stage:focus-within {
  transform: translateY(-4px);
  border-color: var(--c-line-2);
}

.stage__index {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  font-family: var(--ff-display);
  font-size: 28px;
  line-height: 1;
  border: 1px solid var(--c-line-2);
  border-radius: 50%;
  background: linear-gradient(180deg, var(--c-acid-2), var(--c-emerald));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(163, 230, 53, 0.25));
  box-shadow:
    0 0 0 6px var(--c-bg),
    0 0 30px rgba(163, 230, 53, 0.18);
  transition: box-shadow 0.45s var(--ease);
}

.stage__index::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(163, 230, 53, 0.14), rgba(8, 11, 9, 0.9));
}

.stage:hover .stage__index,
.stage:focus-within .stage__index {
  box-shadow:
    0 0 0 6px var(--c-bg),
    0 0 40px rgba(163, 230, 53, 0.35);
  filter: drop-shadow(0 0 18px rgba(163, 230, 53, 0.4));
}

.stage__body {
  font-family: var(--ff-body);
}

.stage__title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.15;
  color: var(--c-txt);
  margin: 0 0 12px;
}

.stage__text {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--c-txt-2);
  margin: 0;
}

@media (min-width: 900px) {
  .stages__rail {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 899px) {
  .stages__rail::before {
    top: 0;
    bottom: 0;
    left: 52px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--c-line-2), transparent);
  }

  .stage {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .stage__index {
    flex: none;
    width: 52px;
    height: 52px;
    margin-bottom: 0;
    font-size: 22px;
    box-shadow:
      0 0 0 5px var(--c-bg),
      0 0 24px rgba(163, 230, 53, 0.18);
  }

  .stage__body {
    flex: 1;
    min-width: 0;
    padding-top: 8px;
  }
}


/* ==========================================================================
   streams
   ========================================================================== */

.streams {
  padding-block: clamp(40px, 5vw, 74px);
}

.streams__wrap {
  position: relative;
}

.streams__rail {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}

.streams__rail::-webkit-scrollbar {
  height: 6px;
}

.streams__rail::-webkit-scrollbar-track {
  background: rgba(163, 230, 53, 0.06);
  border-radius: 99px;
}

.streams__rail::-webkit-scrollbar-thumb {
  background: rgba(163, 230, 53, 0.32);
  border: 0;
  border-radius: 99px;
}

.streams__rail:focus-visible {
  outline: 2px solid var(--c-acid);
  outline-offset: 4px;
}

.streams__nav {
  position: absolute;
  top: calc(50% - 6px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--c-txt);
  background: rgba(8, 11, 9, 0.86);
  border: 1px solid var(--c-line-2);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition:
    color 0.3s var(--ease),
    background-color 0.3s var(--ease),
    opacity 0.3s var(--ease),
    visibility 0.3s var(--ease);
}

.streams__nav svg {
  width: 20px;
  height: 20px;
}

.streams__nav--prev {
  left: max(6px, calc(var(--gutter) - 20px));
}

.streams__nav--prev svg {
  transform: rotate(90deg);
}

.streams__nav--next {
  right: max(6px, calc(var(--gutter) - 20px));
}

/* touch devices swipe the rail directly */
@media (hover: none) {
  .streams__nav {
    display: none;
  }
}

.streams__nav--next svg {
  transform: rotate(-90deg);
}

.streams__nav:hover {
  color: var(--c-acid);
  background: rgba(20, 30, 16, 0.94);
}

.streams__nav[disabled] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.stream {
  position: relative;
  flex: 0 0 clamp(230px, 24vw, 300px);
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.45s var(--ease);
}

.stream:hover,
.stream:focus-within {
  transform: translateY(-4px);
  border-color: var(--c-line-2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 60px -24px rgba(163, 230, 53, 0.28);
}

.stream__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: radial-gradient(circle at 50% 45%, rgba(163, 230, 53, 0.1), rgba(5, 7, 6, 0.92));
}

.stream__frame,
.stream__link {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.stream__thumb {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  filter: saturate(1.35) brightness(0.78);
  transition:
    filter 0.5s var(--ease),
    transform 0.6s var(--ease);
}

.stream__link:hover .stream__thumb,
.stream__link:focus-visible .stream__thumb {
  filter: saturate(1.5) brightness(1);
  transform: scale(1.04);
}

.stream__play {
  position: absolute;
  inset: 0;
  margin: auto;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #14200c;
  background: linear-gradient(180deg, var(--c-acid-2), var(--c-emerald));
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(163, 230, 53, 0.5),
    0 0 34px rgba(163, 230, 53, 0.42);
  transition: transform 0.35s var(--ease);
}

.stream__play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.stream__link:hover .stream__play,
.stream__link:focus-visible .stream__play {
  transform: scale(1.08);
}

.stream__link:focus-visible {
  outline: 2px solid var(--c-acid);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .stream,
  .stream__thumb,
  .stream__play {
    transition: none;
  }

  .stream:hover,
  .stream:focus-within,
  .stream__link:hover .stream__thumb,
  .stream__link:hover .stream__play {
    transform: none;
  }
}

/* ==========================================================================
   community
   ========================================================================== */

.community {
  padding-block: clamp(40px, 5vw, 74px);
}

.community__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.social {
  --accent: var(--c-acid);

  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 250px;
  padding: clamp(26px, 2.6vw, 38px);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition:
    transform 0.45s var(--ease),
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.social::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%);
  opacity: 0.6;
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease);
  pointer-events: none;
}

.social:hover,
.social:focus-visible {
  transform: translateY(-4px);
  border-color: var(--c-line-2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 50px -24px rgba(163, 230, 53, 0.2);
}

.social:hover::before,
.social:focus-visible::before {
  opacity: 1;
  transform: scale(1.15);
}

.social--tg {
  --accent: var(--c-emerald);
}

.social--forum {
  --accent: var(--c-acid);
}

.social--files {
  --accent: var(--c-acid-2);
}

.social__icon {
  width: 34px;
  height: 34px;
  color: var(--accent);
  margin-bottom: auto;
  transition: color 0.35s var(--ease);
}

.social:hover .social__icon,
.social:focus-visible .social__icon {
  color: var(--c-acid-2);
}

.social__title {
  font-family: var(--ff-display);
  font-size: 24px;
  line-height: 1.15;
  color: var(--c-txt);
  margin: 26px 0 10px;
}

.social__text {
  font-family: var(--ff-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-txt-2);
  margin: 0;
}

.social__go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--ff-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--accent);
  transition: color 0.25s var(--ease);
}

.social__go svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s var(--ease);
}

.social:hover .social__go,
.social:focus-visible .social__go {
  color: var(--c-acid-2);
}

.social:hover .social__go svg,
.social:focus-visible .social__go svg {
  transform: translateX(4px);
}

.social:focus-visible {
  outline: 2px solid var(--c-acid);
  outline-offset: 4px;
}

@media (min-width: 820px) {
  .community__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ==========================================================================
   join
   ========================================================================== */

.join {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 7vw, 95px);
  text-align: center;
}

.join__bg {
  position: absolute;
  inset: 0;
  background: url(../images2/footer.jpg) center bottom / cover no-repeat;
  pointer-events: none;
}

.join__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--c-bg) 0%,
    rgba(8, 11, 9, 0.45) 38%,
    rgba(8, 11, 9, 0.75) 100%
  );
}

.join__inner {
  position: relative;
  z-index: 1;
}

.join__logo {
  display: block;
  width: clamp(230px, 26vw, 360px);
  height: auto;
  max-width: 100%;
  margin: 0 auto 26px;
  mix-blend-mode: screen;
}

.join__title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
  color: var(--c-txt);
  margin: 0;
  text-shadow: 0 0 60px rgba(163, 230, 53, 0.22);
}

.join__text {
  font-family: var(--ff-body);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--c-txt-2);
  max-width: 52ch;
  margin: 18px auto 38px;
}

.join__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.join .btn--lg:focus-visible {
  outline: 2px solid var(--c-acid);
  outline-offset: 4px;
}


/* ==========================================================================
   footer
   ========================================================================== */

.footer {
  position: relative;
  border-top: 1px solid var(--c-line);
  background: var(--c-void);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 4vw, 50px);
  align-items: start;
  padding-block: clamp(34px, 4vw, 54px);
}

.footer__brand img {
  width: 150px;
  height: auto;
  max-width: 100%;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.footer__brand p {
  margin: 16px 0 0;
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-txt-3);
  max-width: 34ch;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer__col h4 {
  font-family: var(--ff-display);
  font-size: 15px;
  color: var(--c-txt);
  margin: 0 0 14px;
}

.footer__col a {
  display: block;
  padding: 5px 0;
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--c-txt-3);
  text-decoration: none;
  transition:
    color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.footer__col a:hover,
.footer__col a:focus-visible {
  color: var(--c-acid);
  transform: translateX(3px);
}

.footer__col a:focus-visible {
  outline: 2px solid var(--c-acid);
  outline-offset: 2px;
  border-radius: 2px;
}

.footer__banners {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.footer__banners a {
  display: block;
  line-height: 0;
}

.footer__banners a:focus-visible {
  outline: 2px solid var(--c-acid);
  outline-offset: 4px;
  border-radius: 2px;
}

.footer__banners img {
  max-width: 100%;
  height: auto;
  opacity: 0.55;
  filter: grayscale(0.3);
  transition:
    opacity 0.25s var(--ease),
    filter 0.25s var(--ease);
}

.footer__banners a:hover img,
.footer__banners a:focus-visible img {
  opacity: 1;
  filter: none;
}

.footer__bottom {
  border-top: 1px solid var(--c-line);
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--c-txt-3);
}

.footer__bottom-inner p {
  margin: 0;
}

.footer__top {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-txt-3);
  transition: color 0.25s var(--ease);
}

.footer__top svg {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
  transition: transform 0.25s var(--ease);
}

.footer__top:hover,
.footer__top:focus-visible {
  color: var(--c-acid);
}

.footer__top:hover svg,
.footer__top:focus-visible svg {
  transform: rotate(180deg) translateY(3px);
}

.footer__top:focus-visible {
  outline: 2px solid var(--c-acid);
  outline-offset: 4px;
  border-radius: 2px;
}

@media (min-width: 560px) {
  .footer__nav {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 559px) {
  .footer__nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .footer__inner {
    grid-template-columns: 1.4fr 2fr auto;
    gap: clamp(30px, 4vw, 70px);
  }
}


/* ==========================================================================
   reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .feat,
  .feat__media img,
  .feat::after,
  .feat__link,
  .feat__link svg,
  .stage,
  .stage__index,
  .social,
  .social::before,
  .social__go svg,
  .footer__col a,
  .footer__banners img,
  .footer__top svg {
    transition: none;
  }

  .feat:hover,
  .feat:focus-within,
  .stage:hover,
  .stage:focus-within,
  .social:hover,
  .social:focus-visible {
    transform: none;
  }

  .feat:hover .feat__media img,
  .feat:focus-within .feat__media img {
    transform: scale(1.06);
    filter: saturate(1.75) contrast(1.18) brightness(0.72) blur(0.5px);
  }

  .social:hover::before,
  .social:focus-visible::before {
    transform: none;
  }
}
