@import "tailwindcss";

body {
  background: #0d1117;
  font-family: "Sora", "Noto Sans Arabic", "Segoe UI", sans-serif;
}
.logo-font {
  font-family: "Unbounded", "Noto Sans Arabic", "Segoe UI", sans-serif;
}
.logo-gradient {
  background: linear-gradient(90deg, #7c6dfa, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

.nav-link {
  color: #94a3b8;
  letter-spacing: 0.2em;
  font-weight: 700;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #f8fafc;
}

.site-nav {
  background: #0d1117;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.nav-toggle {
  display: inline-flex;
  width: 48px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.65);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.nav-toggle:hover {
  border-color: #818cf8;
}

.nav-toggle__bars {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #e2e8f0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  margin-top: 1rem;
  padding-top: 0;
  pointer-events: none;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    padding-top 0.3s ease;
}

.site-nav__menu.is-open {
  max-height: 700px;
  opacity: 1;
  padding-top: 0.75rem;
  pointer-events: auto;
  overflow: visible;
}

.site-nav__meta {
  width: 100%;
}

.site-nav__links {
  width: 100%;
}

@media (min-width: 640px) {
  .site-nav {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav__menu {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-height: none;
    opacity: 1;
    border-top: none;
    margin-top: 0;
    padding-top: 0;
    pointer-events: auto;
    flex: 1;
    gap: 2rem;
    overflow: visible;
  }

  .site-nav__meta {
    width: auto;
    justify-content: flex-end;
  }

  .site-nav__top {
    width: auto;
  }

  .site-nav__links {
    flex: 1;
    justify-content: center;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 7rem;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.92),
    rgba(12, 16, 32, 0.95)
  );
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  padding-top: clamp(2rem, 3vw, 2rem);
  padding-bottom: clamp(1.25rem, 2vw, 1.75rem);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}

.site-footer::before {
  width: 320px;
  height: 320px;
  top: -140px;
  right: -60px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.5), transparent 70%);
}

.site-footer::after {
  width: 220px;
  height: 220px;
  bottom: -120px;
  left: -40px;
  background: radial-gradient(
    circle,
    rgba(14, 165, 233, 0.35),
    transparent 70%
  );
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__tagline {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.4;
}

.site-footer__social {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e2e8f0;
  transition: all 0.2s ease;
}

.site-footer__social a:hover {
  border-color: #818cf8;
  color: #c7d2fe;
}

.site-footer__title {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #818cf8;
  margin-bottom: 1rem;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-footer__link {
  color: #e2e8f0;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.62rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-footer__link:hover {
  color: #c7d2fe;
  transform: translateX(4px);
}

.site-footer__cta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer__caption {
  color: #94a3b8;
  font-size: 0.85rem;
}

.site-footer__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.5rem 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.6rem;
  color: #e2e8f0;
  transition: all 0.2s ease;
  min-height: 42px;
}

.site-footer__pill--primary {
  border-color: transparent;
  background: linear-gradient(120deg, #6366f1, #8b5cf6);
  box-shadow: 0 12px 25px rgba(79, 70, 229, 0.35);
}

.site-footer__pill--ghost {
  border-color: rgba(148, 163, 184, 0.35);
  background: transparent;
}

.site-footer__pill:hover {
  transform: translateY(-1px);
}

.site-footer__pill--ghost:hover {
  border-color: #818cf8;
  color: #c7d2fe;
}

.site-footer__bar {
  margin-top: 3rem;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: #94a3b8;
  font-size: 0.8rem;
  position: relative;
  z-index: 1;
}

.site-footer__bar a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(148, 163, 184, 0.5);
}

@media (max-width: 640px) {
  .site-footer {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .site-footer__social {
    justify-content: flex-start;
  }

  .site-footer__pill {
    width: 100%;
    text-align: center;
  }
}

.control-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.65);
  color: #e2e8f0;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.2s ease;
  cursor: pointer;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 1rem;
  border-width: 1.5px;
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 0 10px 25px rgba(2, 6, 23, 0.35);
  position: relative;
}

.theme-toggle__icon {
  font-size: 1.1rem;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.theme-toggle__icon--sun {
  color: #facc15;
}

.theme-toggle__icon--moon {
  color: #cbd5f5;
}

.theme-toggle[data-theme-state="light"] .theme-toggle__icon--sun,
.theme-toggle[data-theme-state="dark"] .theme-toggle__icon--moon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.control-btn--ghost {
  background: transparent;
}

.control-btn--solid {
  background: rgba(226, 232, 240, 0.08);
}

.control-btn--danger {
  border-color: rgba(248, 113, 113, 0.4);
  color: #fca5a5;
  background: rgba(15, 23, 42, 0.45);
}

.control-btn:hover {
  border-color: #818cf8;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.85);
}

.control-btn--danger:hover {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.08);
}

.control-btn:active {
  transform: scale(0.97);
}

.language-select {
  appearance: none;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  color: #e2e8f0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 2.3rem 0.55rem 1rem;
  cursor: pointer;
}

.language-switcher {
  position: relative;
  width: 100%;
}

@media (min-width: 640px) {
  .language-switcher {
    width: auto;
    min-width: 180px;
  }
}

.language-pill {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.65);
  color: #e2e8f0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.language-pill__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1rem;
  line-height: 1;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.language-pill__label {
  flex: 1;
  text-align: left;
}

.language-pill__icon {
  font-size: 1rem;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.language-pill[aria-expanded="true"] .language-pill__icon {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  inset-inline-start: 0;
  inset-inline-end: 0;
  top: calc(100% + 0.5rem);
  background: #0f172a;
  border: 1px solid #1f2937;
  border-radius: 0.75rem;
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.35);
  padding: 0.35rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 30;
}

.language-menu--open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.65rem;
  border-radius: 0.65rem;
  border: none;
  background: transparent;
  color: #e2e8f0;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.language-option__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 1rem;
  line-height: 1;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.language-flag-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.language-flag-fallback {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-option:hover {
  background: rgba(79, 70, 229, 0.16);
}

.language-option--active {
  background: rgba(79, 70, 229, 0.24);
  color: #c7d2fe;
}

.language-select:focus {
  outline: none;
  border-color: #818cf8;
}

.language-select option {
  background: #0f172a;
  color: #f8fafc;
}

.action-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  padding: 1.5rem 1.25rem;
  border-radius: 1rem;
  background: #0f172a;
  border: 1px solid #1f2937;
  text-align: left;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.2s ease;
  cursor: pointer;
}

.action-btn__hint {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #94a3b8;
  font-weight: 700;
  opacity: 0.75;
  display: none;
}

.action-btn__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #f8fafc;
  text-transform: uppercase;
}

.action-btn:hover {
  border-color: #4f46e5;
  background: #111c33;
}

.action-btn:active {
  transform: translateY(1px);
}

@media (min-width: 768px) {
  .action-btn__hint {
    display: inline-block;
  }
}

.chip-btn {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.45rem 1.1rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #cbd5f5;
  background: rgba(15, 23, 42, 0.5);
  transition: all 0.2s ease;
  cursor: pointer;
}

.chip-btn:hover {
  border-color: #6366f1;
  color: #f8fafc;
}

.more-tools {
  margin-top: 4rem;
  padding: 1.2rem;
  border: 1px solid #1f2937;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.6);
}

.more-tools__head {
  margin-bottom: 1rem;
}

.more-tools__title {
  font-family: "Unbounded", "Noto Sans Arabic", "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: #f8fafc;
}

.more-tools__subtitle {
  color: #94a3b8;
  margin-top: 0.35rem;
  font-size: 0.82rem;
}

.more-tools__search-wrap {
  position: relative;
}

.more-tools__search-wrap i {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.more-tools__search {
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: #0f172a;
  color: #e2e8f0;
  padding: 0.75rem 0.9rem 0.75rem 2.5rem;
  font-size: 0.82rem;
}

.more-tools__search:focus {
  outline: none;
  border-color: #6366f1;
}

.tool-categories {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.tool-category-card {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.5);
  border-radius: 0.75rem;
  padding: 0.7rem 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tool-category-card__name {
  font-size: 0.7rem;
  color: #cbd5e1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.tool-category-card__count {
  min-width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #0f172a;
  background: #a5b4fc;
}

.tools-list {
  margin-top: 1rem;
  list-style: none;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 0.9rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.45);
}

.tools-list__item + .tools-list__item {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.more-tool__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0.95rem;
  color: #e2e8f0;
  text-decoration: none;
  transition: background 0.2s ease;
}

.more-tool__link:hover {
  background: rgba(99, 102, 241, 0.14);
}

.more-tool__main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.more-tool__name {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.more-tool__meta {
  font-size: 0.7rem;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.tool-badge {
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.tool-badge--new {
  color: #e0e7ff;
  background: rgba(79, 70, 229, 0.4);
}

.tool-badge--popular {
  color: #fef3c7;
  background: rgba(245, 158, 11, 0.28);
}

.tool-badge--ai {
  color: #dcfce7;
  background: rgba(22, 163, 74, 0.26);
}

.more-tool__icon {
  font-size: 1.25rem;
  color: #a5b4fc;
}

.more-tool__link.is-disabled {
  cursor: not-allowed;
}

.tools-empty {
  margin-top: 0.9rem;
  color: #94a3b8;
  text-align: center;
  font-size: 0.82rem;
}

@media (max-width: 640px) {
  .tool-categories {
    grid-template-columns: 1fr;
  }
}
/* Light Theme */
.light {
  background: #ffffff;
  color: #18181b;
}

.light .bg-zinc-900,
.light .bg-zinc-900\/50 {
  background: #f4f4f5;
}

.light textarea {
  color: #18181b;
}

.light .border-zinc-800 {
  border-color: #e4e4e7;
}

.light .text-white {
  color: #18181b;
}

.light .language-select {
  background: rgba(255, 255, 255, 0.85);
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.15);
}

.light .language-select option {
  background: #ffffff;
  color: #0f172a;
}

body.rtl {
  direction: rtl;
}

.light nav,
.light header,
.light main {
  color: inherit;
}

.light .site-nav {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.light .site-nav__menu {
  border-color: rgba(15, 23, 42, 0.08);
}

.light .nav-toggle {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.15);
}

.light .nav-toggle__bar {
  background: #0f172a;
}

.light .text-gray-300,
.light .text-gray-400,
.light .text-gray-500 {
  color: #1f2937;
}

.light .text-indigo-100 {
  color: #312e81;
}

.light .text-indigo-400 {
  color: #4c1d95;
}

.light .bg-\[\#161b22\] {
  background: #ffffff;
  color: #0f172a;
}

.light .bg-\[\#0d1117\] {
  background: #f3f4f6;
  color: #0f172a;
}

.light .bg-\[\#0d1117\]\/50 {
  background: rgba(243, 244, 246, 0.9);
}

.light .bg-\[\#21262d\] {
  background: #e0e7ff;
  color: #312e81;
}

.light .bg-gray-800\/20,
.light .bg-gray-800\/40 {
  background: rgba(15, 23, 42, 0.06);
}

.light .border-gray-800,
.light .border-indigo-500\/30,
.light .border-indigo-500\/50 {
  border-color: #cbd5f5;
}

.light .bg-indigo-600 {
  background: #4c1d95;
}

.light .shadow-indigo-500\/20 {
  box-shadow: 0 10px 25px rgba(76, 29, 149, 0.25);
}

.light .nav-link {
  color: #475569;
}

.light .nav-link:hover {
  color: #0f172a;
}

.light .control-btn {
  border-color: rgba(15, 23, 42, 0.15);
  background: rgba(241, 245, 249, 0.9);
  color: #0f172a;
}

.light .language-pill {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(15, 23, 42, 0.1);
  color: #0f172a;
}

.light .language-pill__flag,
.light .language-option__flag {
  background: rgba(15, 23, 42, 0.06);
}

.light .language-pill__icon {
  color: #475569;
}

.light .language-menu {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.light .language-option {
  color: #0f172a;
}

.light .language-option:hover {
  background: rgba(79, 70, 229, 0.12);
}

.light .language-option--active {
  background: rgba(79, 70, 229, 0.18);
  color: #312e81;
}

.light .theme-toggle {
  background: rgba(15, 23, 42, 0.05);
  border-color: rgba(15, 23, 42, 0.2);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.light .control-btn--ghost {
  background: rgba(255, 255, 255, 0.85);
}

.light .control-btn--solid {
  background: rgba(15, 23, 42, 0.05);
}

.light .control-btn--danger {
  border-color: rgba(248, 113, 113, 0.35);
  background: rgba(248, 113, 113, 0.12);
  color: #991b1b;
}

.light .action-btn {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.light .action-btn__label {
  color: #0f172a;
}

.light .chip-btn {
  background: rgba(15, 23, 42, 0.03);
  border-color: rgba(15, 23, 42, 0.15);
  color: #0f172a;
}

.light .more-tools {
  background: #f8fafc;
  border-color: #e2e8f0;
}

.light .more-tools__title {
  color: #0f172a;
}

.light .more-tools__subtitle,
.light .tools-empty,
.light .more-tool__meta {
  color: #475569;
}

.light .more-tools__search {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.15);
}

.light .tool-category-card,
.light .tools-list {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.12);
}

.light .more-tool__link {
  color: #0f172a;
}

.light .more-tool__link:hover {
  background: rgba(79, 70, 229, 0.08);
}

.light .more-tool__icon {
  color: #4f46e5;
}

.light .site-footer {
  background: #f8fafc;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.light .site-footer__tagline,
.light .site-footer__caption {
  color: #475569;
}

.light .site-footer__social a {
  border-color: rgba(15, 23, 42, 0.15);
  color: #0f172a;
}

.light .site-footer__social a:hover {
  color: #4f46e5;
  border-color: #4f46e5;
}

.light .site-footer__link,
.light .site-footer__pill {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.15);
}

.light .site-footer__pill:hover {
  border-color: #4f46e5;
  color: #4f46e5;
}

.light .site-footer__bar {
  border-color: rgba(15, 23, 42, 0.1);
  color: #475569;
}
