/* Social Media Followers catalog — S2 storefront */

html.sa-bridge-enter #page-loader { display: none !important; }
html.sa-bridge-enter::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(225,48,108,0.22), transparent 70%);
  animation: saArriveFlash 0.35s ease-out forwards;
}
@keyframes saArriveFlash {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
html.sa-bridge-enter .soc-main {
  animation: saArriveUp 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes saArriveUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

body.soc {
  min-height: 100svh;
  background: #070a08 !important;
  color: #f4f7f5 !important;
  font-family: 'Geist', system-ui, sans-serif;
  padding-bottom: 24px;
}

body.soc .nav {
  background: rgba(7,10,8,0.7) !important;
  border-bottom: 1px solid transparent !important;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}
body.soc .nav.is-scrolled {
  background: rgba(7,10,8,0.88) !important;
  border-bottom-color: rgba(255,255,255,0.06) !important;
}
body.soc .nav-back {
  font-size: 13px;
  font-weight: 500;
  color: rgba(244,247,245,0.62);
  padding: 8px 10px;
  border-radius: 8px;
}
body.soc .nav-back:hover { color: #fff; background: rgba(255,255,255,0.06); }
body.soc .nav-link {
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  color: rgba(244,247,245,0.62);
  padding: 8px 10px;
}
body.soc .nav-link:hover { color: #fff; }

.soc-stage {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.soc-glow {
  position: absolute;
  width: 56vw;
  height: 56vw;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.85;
}
.soc-glow-a { top: -18%; left: -12%; background: radial-gradient(circle, rgba(225,48,108,0.14), transparent 70%); }
.soc-glow-b { top: 8%; right: -18%; background: radial-gradient(circle, rgba(225,48,108,0.14), transparent 68%); }
.soc-glow-c { bottom: -20%; left: 20%; background: radial-gradient(circle, rgba(42,171,238,0.1), transparent 70%); }
.soc-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,0.05), transparent 50%),
    linear-gradient(180deg, rgba(7,10,8,0) 0%, rgba(7,10,8,0.55) 100%);
}

.soc-main {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 88px 18px 120px;
}

.soc-hero {
  text-align: center;
  margin-bottom: 28px;
}
.soc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,247,245,0.62);
  margin-bottom: 14px;
}
.soc-kicker i {
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, #e1306c, #2aabee);
  box-shadow: 0 0 0 4px rgba(225,48,108,0.16);
}
.soc-hero h1 {
  font-size: clamp(34px, 8vw, 56px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 0 0 12px;
}
.soc-hero h1 em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(115deg, #fff 8%, #ffb3c8 42%, #9ad8f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.soc-lead {
  font-size: 15px;
  color: rgba(244,247,245,0.62);
  margin: 0 0 18px;
}
.soc-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.soc-trust span {
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(244,247,245,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: 6px 10px;
}

.soc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.soc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 196px;
  padding: 16px 14px 14px;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 18px 40px -22px rgba(0,0,0,0.55);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), border-color 0.25s, box-shadow 0.3s;
}
.soc-card-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,0.1), transparent 55%);
}
.soc-ig .soc-card-fx { background: radial-gradient(90% 70% at 12% 0%, rgba(225,48,108,0.22), transparent 58%); }
.soc-tt .soc-card-fx { background: radial-gradient(90% 70% at 12% 0%, rgba(37,244,238,0.16), transparent 58%); }
.soc-yt .soc-card-fx { background: radial-gradient(90% 70% at 12% 0%, rgba(255,0,51,0.2), transparent 58%); }
.soc-tg .soc-card-fx { background: radial-gradient(90% 70% at 12% 0%, rgba(42,171,238,0.2), transparent 58%); }
.soc-card:active { transform: scale(0.98); }

.soc-live {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,247,245,0.7);
}
.soc-live i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #3dffb0;
  box-shadow: 0 0 0 0 rgba(61,255,176,0.5);
  animation: socLive 1.8s ease-out infinite;
}
@keyframes socLive {
  0% { box-shadow: 0 0 0 0 rgba(61,255,176,0.45); }
  70% { box-shadow: 0 0 0 7px rgba(61,255,176,0); }
  100% { box-shadow: 0 0 0 0 rgba(61,255,176,0); }
}

.soc-ico {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #fff;
}
.soc-ig .soc-ico { background: linear-gradient(135deg, #f09433, #e1306c 50%, #833ab4); }
.soc-tt .soc-ico { background: #000; border: 1px solid rgba(255,255,255,0.12); color: #25f4ee; }
.soc-yt .soc-ico { background: #ff0033; }
.soc-tg .soc-ico { background: #2aabee; }

.soc-card h2 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 auto;
}
.soc-from {
  margin: 14px 0 10px;
  font-size: 13px;
  color: rgba(244,247,245,0.55);
}
.soc-from strong { color: #fff; font-size: 16px; font-weight: 650; }
.soc-ig .soc-from strong { color: #ffb3c8; }
.soc-tt .soc-from strong { color: #7af8f3; }
.soc-yt .soc-from strong { color: #ff8ea3; }
.soc-tg .soc-from strong { color: #9ad8f7; }

.soc-go {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}

.soc-ig { border-color: rgba(225,48,108,0.28); }
.soc-tt { border-color: rgba(37,244,238,0.22); }
.soc-yt { border-color: rgba(255,0,51,0.28); }
.soc-tg { border-color: rgba(42,171,238,0.28); }

.soc-foot {
  text-align: center;
  margin-top: 22px;
  font-size: 13px;
  color: rgba(244,247,245,0.45);
}

@media (min-width: 640px) {
  .soc-main { padding: 104px 24px 140px; }
  .soc-grid { gap: 16px; }
  .soc-card { min-height: 230px; padding: 22px 20px 18px; border-radius: 26px; }
  .soc-card h2 { font-size: 22px; }
  .soc-from strong { font-size: 20px; }
}
@media (min-width: 900px) {
  .soc-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.22);
  }
  .soc-ig:hover { box-shadow: 0 24px 50px -22px rgba(225,48,108,0.45); }
  .soc-tt:hover { box-shadow: 0 24px 50px -22px rgba(37,244,238,0.35); }
  .soc-yt:hover { box-shadow: 0 24px 50px -22px rgba(255,0,51,0.4); }
  .soc-tg:hover { box-shadow: 0 24px 50px -22px rgba(42,171,238,0.4); }
}

@media (prefers-reduced-motion: reduce) {
  .soc-live i { animation: none; }
  .soc-card { transition: none; }
}
