.site-footer {
  border-top: 1px solid var(--line, rgba(255, 255, 255, .13));
  padding-top: clamp(52px, 7vw, 96px);
  padding-bottom: clamp(32px, 4vw, 56px);
  color: var(--muted, rgba(255, 255, 255, .72));
}
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #050505;
  --text: #fff;
  --muted: rgba(255, 255, 255, .72);
  --line: rgba(255, 255, 255, .13);
  --panel: #080808;
}
html[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f8f1;
  --text: #050505;
  --muted: rgba(5, 5, 5, .68);
  --line: rgba(5, 5, 5, .13);
  --panel: #fff;
}
html[data-theme] body {
  background: var(--bg) !important;
  color: var(--text) !important;
}
html[data-theme] .page {
  background: radial-gradient(circle at 80% 18%, rgba(201, 242, 78, .18), transparent 34%), var(--bg) !important;
}
html[data-theme="dark"] .page {
  background: radial-gradient(circle at 80% 18%, rgba(201, 242, 78, .13), transparent 34%), var(--bg) !important;
}
html[data-theme="light"] .panel,
html[data-theme="light"] .card,
html[data-theme="light"] .proof div,
html[data-theme="light"] .faq details,
html[data-theme="light"] .metric div,
html[data-theme="light"] .ticker-item {
  background: var(--panel) !important;
}
html[data-theme="dark"] .panel,
html[data-theme="dark"] .card,
html[data-theme="dark"] .proof div,
html[data-theme="dark"] .faq details,
html[data-theme="dark"] .metric div,
html[data-theme="dark"] .ticker-item {
  background: var(--panel) !important;
}
.site-footer.wrap {
  padding-left: clamp(22px, 4vw, 74px);
  padding-right: clamp(22px, 4vw, 74px);
}
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--lime, #c9f24e); }
.language-switch {
  color: var(--muted, rgba(255, 255, 255, .72));
}
.language-switch span {
  color: color-mix(in srgb, var(--muted, rgba(255, 255, 255, .72)) 58%, transparent);
}
.language-switch .lang-link {
  color: var(--muted, rgba(255, 255, 255, .72));
  opacity: .86;
  transition: color .22s ease, opacity .22s ease;
}
.language-switch .lang-link:hover,
.language-switch .lang-link.is-active,
.language-switch .lang-link[aria-current="page"] {
  color: var(--lime, #c9f24e);
  opacity: 1;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) repeat(3, minmax(160px, .8fr));
  gap: clamp(34px, 5vw, 86px);
}
.footer-brandmark {
  color: var(--text, #fff);
  font-size: clamp(32px, 4vw, 70px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: .95;
}
.footer-brand p {
  max-width: 360px;
  margin: 22px 0 0;
}
.footer-cta {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 18px;
  border: 1px solid rgba(201, 242, 78, .55);
  color: var(--lime, #c9f24e);
  font-size: 12px;
  letter-spacing: .14em;
}
.footer-col h2 {
  margin: 0 0 22px;
  color: var(--text, #fff);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-col ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-col li {
  border: 0;
  padding: 0;
  color: var(--muted, rgba(255, 255, 255, .72));
  line-height: 1.4;
}
.footer-note {
  margin-top: clamp(48px, 6vw, 82px);
  padding-top: 28px;
  border-top: 1px solid var(--line, rgba(255, 255, 255, .13));
  font-size: 13px;
  line-height: 1.65;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line, rgba(255, 255, 255, .13));
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
@media (prefers-color-scheme: light) {
  .site-footer {
    --text: #050505;
    --muted: rgba(5, 5, 5, .68);
    --line: rgba(5, 5, 5, .13);
  }
}
html[data-theme="dark"] .site-footer {
  --text: #fff;
  --muted: rgba(255, 255, 255, .72);
  --line: rgba(255, 255, 255, .13);
}
html[data-theme="light"] .site-footer {
  --text: #050505;
  --muted: rgba(5, 5, 5, .68);
  --line: rgba(5, 5, 5, .13);
}
.theme-toggle {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: 56px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--line, rgba(255, 255, 255, .13));
  border-radius: 999px;
  background: color-mix(in srgb, var(--text, #fff) 5%, transparent);
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}
.theme-toggle:hover {
  border-color: var(--lime, #c9f24e);
  transform: translateY(-1px);
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--lime, #c9f24e);
  outline-offset: 4px;
}
.theme-toggle::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lime, #c9f24e);
  box-shadow: 0 0 15px rgba(201, 242, 78, .55);
  transition: transform .32s cubic-bezier(.2, .8, .2, 1), background .22s ease, box-shadow .22s ease;
}
.theme-toggle-icon {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.theme-toggle-icon::before,
.theme-toggle-icon::after {
  content: "";
  position: absolute;
  top: 14px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted, rgba(255, 255, 255, .72));
  opacity: .42;
  transition: opacity .22s ease, transform .32s ease;
}
.theme-toggle-icon::before { left: 14px; }
.theme-toggle-icon::after { right: 14px; }
html[data-theme="dark"] .theme-toggle::before {
  transform: translateX(24px);
  background: #fff;
  box-shadow: inset -7px -4px 0 #050505, 0 0 16px rgba(255, 255, 255, .28);
}
html[data-theme="dark"] .theme-toggle-icon::before {
  opacity: .24;
  transform: translateX(-3px) scale(.7);
}
html[data-theme="dark"] .theme-toggle-icon::after {
  opacity: .72;
  transform: translateX(-2px) scale(1.25);
}
html[data-theme="light"] .theme-toggle-icon::before {
  opacity: .72;
  transform: translateX(2px) scale(1.25);
}
html[data-theme="light"] .theme-toggle-icon::after {
  opacity: .24;
  transform: translateX(3px) scale(.7);
}
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { align-items: center; }
}

.footer-area{
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  opacity: .62;
}
