/* ====== 核心功能独立页样式 ====== */

/* 导航高亮 */
.nav-active {
  color: var(--accent) !important;
  font-weight: 700;
}

/* ====== 功能页 Hero ====== */
.feat-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 12vw, 9rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(168deg, #020617 0%, #0f172a 30%, #1e1b4b 65%, #0c0a1d 100%);
  color: #e2e8f0;
}

.feat-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(34, 211, 238, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(168, 85, 247, 0.08), transparent 50%);
}

.feat-hero__grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.feat-hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.feat-hero__eyebrow {
  display: inline-block;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neo-cyan);
  padding: 0.25rem 0.85rem;
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 4px;
  background: rgba(34, 211, 238, 0.08);
  margin-bottom: 1.25rem;
}

.feat-hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -0.02em;
}

.feat-hero__title span {
  background: linear-gradient(90deg, var(--neo-cyan), var(--neo-violet), var(--neo-pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feat-hero__lead {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  font-size: 15px;
  line-height: 1.75;
  color: #94a3b8;
}

.feat-hero__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.feat-hero__nav-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 12px;
  border: 1px solid rgba(99, 102, 241, 0.25);
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #e2e8f0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.feat-hero__nav-item svg {
  width: 20px;
  height: 20px;
  color: var(--neo-cyan);
  flex-shrink: 0;
}

.feat-hero__nav-item:hover {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.15);
  transform: translateY(-2px);
}

/* ====== 功能详情块 通用 ====== */
.feat-block {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.feat-block--light {
  background: linear-gradient(180deg, #f8fafc 0%, #ecfeff 40%, #f5f3ff 100%);
  color: var(--ink-soft);
}

.feat-block--dark {
  background: linear-gradient(168deg, #020617 0%, #0f172a 35%, #1e1b4b 70%, #0c0a1d 100%);
  color: #e2e8f0;
}

.feat-block__pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
}

.feat-block__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.feat-block__idx {
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  opacity: 0.15;
}

.feat-block--light .feat-block__idx {
  color: #0891b2;
  opacity: 0.2;
}

.feat-block--dark .feat-block__idx {
  color: var(--neo-cyan);
  opacity: 0.15;
}

.feat-block__eyebrow {
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feat-block--light .feat-block__eyebrow {
  color: #0e7490;
}

.feat-block--dark .feat-block__eyebrow {
  color: var(--neo-cyan);
}

/* ====== 左右分栏 ====== */
.feat-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}

.feat-split--reverse {
  grid-template-columns: 420px 1fr;
}

.feat-split--reverse .feat-split__content {
  order: 2;
}

.feat-split--reverse .feat-split__visual {
  order: 1;
}

@media (max-width: 960px) {
  .feat-split,
  .feat-split--reverse {
    grid-template-columns: 1fr;
  }

  .feat-split--reverse .feat-split__content,
  .feat-split--reverse .feat-split__visual {
    order: unset;
  }
}

.feat-split__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.feat-block--light .feat-split__title {
  color: #0c1222;
}

.feat-block--dark .feat-split__title {
  color: #fff;
}

.feat-accent-text {
  background: linear-gradient(90deg, #0891b2, #6366f1, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.feat-split__desc {
  margin: 0 0 1rem;
  font-size: 14.5px;
  line-height: 1.82;
}

.feat-block--light .feat-split__desc {
  color: #475569;
}

.feat-block--dark .feat-split__desc {
  color: #94a3b8;
}

.feat-split__desc strong {
  font-weight: 700;
}

.feat-block--light .feat-split__desc strong {
  color: #0c1222;
}

.feat-block--dark .feat-split__desc strong {
  color: #e2e8f0;
}

/* ====== 亮点网格 ====== */
.feat-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

@media (max-width: 520px) {
  .feat-highlights {
    grid-template-columns: 1fr;
  }
}

.feat-highlight {
  padding: 1.25rem;
  border-radius: 14px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.25s;
}

.feat-block--light .feat-highlight {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(14, 165, 233, 0.15);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.feat-block--light .feat-highlight:hover {
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 8px 28px rgba(8, 145, 178, 0.1);
  transform: translateY(-2px);
}

.feat-highlights--dark .feat-highlight {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.feat-highlights--dark .feat-highlight:hover {
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.1);
  transform: translateY(-2px);
}

.feat-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.feat-block--light .feat-highlight__icon {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(99, 102, 241, 0.12));
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.feat-highlights--dark .feat-highlight__icon {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(168, 85, 247, 0.12));
  border: 1px solid rgba(34, 211, 238, 0.25);
}

.feat-highlight__icon svg {
  width: 20px;
  height: 20px;
}

.feat-block--light .feat-highlight__icon svg {
  color: #0891b2;
}

.feat-highlights--dark .feat-highlight__icon svg {
  color: var(--neo-cyan);
}

.feat-highlight h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.feat-block--light .feat-highlight h3 {
  color: #0c1222;
}

.feat-highlights--dark .feat-highlight h3 {
  color: #fff;
}

.feat-highlight p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
}

.feat-block--light .feat-highlight p {
  color: #64748b;
}

.feat-highlights--dark .feat-highlight p {
  color: #94a3b8;
}

/* ====== 指标条 ====== */
.feat-metrics-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.feat-metric-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  flex: 1 1 120px;
  text-align: center;
}

.feat-block--light .feat-metric-inline {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(14, 165, 233, 0.15);
}

.feat-metrics-bar--dark .feat-metric-inline {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.feat-metric-inline strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.feat-block--light .feat-metric-inline strong {
  background: linear-gradient(135deg, #0891b2, #6366f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feat-metrics-bar--dark .feat-metric-inline strong {
  color: var(--neo-cyan);
}

.feat-metric-inline span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.feat-block--light .feat-metric-inline span {
  color: #64748b;
}

.feat-metrics-bar--dark .feat-metric-inline span {
  color: #94a3b8;
}

/* ====== 可视化面板：通用 demo 外壳 ====== */
.feat-split__visual {
  position: sticky;
  top: 5rem;
}

@media (max-width: 960px) {
  .feat-split__visual {
    position: static;
  }
}

/* 邮件控制台 */
.feat-email-demo,
.feat-customs-demo,
.feat-linkedin-demo,
.feat-decision-demo {
  border-radius: 16px;
  overflow: hidden;
  font-size: 13px;
}

.feat-email-demo {
  background: #fff;
  border: 1px solid rgba(14, 165, 233, 0.18);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.feat-email-demo__header,
.feat-customs-demo__header,
.feat-linkedin-demo__header,
.feat-decision-demo__header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.feat-email-demo__header {
  background: #f8fafc;
}

.feat-email-demo__header .dot,
.feat-linkedin-demo__header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.feat-email-demo__header .dot:first-child,
.feat-linkedin-demo__header .dot:first-child { background: #fca5a5; }
.feat-email-demo__header .dot:nth-child(2),
.feat-linkedin-demo__header .dot:nth-child(2) { background: #fde047; }
.feat-email-demo__header .dot:nth-child(3),
.feat-linkedin-demo__header .dot:nth-child(3) { background: #86efac; }

.feat-email-demo__title,
.feat-customs-demo__title,
.feat-linkedin-demo__title,
.feat-decision-demo__title {
  margin-left: 0.5rem;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.feat-email-demo__body {
  padding: 1rem 1.25rem;
}

.feat-email-demo__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.12);
}

.feat-email-demo__label {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}

.feat-email-demo__value {
  font-size: 12.5px;
  font-weight: 600;
  color: #0f172a;
}

.feat-email-demo__value--highlight {
  color: #059669;
  font-size: 14px;
  font-weight: 800;
}

.feat-email-demo__badge {
  font-size: 11px;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
}

.feat-email-demo__badge--pass {
  background: #dcfce7;
  color: #15803d;
}

.feat-email-demo__badge--active {
  background: #dbeafe;
  color: #1d4ed8;
}

.feat-email-demo__divider {
  height: 1px;
  background: #e2e8f0;
  margin: 0.5rem 0;
}

.feat-email-demo__bar {
  margin-top: 0.75rem;
  height: 6px;
  border-radius: 4px;
  background: #e2e8f0;
  overflow: hidden;
}

.feat-email-demo__bar-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #0891b2, #059669);
  transition: width 1.5s ease;
}

/* 海关面板 */
.feat-customs-demo {
  background: #0f172a;
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.feat-customs-demo__header {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(99, 102, 241, 0.15);
}

.feat-customs-demo__header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.feat-customs-demo__header .dot:first-child { background: #f87171; }
.feat-customs-demo__header .dot:nth-child(2) { background: #facc15; }
.feat-customs-demo__header .dot:nth-child(3) { background: #4ade80; }

.feat-customs-demo__title {
  color: #94a3b8;
}

.feat-customs-demo__body {
  padding: 1rem 1.25rem;
}

.feat-customs-demo__search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #94a3b8;
  font-size: 12px;
  margin-bottom: 1rem;
}

.feat-customs-demo__search-icon {
  font-size: 16px;
  color: var(--neo-cyan);
}

.feat-customs-demo__table {
  margin-bottom: 1rem;
}

.feat-customs-demo__tr {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(99, 102, 241, 0.08);
  font-size: 12px;
  color: #cbd5e1;
}

.feat-customs-demo__tr--head {
  color: #64748b;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom-color: rgba(99, 102, 241, 0.15);
}

.feat-customs-demo__chart {
  margin-top: 0.5rem;
}

.feat-customs-demo__chart-label {
  display: block;
  font-size: 11px;
  color: #64748b;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feat-customs-demo__bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
}

.feat-customs-demo__bars div {
  flex: 1;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--neo-cyan), rgba(34, 211, 238, 0.3));
  min-width: 0;
}

/* 领英面板 */
.feat-linkedin-demo {
  background: #fff;
  border: 1px solid rgba(14, 165, 233, 0.18);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.feat-linkedin-demo__header {
  background: #f8fafc;
}

.feat-linkedin-demo__body {
  padding: 1rem 1.25rem;
}

.feat-linkedin-demo__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.feat-linkedin-demo__chip {
  font-size: 11px;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.feat-linkedin-demo__results {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feat-linkedin-demo__person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: #fafbfc;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.feat-linkedin-demo__person:hover {
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.08);
}

.feat-linkedin-demo__avatar {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0891b2, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.feat-linkedin-demo__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.feat-linkedin-demo__info strong {
  font-size: 13px;
  color: #0f172a;
}

.feat-linkedin-demo__info span {
  font-size: 11.5px;
  color: #64748b;
}

.feat-linkedin-demo__loc {
  font-size: 11px !important;
  color: #94a3b8 !important;
}

.feat-linkedin-demo__score {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #059669, #0891b2);
}

.feat-linkedin-demo__footer {
  text-align: center;
  font-size: 12px;
  color: #64748b;
  padding-top: 0.5rem;
  border-top: 1px solid #e2e8f0;
}

.feat-linkedin-demo__footer strong {
  color: #0891b2;
  font-size: 14px;
}

/* 决策人面板 */
.feat-decision-demo {
  background: #0f172a;
  border: 1px solid rgba(99, 102, 241, 0.25);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}

.feat-decision-demo__header {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(99, 102, 241, 0.15);
}

.feat-decision-demo__header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.feat-decision-demo__header .dot:first-child { background: #f87171; }
.feat-decision-demo__header .dot:nth-child(2) { background: #facc15; }
.feat-decision-demo__header .dot:nth-child(3) { background: #4ade80; }

.feat-decision-demo__body {
  padding: 1.25rem;
}

.feat-decision-demo__profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.feat-decision-demo__avatar-lg {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0891b2, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.feat-decision-demo__name {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.feat-decision-demo__name strong {
  font-size: 14px;
  color: #fff;
}

.feat-decision-demo__name span {
  font-size: 11.5px;
  color: #94a3b8;
}

.feat-decision-demo__score-lg {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.15);
  border: 1px solid rgba(5, 150, 105, 0.3);
}

.feat-decision-demo__score-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
}

.feat-decision-demo__score-label {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
}

.feat-decision-demo__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.feat-decision-demo__tags span {
  font-size: 10.5px;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 5px;
  background: rgba(99, 102, 241, 0.15);
  color: var(--neo-violet);
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.feat-decision-demo__chain {
  margin-bottom: 1rem;
  padding: 0.85rem;
  border-radius: 10px;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(99, 102, 241, 0.12);
}

.feat-decision-demo__chain-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.feat-decision-demo__chain-flow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feat-decision-demo__chain-node {
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  font-size: 11.5px;
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(99, 102, 241, 0.15);
  text-align: center;
  line-height: 1.4;
}

.feat-decision-demo__chain-node small {
  font-size: 10px;
  color: #64748b;
}

.feat-decision-demo__chain-node--active {
  border-color: rgba(34, 211, 238, 0.5);
  color: #e2e8f0;
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.15);
}

.feat-decision-demo__chain-arrow {
  color: #475569;
  font-size: 14px;
}

.feat-decision-demo__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.feat-decision-demo__action {
  flex: 1;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  cursor: default;
  transition: transform 0.15s;
}

.feat-decision-demo__action:hover {
  transform: translateY(-1px);
}

.feat-decision-demo__action--email {
  background: rgba(8, 145, 178, 0.15);
  color: var(--neo-cyan);
  border: 1px solid rgba(8, 145, 178, 0.3);
}

.feat-decision-demo__action--ws {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.feat-decision-demo__action--social {
  background: rgba(99, 102, 241, 0.12);
  color: var(--neo-violet);
  border: 1px solid rgba(99, 102, 241, 0.3);
}
