/* Shared footer strip styling */
.sa-strip {
  flex: 0 0 auto;
  border-top: 1px solid var(--sa-border-soft);
  background: var(--sa-strip-bg);
  backdrop-filter: blur(8px);
}

.sa-strip-inner {
  width: min(1120px, calc(100% - 56px));
  margin: 0 auto;
  padding: 32px 0;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.sa-strip-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.sa-strip-left {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.sa-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.sa-strip-item + .sa-strip-item::before {
  content: "|";
  color: rgba(148, 163, 184, 0.9);
  font-size: 14px;
  margin-right: -6px;
}

.sa-ic {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--sa-orange);
}

.sa-ic svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

.sa-strip-title {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.sa-strip-sub {
  margin-top: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  color: var(--sa-muted);
  font-weight: 600;
  line-height: 1.15;
}

.sa-text-desktop { display: inline; }
.sa-text-mobile { display: none; }

.sa-join {
  text-decoration: none;
  color: #ffffff;
  font-weight: 900;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--sa-orange), var(--sa-orange-deep));
  box-shadow: 0 16px 40px rgba(249, 115, 22, 0.22);
  white-space: nowrap;
}

.sa-join:hover {
  filter: brightness(0.97);
  text-decoration: none;
}

.sa-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 0 0 auto;
}

.sa-social-link {
  width: clamp(36px, 3.2vw, 44px);
  height: clamp(36px, 3.2vw, 44px);
  display: grid;
  place-items: center;
  border-radius: 999px;
  text-decoration: none;
  color: var(--sa-muted);
  color: color-mix(in srgb, var(--sa-text) 72%, var(--sa-muted));
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
}

.sa-social-link svg {
  width: clamp(20px, 2.1vw, 24px);
  height: clamp(20px, 2.1vw, 24px);
}

.sa-social-link:hover {
  color: var(--sa-text);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
  text-decoration: none;
}

.sa-social-link:focus-visible {
  outline: 2px solid var(--sa-orange);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .sa-text-desktop { display: none; }
  .sa-text-mobile { display: inline; }

  .sa-strip-inner {
    align-items: stretch;
    gap: 8px;
    padding: 12px 0;
    min-height: 0;
  }

  .sa-strip-top {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .sa-join {
    order: -1;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .sa-social {
    width: 100%;
    justify-content: center;
    gap: 12px;
    padding-top: 2px;
  }

  .sa-strip-left {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .sa-strip-item {
    width: 100%;
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    column-gap: 10px;
  }

  .sa-ic {
    justify-self: center;
  }

  .sa-strip-item + .sa-strip-item::before {
    content: none;
  }

  .sa-strip-title {
    text-align: left;
  }

  .sa-strip-sub {
    display: block;
    font-size: 15.5px;
    margin-top: 0;
  }

  .sa-ic {
    width: 44px;
    height: 44px;
  }

  .sa-ic svg {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 721px) {
  .sa-strip-top,
  .sa-strip-left {
    flex-wrap: nowrap;
  }

  .sa-strip-sub {
    font-size: clamp(12px, 0.9vw + 6px, 18px);
  }

  .sa-strip-top { gap: 10px; }

  .sa-strip-left {
    gap: 8px;
  }

  .sa-strip-item + .sa-strip-item::before {
    margin-right: 6px;
  }

  .sa-strip-item {
    white-space: nowrap;
  }
}
