:root {
  --social-ink: #18191d;
  --social-muted: #74757d;
  --social-surface: rgba(255, 255, 255, 0.78);
  --social-line: rgba(24, 25, 29, 0.1);
  --social-primary: #3157d5;
  --social-secondary: #90a9ff;
  --social-soft: #dfe6ff;
  --social-accent-ink: #ffffff;
  --social-shadow: rgba(42, 57, 111, 0.18);
  --social-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--social-ink);
  background: #f5f2ed;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  transition: background-color 500ms ease;
}

body[data-social-theme="coral"] {
  --social-primary: #e54f6d;
  --social-secondary: #ff967b;
  --social-soft: #ffe1dc;
  --social-accent-ink: #ffffff;
  --social-shadow: rgba(162, 51, 77, 0.18);
}

body[data-social-theme="lime"] {
  --social-primary: #9acf45;
  --social-secondary: #d8ef76;
  --social-soft: #ecf7c8;
  --social-accent-ink: #192113;
  --social-shadow: rgba(79, 112, 34, 0.18);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--social-primary);
  outline-offset: 4px;
}

.social-backdrop {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(145deg, #f8f5f0 0%, #f0eee9 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.social-shape {
  position: absolute;
  display: block;
  will-change: transform;
  transition: background 500ms ease;
}

.social-shape-one {
  top: -16vw;
  left: -12vw;
  width: clamp(360px, 47vw, 790px);
  aspect-ratio: 1;
  border-radius: 42% 58% 64% 36% / 43% 38% 62% 57%;
  background: var(--social-secondary);
  opacity: 0.78;
  transform: translate3d(calc(var(--pointer-x, 0) * -10px), calc(var(--pointer-y, 0) * -10px), 0) rotate(-14deg);
  animation: social-float-one 15s ease-in-out infinite alternate;
}

.social-shape-two {
  right: -14vw;
  bottom: -22vw;
  width: clamp(420px, 53vw, 900px);
  aspect-ratio: 1;
  border-radius: 58% 42% 37% 63% / 49% 62% 38% 51%;
  background: var(--social-primary);
  opacity: 0.92;
  transform: translate3d(calc(var(--pointer-x, 0) * 13px), calc(var(--pointer-y, 0) * 13px), 0) rotate(10deg);
  animation: social-float-two 18s ease-in-out infinite alternate;
}

.social-shape-three {
  top: 16%;
  right: 12%;
  width: clamp(72px, 9vw, 142px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 34% 66% 63% 37% / 51% 46% 54% 49%;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  transform: translate3d(calc(var(--pointer-x, 0) * -18px), calc(var(--pointer-y, 0) * -18px), 0) rotate(18deg);
  animation: social-spin 24s linear infinite;
}

.social-grain {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.social-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 58px);
}

.social-return,
.social-share {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 30px rgba(31, 34, 45, 0.08);
  backdrop-filter: blur(16px);
}

.social-return {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(24, 25, 29, 0.8);
  font-size: 0.79rem;
  font-weight: 700;
  transition: color 220ms ease, border-color 220ms ease, transform 260ms var(--social-ease), background 260ms ease;
}

.social-return:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(24, 25, 29, 0.92);
  transform: translateY(-2px);
}

.social-concept-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(24, 25, 29, 0.64);
  font-family: Manrope, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-concept-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--social-primary);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--social-primary) 14%, transparent);
}

.social-share {
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: color 250ms ease, transform 260ms var(--social-ease), background 250ms ease;
}

.social-share:hover {
  color: var(--social-primary);
  background: #fff;
  transform: translateY(-3px) rotate(-5deg);
}

.social-stage {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: 100svh;
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: 112px 0 116px;
}

.social-profile {
  position: relative;
  z-index: 5;
  width: min(100%, 850px);
  padding: 48px 44px 30px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 38px;
  background: var(--social-surface);
  box-shadow: 0 34px 90px var(--social-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(28px) saturate(1.12);
  text-align: center;
}

.social-profile-glow {
  position: absolute;
  inset: 16px;
  z-index: -1;
  border-radius: 28px;
  box-shadow: inset 0 0 52px color-mix(in srgb, var(--social-soft) 45%, transparent);
  pointer-events: none;
}

.social-profile-main {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 42px;
}

.social-identity {
  min-width: 0;
}

.social-avatar-wrap {
  position: relative;
  width: 138px;
  margin: 0 auto 24px;
}

.social-avatar {
  position: relative;
  width: 138px;
  height: 138px;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: linear-gradient(145deg, #b9bbc1, #8f929b);
  box-shadow: 0 14px 34px rgba(41, 43, 52, 0.18), 0 0 0 1px rgba(22, 24, 29, 0.1);
}

.social-avatar::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 50%;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f9f9fa;
  transform: translateX(-50%);
}

.social-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -19px;
  width: 94px;
  height: 75px;
  border-radius: 50% 50% 40% 40%;
  background: #f9f9fa;
  transform: translateX(-50%);
}

.social-presence {
  position: absolute;
  right: 3px;
  bottom: 8px;
  width: 24px;
  height: 24px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #58bd7d;
}

.social-overline {
  margin: 0 0 8px;
  color: var(--social-primary);
  font-family: Manrope, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-profile h1 {
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(2.65rem, 5vw, 3.65rem);
  font-weight: 800;
  line-height: 1.05;
}

.social-handle {
  margin: 7px 0 0;
  color: var(--social-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.social-bio {
  max-width: 390px;
  margin: 20px auto 0;
  color: #5e6068;
  font-size: 0.96rem;
  line-height: 1.6;
}

.social-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-top: 19px;
}

.social-topics span {
  padding: 7px 10px;
  border: 1px solid var(--social-line);
  border-radius: 999px;
  color: #72747c;
  background: rgba(255, 255, 255, 0.46);
  font-size: 0.64rem;
  font-weight: 700;
}

.social-networks {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 0;
}

.social-networks a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--social-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 260ms var(--social-ease);
}

.social-networks a:hover {
  color: var(--social-accent-ink);
  border-color: var(--social-primary);
  background: var(--social-primary);
  transform: translateY(-4px) scale(1.04);
}

.social-links {
  display: grid;
  gap: 12px;
}

.social-link {
  position: relative;
  min-height: 78px;
  display: grid;
  grid-template-columns: 42px 1fr 30px;
  align-items: center;
  gap: 13px;
  overflow: hidden;
  padding: 10px 15px 10px 11px;
  border: 1px solid var(--social-line);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(31, 34, 45, 0.045);
  text-align: left;
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 300ms var(--social-ease);
}

.social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--social-soft) 72%, transparent), transparent 65%);
  opacity: 0;
  transform: translateX(-22%);
  transition: opacity 260ms ease, transform 450ms var(--social-ease);
}

.social-link > * {
  position: relative;
  z-index: 1;
}

.social-link:hover {
  border-color: color-mix(in srgb, var(--social-primary) 30%, transparent);
  box-shadow: 0 14px 34px var(--social-shadow);
  transform: translateY(-3px) scale(1.012);
}

.social-link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.social-link-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--social-primary);
  background: var(--social-soft);
  transition: color 250ms ease, background 250ms ease, transform 350ms var(--social-ease);
}

.social-link:hover .social-link-icon {
  color: var(--social-accent-ink);
  background: var(--social-primary);
  transform: rotate(-5deg) scale(1.05);
}

.social-link span:nth-child(2) {
  min-width: 0;
}

.social-link small,
.social-link strong {
  display: block;
}

.social-link small {
  margin-bottom: 2px;
  color: #898a91;
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.social-link strong {
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-link-arrow {
  color: #9899a0;
  font-size: 0.78rem;
  text-align: center;
  transition: color 240ms ease, transform 300ms var(--social-ease);
}

.social-link:hover .social-link-arrow {
  color: var(--social-primary);
  transform: translateX(5px);
}

.social-link-featured {
  color: var(--social-accent-ink);
  border-color: transparent;
  background: var(--social-primary);
}

.social-link-featured::before {
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.2), transparent 66%);
}

.social-link-featured .social-link-icon {
  color: var(--social-accent-ink);
  background: rgba(255, 255, 255, 0.18);
}

.social-link-featured small,
.social-link-featured .social-link-arrow {
  color: color-mix(in srgb, var(--social-accent-ink) 70%, transparent);
}

.social-link-featured:hover .social-link-icon {
  color: var(--social-primary);
  background: var(--social-accent-ink);
}

.social-link-featured:hover .social-link-arrow {
  color: var(--social-accent-ink);
}

.social-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--social-line);
}

.social-mini-grid article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--social-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
  text-align: left;
}

.social-mini-grid article > i {
  color: var(--social-primary);
}

.social-mini-grid small,
.social-mini-grid strong {
  display: block;
}

.social-mini-grid small {
  margin-bottom: 2px;
  color: #8d8e94;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.social-mini-grid strong {
  font-size: 0.7rem;
  line-height: 1.3;
}

.social-signature {
  margin: 23px 0 0;
  color: #9a9ba1;
  font-family: Manrope, sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.social-signature span {
  margin: 0 6px;
  color: var(--social-primary);
}

.social-news {
  position: relative;
  z-index: 4;
  scroll-margin-top: 28px;
  padding: 118px 24px 126px;
}

.social-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 72px;
  background: linear-gradient(transparent, var(--social-primary));
}

.social-news-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 66px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 34px 90px var(--social-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(28px) saturate(1.1);
}

.social-news-heading {
  max-width: 700px;
  margin-bottom: 46px;
}

.social-news-profile {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
}

.social-news-profile > span:last-child,
.social-news-profile strong,
.social-news-profile small {
  display: block;
}

.social-news-profile strong {
  font-family: Manrope, sans-serif;
  font-size: 0.82rem;
}

.social-news-profile small {
  margin-top: 2px;
  color: var(--social-muted);
  font-size: 0.69rem;
}

.social-news-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #b9bbc1, #8f929b);
  box-shadow: 0 6px 18px rgba(41, 43, 52, 0.14);
}

.social-news-avatar::before,
.social-news-avatar::after {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
}

.social-news-avatar::before {
  top: 8px;
  width: 12px;
  height: 12px;
}

.social-news-avatar::after {
  bottom: -8px;
  width: 32px;
  height: 26px;
}

.social-news-heading h2 {
  max-width: 620px;
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  font-weight: 800;
  line-height: 0.98;
}

.social-news-heading > p:last-child {
  max-width: 590px;
  margin: 22px 0 0;
  color: #62646c;
  font-size: 1rem;
  line-height: 1.7;
}

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

.social-news-card {
  overflow: hidden;
  border: 1px solid var(--social-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 45px rgba(31, 34, 45, 0.07);
  transition: border-color 260ms ease, box-shadow 300ms ease, transform 350ms var(--social-ease);
}

.social-news-card:hover {
  border-color: color-mix(in srgb, var(--social-primary) 32%, transparent);
  box-shadow: 0 26px 58px var(--social-shadow);
  transform: translateY(-7px);
}

.social-news-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
}

.social-news-visual {
  position: relative;
  min-height: 245px;
  overflow: hidden;
}

.visual-featured {
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 34px;
  color: var(--social-accent-ink);
  background: var(--social-primary);
}

.visual-featured::after {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -135px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.social-news-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.orbit-one {
  top: -85px;
  left: 22%;
  width: 250px;
  height: 250px;
  animation: social-news-orbit 11s ease-in-out infinite alternate;
}

.orbit-two {
  top: 58px;
  right: 12%;
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.12);
  animation: social-news-orbit 8s ease-in-out -2s infinite alternate-reverse;
}

.social-news-monogram {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-family: Manrope, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.visual-featured > p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: Manrope, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.05;
  text-align: right;
}

.social-news-copy {
  padding: 30px;
}

.social-news-featured .social-news-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
}

.social-news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--social-primary);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.social-news-copy h3 {
  margin: 18px 0 12px;
  font-family: Manrope, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.14;
}

.social-news-copy p {
  margin: 0;
  color: #666870;
  font-size: 0.9rem;
  line-height: 1.65;
}

.social-news-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--social-ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.social-news-copy a i {
  color: var(--social-primary);
  transition: transform 260ms var(--social-ease);
}

.social-news-copy a:hover i {
  transform: translateX(5px);
}

.visual-process {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 22%, var(--social-secondary) 0 16%, transparent 17%),
    linear-gradient(145deg, var(--social-soft), #f7f6f2);
}

.social-process-window {
  width: min(72%, 280px);
  display: grid;
  grid-template-columns: repeat(3, 7px) 1fr;
  gap: 6px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 42px var(--social-shadow);
  transform: rotate(-4deg);
}

.social-process-window span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--social-primary);
  opacity: 0.42;
}

.social-process-window strong {
  grid-column: 1 / -1;
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  margin-top: 7px;
  padding: 14px;
  border-radius: 11px;
  color: var(--social-accent-ink);
  background: var(--social-primary);
  font-family: Manrope, sans-serif;
  font-size: 1.15rem;
}

.visual-next {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--social-accent-ink);
  background: linear-gradient(145deg, var(--social-primary), var(--social-secondary));
}

.visual-next i {
  font-size: 3.2rem;
  animation: social-icon-float 4s ease-in-out infinite;
}

.visual-next span {
  font-family: Manrope, sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.social-back-top {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 38px auto 0;
  padding: 12px 18px;
  border: 1px solid var(--social-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  font-weight: 800;
  transition: color 240ms ease, border-color 240ms ease, transform 260ms var(--social-ease);
}

.social-back-top:hover {
  color: var(--social-primary);
  border-color: color-mix(in srgb, var(--social-primary) 36%, transparent);
  transform: translateY(-3px);
}

.news-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms var(--social-ease), transform 700ms var(--social-ease);
}

.news-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.social-theme-picker {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 40px rgba(31, 34, 45, 0.1);
  backdrop-filter: blur(16px);
}

.social-theme-picker > span {
  margin-right: 3px;
  color: #777981;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.social-theme-picker button {
  width: 22px;
  height: 22px;
  padding: 0;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(24, 25, 29, 0.12);
  cursor: pointer;
  transition: transform 260ms var(--social-ease), box-shadow 260ms ease;
}

.social-theme-picker button:nth-of-type(1) { background: #3157d5; }
.social-theme-picker button:nth-of-type(2) { background: #e54f6d; }
.social-theme-picker button:nth-of-type(3) { background: #9acf45; }

.social-theme-picker button:hover,
.social-theme-picker button.is-active {
  box-shadow: 0 0 0 2px var(--social-ink);
  transform: scale(1.12);
}

.social-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 60;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: #1d1f25;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 250ms ease, transform 350ms var(--social-ease);
}

.social-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.social-footer {
  position: relative;
  z-index: 12;
  width: min(1120px, calc(100% - 48px));
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  padding: 0 0 32px;
  color: rgba(24, 25, 29, 0.55);
  font-size: 0.68rem;
  font-weight: 650;
}

.social-footer p {
  margin: 0;
}

.social-footer a {
  border-bottom: 1px solid rgba(24, 25, 29, 0.24);
}

.social-footer .footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-footer .footer-social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #202126;
  transition: transform 220ms var(--social-ease), background 220ms var(--social-ease);
}

.social-footer .footer-social-link img {
  width: 17px;
  height: 17px;
}

.social-footer .footer-social-link:hover {
  border-bottom: 0;
  background: var(--social-accent);
  transform: translateY(-2px);
}

.social-enter {
  opacity: 0;
  transform: translateY(18px);
  animation: social-enter 720ms var(--social-ease) forwards;
  animation-delay: var(--enter-delay, 0ms);
}

.social-link.is-clicked {
  animation: social-link-click 430ms var(--social-ease);
}

@keyframes social-enter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes social-float-one {
  to { border-radius: 61% 39% 47% 53% / 38% 55% 45% 62%; }
}

@keyframes social-float-two {
  to { border-radius: 39% 61% 58% 42% / 62% 38% 62% 38%; }
}

@keyframes social-spin {
  to { rotate: 360deg; }
}

@keyframes social-link-click {
  50% { transform: scale(0.975); }
}

@keyframes social-news-orbit {
  to { transform: translate(18px, 14px) scale(1.08); }
}

@keyframes social-icon-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-7px) rotate(2deg); }
}

@media (max-width: 780px) {
  .social-profile {
    width: min(100%, 560px);
  }

  .social-profile-main {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .social-networks {
    margin-bottom: 28px;
  }

  .social-news-featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .social-topbar {
    min-height: 66px;
    padding: 11px 14px;
  }

  .social-return {
    left: 12px;
    bottom: 12px;
  }

  .social-concept-label {
    font-size: 0.58rem;
  }

  .social-share {
    width: 42px;
    height: 42px;
  }

  .social-stage {
    width: 100%;
    min-height: 100svh;
    padding: 84px 12px 82px;
  }

  .social-profile {
    padding: 32px 16px 24px;
    border-radius: 28px;
  }

  .social-avatar-wrap,
  .social-avatar {
    width: 112px;
    height: 112px;
  }

  .social-avatar-wrap {
    margin-bottom: 20px;
  }

  .social-avatar::before {
    top: 22px;
    width: 31px;
    height: 31px;
  }

  .social-avatar::after {
    bottom: -15px;
    width: 76px;
    height: 61px;
  }

  .social-profile h1 {
    font-size: 2.35rem;
  }

  .social-bio {
    font-size: 0.88rem;
  }

  .social-link {
    min-height: 68px;
    grid-template-columns: 40px minmax(0, 1fr) 24px;
    gap: 10px;
    padding-right: 11px;
  }

  .social-link-icon {
    width: 40px;
    height: 40px;
  }

  .social-link strong {
    font-size: 0.84rem;
  }

  .social-mini-grid {
    grid-template-columns: 1fr;
  }

  .social-mini-grid article {
    min-height: 52px;
  }

  .social-theme-picker {
    right: 50%;
    bottom: 18px;
    transform: translateX(50%);
  }

  .social-theme-picker > span {
    display: none;
  }

  .social-footer {
    flex-direction: column;
    justify-content: center;
    padding: 0 16px 86px;
    text-align: center;
  }

  .social-footer p {
    display: none;
  }

  .social-toast {
    bottom: 70px;
  }

  .social-shape-one {
    top: -110px;
    left: -190px;
  }

  .social-shape-two {
    right: -240px;
    bottom: -90px;
  }

  .social-news {
    padding: 88px 12px 90px;
    scroll-margin-top: 12px;
  }

  .social-news::before {
    height: 56px;
  }

  .social-news-shell {
    padding: 30px 16px;
    border-radius: 28px;
  }

  .social-news-heading {
    margin-bottom: 30px;
  }

  .social-news-heading h2 {
    font-size: 2.75rem;
  }

  .social-news-heading > p:last-child {
    margin-top: 16px;
    font-size: 0.9rem;
  }

  .social-news-grid {
    grid-template-columns: 1fr;
  }

  .visual-featured {
    min-height: 300px;
    padding: 22px;
  }

  .social-news-monogram {
    width: 66px;
    height: 66px;
    border-radius: 19px;
  }

  .social-news-copy,
  .social-news-featured .social-news-copy {
    padding: 25px 21px;
  }

  .social-news-visual:not(.visual-featured) {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark presentation: the layout and interactions stay unchanged. */
:root {
  --social-ink: #f2f5f8;
  --social-muted: #9ba9b8;
  --social-surface: rgba(18, 32, 47, 0.94);
  --social-line: rgba(218, 230, 240, 0.12);
  --social-soft: rgba(79, 112, 211, 0.24);
  --social-shadow: rgba(1, 7, 15, 0.42);
}

html,
body {
  background: #0a1420;
  color-scheme: dark;
}

.social-backdrop {
  z-index: 0;
  background:
    linear-gradient(rgba(219, 231, 242, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(219, 231, 242, 0.025) 1px, transparent 1px),
    linear-gradient(145deg, #101f2f 0%, #08121d 100%);
  background-size: 42px 42px, 42px 42px, auto;
}

.social-shape-one {
  opacity: 0.72;
  filter: saturate(0.92);
  box-shadow: 0 0 90px rgba(91, 123, 224, 0.12);
}

.social-shape-two {
  opacity: 0.68;
  filter: saturate(0.94);
  box-shadow: 0 0 110px rgba(49, 87, 213, 0.14);
}

.social-shape-three {
  border-color: rgba(218, 230, 240, 0.16);
  background: rgba(207, 224, 239, 0.06);
}

.social-concept-label {
  color: rgba(231, 238, 244, 0.68);
}

.social-share {
  border-color: rgba(218, 230, 240, 0.16);
  background: #17283a;
  box-shadow: 0 12px 32px rgba(1, 7, 15, 0.28);
}

.social-share:hover {
  color: #fff;
  background: #20354a;
}

.social-profile,
.social-news-shell {
  border-color: rgba(218, 230, 240, 0.13);
  background: rgba(17, 30, 44, 0.95);
  box-shadow: 0 34px 90px var(--social-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.social-avatar,
.social-news-avatar {
  border-color: #263a4d;
  box-shadow: 0 14px 34px rgba(1, 7, 15, 0.32), 0 0 0 1px rgba(223, 234, 243, 0.08);
}

.social-presence {
  border-color: #17283a;
}

.social-bio,
.social-news-heading > p:last-child,
.social-news-copy p {
  color: #aab6c2;
}

.social-topics span,
.social-networks a,
.social-mini-grid article {
  color: #c4ced7;
  background: #1c3043;
}

.social-link {
  background: #1a2c3e;
  box-shadow: 0 8px 24px rgba(1, 7, 15, 0.18);
}

.social-link:hover {
  background: #1d3348;
}

.social-link small,
.social-link-arrow,
.social-mini-grid small,
.social-signature {
  color: #91a1b0;
}

.social-link-featured {
  color: var(--social-accent-ink);
  background: var(--social-primary);
}

.social-news-card {
  background: #192b3d;
  box-shadow: 0 16px 45px rgba(1, 7, 15, 0.2);
}

.visual-process {
  background:
    radial-gradient(circle at 18% 22%, var(--social-secondary) 0 16%, transparent 17%),
    linear-gradient(145deg, #1a3045, #0d1b29);
}

.social-process-window {
  border-color: rgba(218, 230, 240, 0.13);
  background: #1b3044;
}

.social-back-top,
.social-theme-picker {
  border-color: rgba(218, 230, 240, 0.14);
  background: #17283a;
  box-shadow: 0 16px 38px rgba(1, 7, 15, 0.28);
}

.social-theme-picker > span,
.social-footer {
  color: #9ba9b8;
}

.social-footer .footer-social-link {
  background: #17283a;
}
