/*
Theme Name: Themespell Demo
Theme URI: https://themespell.com/
Author: Themespell
Author URI: https://themespell.com/
Description: Custom CSS powered Themespell demo theme.
Version: 2.0.1
Text Domain: themespell-demo
*/

/* ================================================================
   Reset & Base
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  line-height: 1.5;
}

body {
  background: #ffffff;
  color: #1f172b;
  font-family: 'Outfit', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button, input {
  font-family: inherit;
  font-size: inherit;
}

/* ================================================================
   Design Tokens
   ================================================================ */
:root {
  --brand: #6f3ed7;
  --brand-light: #a146da;
  --brand-dark: #5a30b0;
  --brand-bg: rgba(111, 62, 215, 0.1);
  --surface: #ffffff;
  --bg: #f7f1e7;
  --text: #1f172b;
  --text-secondary: #6f657d;
  --text-muted: #9ca3af;
  --border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px -30px rgba(15, 15, 40, 0.35);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --header-height: 72px;
  --topbar-height: 40px;
  --container-max: 1480px;
  --transition: 0.2s ease;
  --header-bg: #1E0E51;
  --header-text: rgba(255, 255, 255, 0.85);
  --header-icon: #a146da;
}

/* ================================================================
   Container
   ================================================================ */
.ts-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) {
  .ts-container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* ================================================================
   Marquee Animations
   ================================================================ */
@keyframes marquee-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes tsteam-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================================
   Topbar Marquee (new theme)
   ================================================================ */
.ts-topbar {
  background: linear-gradient(90deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  color: #fff;
  overflow: hidden;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.ts-topbar-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.ts-topbar-marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee-x 35s linear infinite;
}

.ts-topbar-marquee__text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.ts-topbar-marquee__separator {
  display: inline-block;
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 20px;
}

/* ================================================================
   Topbar Marquee (previous theme – tsteam)
   ================================================================ */
.tsteam-topbar {
  background: linear-gradient(90deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  overflow: hidden;
  position: relative;
}

.tsteam-topbar-marquee {
  overflow: hidden;
}

.tsteam-topbar-marquee__inner {
  display: flex;
  white-space: nowrap;
  animation: tsteam-marquee 30s linear infinite;
}

.tsteam-topbar-marquee__text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 0;
}

.tsteam-topbar-marquee__separator {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 20px;
}

/* ================================================================
   Site Header (new theme)
   ================================================================ */
.ts-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
}

.ts-site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  background: rgba(30, 14, 81, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ================================================================
   Header Main (new theme)
   ================================================================ */
.ts-header-main {
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ts-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 32px;
}

.ts-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ts-header__logo img {
  height: 28px;
  width: auto;
}

@media (min-width: 768px) {
  .ts-header__logo img {
    height: 32px;
  }
}

/* ================================================================
   Navigation (new theme)
   ================================================================ */
.ts-nav {
  display: none;
}

@media (min-width: 1024px) {
  .ts-nav {
    display: flex;
    align-items: center;
  }
}

.ts-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ts-nav__item > a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--header-text);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.ts-nav__item > a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ts-nav__item > a i {
  font-size: 14px;
  color: var(--header-icon);
}

.ts-nav__dropdown-arrow {
  font-size: 8px !important;
  margin-left: 2px;
  transition: transform var(--transition);
  color: rgba(255, 255, 255, 0.5);
}

/* ================================================================
   Dropdown (new theme)
   ================================================================ */
.ts-nav__item--dropdown {
  position: relative;
}

.ts-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #1a1f33;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  padding: 8px;
  list-style: none;
  margin: 0;
  z-index: 100;
}

.ts-nav__item--dropdown:hover > .ts-dropdown,
.ts-nav__item--dropdown:focus-within > .ts-dropdown {
  display: block;
}

.ts-nav__item--dropdown:hover > a .ts-nav__dropdown-arrow {
  transform: rotate(180deg);
}

.ts-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition);
}

.ts-dropdown li a:hover {
  background: rgba(112, 63, 214, 0.2);
  color: #fff;
}

.ts-dropdown li a i {
  flex-shrink: 0;
  font-size: 16px;
  width: 20px;
  text-align: center;
  color: var(--header-icon);
}

/* ================================================================
   Header Actions / CTA (new theme)
   ================================================================ */
.ts-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.ts-header__cta {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

@media (min-width: 768px) {
  .ts-header__cta {
    display: inline-flex;
  }
}

.ts-header__cta--outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.ts-header__cta--outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.ts-header__cta--primary {
  background: linear-gradient(135deg, #703fd6 0%, #a146da 100%);
  color: #fff;
  border: none;
}

.ts-header__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(112, 63, 214, 0.4);
}

/* ================================================================
   Mobile Toggle (new theme)
   ================================================================ */
.ts-header__mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.ts-header__mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
  .ts-header__mobile-toggle {
    display: none;
  }
}

.ts-header__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.ts-header__mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.ts-header__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.ts-header__mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================================================
   Mobile Menu (new theme)
   ================================================================ */
.ts-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  z-index: 1000;
  background: #0f131f;
  padding: 90px 24px 24px;
  transition: right 0.3s ease;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
  .ts-mobile-menu {
    display: none !important;
  }
}

.ts-mobile-menu.active {
  display: block;
  right: 0;
}

.ts-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ts-mobile-menu__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.ts-mobile-menu__nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ts-mobile-menu__nav a i {
  width: 20px;
  text-align: center;
  font-size: 16px;
  color: var(--header-icon);
}

/* ================================================================
   Header (previous theme – tsteam)
   ================================================================ */
.tsteam-header {
  background: #1E0E51;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tsteam-header.scrolled {
  background: rgba(30, 14, 81, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.tsteam-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 32px;
}

.tsteam-header__logo img {
  height: 36px;
  width: auto;
  transition: transform 0.2s ease;
}

.tsteam-header__logo:hover img {
  transform: scale(1.02);
}

/* Desktop Navigation (tsteam) */
.tsteam-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.tsteam-nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tsteam-nav__item a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.tsteam-nav__item a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.tsteam-nav__item i {
  font-size: 14px;
  color: #a146da;
}

/* Dropdown (tsteam) */
.tsteam-nav__item--dropdown {
  position: relative;
}

.tsteam-nav__dropdown-arrow {
  font-size: 8px;
  margin-left: 2px;
  transition: transform 0.2s ease;
  color: rgba(255, 255, 255, 0.5);
}

.tsteam-nav__item--dropdown:hover .tsteam-nav__dropdown-arrow {
  transform: rotate(180deg);
}

.tsteam-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #1a1f33;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.tsteam-nav__item--dropdown:hover .tsteam-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tsteam-dropdown li {
  margin: 0;
}

.tsteam-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.tsteam-dropdown a:hover {
  background: rgba(112, 63, 214, 0.2);
  color: white;
}

.tsteam-dropdown a i {
  color: #a146da;
}

/* Header Actions (tsteam) */
.tsteam-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tsteam-header__cta {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tsteam-header__cta--outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
}

.tsteam-header__cta--outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
}

.tsteam-header__cta--primary {
  background: linear-gradient(135deg, #703fd6 0%, #a146da 100%);
  color: white;
  border: none;
}

.tsteam-header__cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(112, 63, 214, 0.4);
}

.tsteam-header__cta i {
  font-size: 13px;
}

/* Mobile Toggle (tsteam) */
.tsteam-header__mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  transition: all 0.2s ease;
}

.tsteam-header__mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
}

.tsteam-header__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.tsteam-header__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.tsteam-header__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.tsteam-header__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu (tsteam) */
.tsteam-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #0f131f;
  z-index: 1000;
  padding: 90px 24px 24px;
  transition: right 0.3s ease;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.tsteam-mobile-menu.active {
  right: 0;
}

.tsteam-mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tsteam-mobile-menu__nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.tsteam-mobile-menu__nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.tsteam-mobile-menu__nav a i {
  color: #a146da;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

@media (max-width: 1024px) {
  .tsteam-nav {
    display: none;
  }

  .tsteam-header__actions .tsteam-header__cta:not(.tsteam-header__mobile-toggle) {
    display: none;
  }

  .tsteam-header__mobile-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .tsteam-header__inner {
    padding: 12px 0;
    gap: 16px;
  }

  .tsteam-header__logo img {
    height: 30px;
  }

  .tsteam-mobile-menu {
    width: 100%;
    right: -100%;
    padding-top: 80px;
  }
}

/* ================================================================
   Hero Section
   ================================================================ */
.ts-hero-header--wide {
  max-width: 68rem;
  margin-left: auto;
  margin-right: auto;
  padding: 5rem 1.5rem 3.5rem;
  text-align: center;
}

.ts-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--brand);
}

.ts-hero-badge::before {
  content: '';
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #a67cf5);
  box-shadow: 0 0 0 8px rgba(111, 62, 215, 0.1);
  flex-shrink: 0;
}

.ts-hero-title {
  margin: 1.5rem 0 0;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.ts-hero-title__line {
  display: block;
}

.ts-hero-title__accent {
  display: block;
  background: linear-gradient(90deg, #6f3ed7 0%, #9d78f6 35%, #ff8a3d 68%, #ffb347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ts-hero-subtitle {
  max-width: 52rem;
  margin: 1.5rem auto 0;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ================================================================
   Stat Pills
   ================================================================ */
.ts-stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2rem;
}

.ts-stat-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #404040;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ================================================================
   Layout Section (demo card wrapper)
   ================================================================ */
.ts-layout-section {
  border-radius: 1.5rem;
  padding: 24px;
  box-shadow: 0 20px 50px -30px rgba(15, 15, 40, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.05);
  width: 1330px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .ts-layout-section {
    padding: 40px;
  }
}

.ts-layout-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
}

.ts-layout-section__info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ts-layout-section__label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #ec4899;
  margin: 0 0 4px;
}

.ts-layout-section__title {
  margin: 0 0 4px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #171717;
  line-height: 1.1;
}

.ts-layout-section__badges {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ts-layout-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
}

.ts-layout-section__badge--category {
  background: #f5f5f5;
  color: #404040;
}

.ts-layout-section__badge--pro {
  background: rgba(111, 62, 215, 0.1);
  color: #6f3ed7;
}

.ts-layout-section__badge--new {
  background: rgba(255, 122, 24, 0.1);
  color: #ff7a18;
}

.ts-layout-section.is-hidden {
  display: none;
}

/* ================================================================
   Page Sections
   ================================================================ */
.ts-page-sections {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ================================================================
   Shortcode HTML
   ================================================================ */
.shortcode-html {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.shortcode-html > * {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.shortcode-html img {
  max-width: 100%;
  height: auto;
}

/* ================================================================
   Layout Filter
   ================================================================ */
.ts-layout-filter {
  width: min(calc(100% - 2rem), 1120px);
  background: rgba(255, 251, 245, 0.92);
  padding: 1rem;
  border-radius: 22px;
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 30;
  border: 1px solid rgba(111, 62, 215, 0.14);
  box-shadow: 0 24px 60px rgba(31, 23, 43, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ts-layout-filter.is-hidden-by-footer {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 1rem);
}

.ts-layout-filter__title {
  display: none;
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  letter-spacing: -0.02em;
}

.ts-layout-filter__options {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.ts-layout-filter__option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(111, 62, 215, 0.06);
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  transition: all 0.28s ease;
  border: 1px solid rgba(111, 62, 215, 0.1);
  min-width: 0;
}

.ts-layout-filter__option:hover {
  background: rgba(111, 62, 215, 0.1);
  transform: translateY(-2px);
  color: var(--text);
}

.ts-layout-filter__option.is-active {
  background: linear-gradient(135deg, #6f3ed7 0%, #8d62ee 100%);
  border-color: rgba(111, 62, 215, 0.28);
  color: #fff;
  box-shadow: 0 16px 30px rgba(111, 62, 215, 0.22);
  transform: translateY(-2px);
}

.ts-layout-filter__option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ts-layout-filter__option-label {
  flex: 1;
  min-width: 0;
}

.ts-layout-filter__count {
  background: rgba(111, 62, 215, 0.12);
  color: inherit;
  font-size: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.ts-layout-filter__option.is-active .ts-layout-filter__count {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.ts-layout-section.is-hidden {
  display: none;
}

@media (max-width: 1366px) {
  .ts-layout-filter__options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .ts-layout-filter {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    z-index: 1;
    margin-top: 0.5rem;
  }

  .ts-layout-filter__title {
    display: block;
  }

  .ts-layout-filter__options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ts-layout-filter__options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .ts-layout-filter__options {
    grid-template-columns: 1fr;
  }

  .ts-layout-filter__option {
    padding: 0.7rem 0.8rem;
    font-size: 0.88rem;
  }
}

/* ================================================================
   TS Team Demo – Previous theme filter styles (tsteam-demo)
   ================================================================ */
.ts-team-demo {
  --demo-paper: #f7f1e7;
  --demo-paper-soft: #efe6d7;
  --demo-card: rgba(255, 252, 247, 0.88);
  --demo-ink: #1f172b;
  --demo-ink-soft: #6f657d;
  --demo-line: rgba(58, 34, 100, 0.12);
  --demo-brand: #6f3ed7;
  --demo-brand-soft: rgba(111, 62, 215, 0.12);
  --demo-brand-glow: #b89af7;
  --demo-shadow: 0 28px 40px -32px rgba(31, 23, 43, 0.28);
  --demo-shadow-soft: 0 20px 30px -28px rgba(31, 23, 43, 0.18);
  background:
    radial-gradient(circle at top, rgba(111, 62, 215, 0.1), transparent 30%),
    linear-gradient(180deg, #fbf8f2 0%, var(--demo-paper) 100%);
  color: var(--demo-ink);
  padding-bottom: 9rem;
  overflow-x: clip;
}

.ts-team-demo__hero {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: clamp(4.5rem, 7vw, 7rem) clamp(1rem, 2vw, 2rem) clamp(2rem, 3vw, 3rem);
}

.ts-team-demo__hero-inner {
  max-width: 68rem;
  margin: 0 auto;
  text-align: center;
}

.ts-team-demo__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--demo-brand);
}

.ts-team-demo__eyebrow-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--demo-brand), #a67cf5);
  box-shadow: 0 0 0 8px rgba(111, 62, 215, 0.1);
}

.ts-team-demo__hero-title {
  margin: 1.5rem 0 0;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 500;
}

.ts-team-demo__hero-title-line {
  display: block;
}

.ts-team-demo__hero-title-accent {
  display: block;
  background: linear-gradient(90deg, #6f3ed7 0%, #9d78f6 35%, #ff8a3d 68%, #ffb347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ts-team-demo__hero-copy {
  max-width: 52rem;
  margin: 1.5rem auto 0;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
  color: var(--demo-ink-soft);
}

.ts-team-demo__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 2rem;
}

.ts-team-demo__stat-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--demo-brand-soft);
  color: var(--demo-brand);
  font-size: 0.82rem;
  font-weight: 700;
}

.ts-team-demo__container {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 2vw, 2rem);
  overflow-x: clip;
}

.ts-team-demo__filter {
  width: min(calc(100% - 2rem), 1120px);
  background: rgba(255, 251, 245, 0.92);
  padding: 1rem;
  border-radius: 22px;
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  z-index: 30;
  border: 1px solid rgba(111, 62, 215, 0.14);
  box-shadow: 0 24px 60px rgba(31, 23, 43, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ts-team-demo__filter.is-hidden-by-footer {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 1rem);
}

.ts-team-demo__filter-title {
  display: none;
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--demo-ink);
  text-align: left;
  letter-spacing: -0.02em;
}

.ts-team-demo__options {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.75rem;
}

.ts-team-demo__option {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--demo-ink-soft);
  background: rgba(111, 62, 215, 0.06);
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  transition: all 0.28s ease;
  border: 1px solid rgba(111, 62, 215, 0.1);
  min-width: 0;
}

.ts-team-demo__option:hover {
  background: rgba(111, 62, 215, 0.1);
  transform: translateY(-2px);
  color: var(--demo-ink);
}

.ts-team-demo__option.is-active {
  background: linear-gradient(135deg, #6f3ed7 0%, #8d62ee 100%);
  border-color: rgba(111, 62, 215, 0.28);
  color: #fff;
  box-shadow: 0 16px 30px rgba(111, 62, 215, 0.22);
  transform: translateY(-2px);
}

.ts-team-demo__option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ts-team-demo__option-label {
  flex: 1;
  min-width: 0;
}

.ts-team-demo__count {
  background: rgba(111, 62, 215, 0.12);
  color: inherit;
  font-size: 0.7rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.ts-team-demo__option.is-active .ts-team-demo__count {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.ts-team-demo__grid {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 2.5vw, 2.5rem);
}

.ts-team-demo__item {
  width: 100%;
  padding: clamp(1.2rem, 1.8vw, 1.7rem);
  background: var(--demo-card);
  border: 1px solid rgba(31, 23, 43, 0.08);
  border-radius: 1.9rem;
  box-shadow: var(--demo-shadow);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.ts-team-demo__item:nth-child(even) {
  background: rgba(244, 237, 225, 0.88);
}

.ts-team-demo__item.is-hidden {
  display: none;
}

.ts-team-demo__item-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(31, 23, 43, 0.08);
}

.ts-team-demo__item-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ts-team-demo__item-index {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--demo-brand);
}

.ts-team-demo__title {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  color: var(--demo-ink);
  letter-spacing: -0.04em;
}

.ts-team-demo__category {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--demo-ink-soft);
}

.ts-team-demo__badge {
  background: linear-gradient(135deg, #6f3ed7, #9d78f6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  box-shadow: 0 8px 24px rgba(111, 62, 215, 0.22);
}

.ts-team-demo__badge--new {
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  box-shadow: 0 8px 24px rgba(255, 122, 24, 0.22);
}

.ts-team-demo__content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-inline: 0.15rem;
  overflow-x: auto;
  overflow-y: hidden;
}

.ts-team-demo__content-inner {
  display: table;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  min-width: fit-content;
  overflow-x: clip;
}

.ts-team-demo__content-inner > * {
  max-width: 100%;
}

.ts-team-demo__empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--demo-ink-soft);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 23, 43, 0.08);
  border-radius: 1.6rem;
  box-shadow: var(--demo-shadow-soft);
}

@media (max-width: 1366px) {
  .ts-team-demo__options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .ts-team-demo {
    padding-bottom: 4rem;
  }

  .ts-team-demo__filter {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    z-index: 1;
    margin-top: 0.5rem;
  }

  .ts-team-demo__filter-title {
    display: block;
  }

  .ts-team-demo__options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ts-team-demo__hero {
    padding-top: 3.5rem;
  }

  .ts-team-demo__options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ts-team-demo__item-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ts-team-demo__content {
    padding-inline: 0;
  }

  .ts-team-demo__content-inner {
    display: block;
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .ts-team-demo__options {
    grid-template-columns: 1fr;
  }

  .ts-team-demo__option {
    padding: 0.7rem 0.8rem;
    font-size: 0.88rem;
  }
}

/* ================================================================
   Footer (new theme)
   ================================================================ */
.ts-footer {
  color: #fff;
  margin-top: 0;
}

.ts-footer__inner {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 768px) {
  .ts-footer__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
}

/* Footer – Newsletter Box */
.ts-newsletter-box {
  background: linear-gradient(135deg, #703fd6 0%, #a146da 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.ts-newsletter-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ts-newsletter-box__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.ts-newsletter-box__title {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .ts-newsletter-box__title {
    font-size: 30px;
  }
}

.ts-newsletter-box__text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.ts-newsletter-box__form {
  width: 100%;
}

.ts-newsletter-box__input-group {
  display: flex;
  gap: 14px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 540px) {
  .ts-newsletter-box__input-group {
    flex-direction: column;
  }
}

.ts-newsletter-box__input {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  font-size: 15px;
  color: #1f172b;
  background: #fff;
  border: none;
  border-radius: var(--radius-sm);
  outline: none;
}

.ts-newsletter-box__input::placeholder {
  color: #727f9f;
}

.ts-newsletter-box__button {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #0f131f;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.ts-newsletter-box__button:hover {
  background: #1a1f33;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Footer – Main Content */
.ts-footer__main {
  background: #0f131f;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ts-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 768px) {
  .ts-footer__top {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }
}

.ts-footer__logo {
  display: inline-block;
  flex-shrink: 0;
}

.ts-footer__logo-img {
  height: 36px;
  width: auto;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.ts-footer__logo:hover .ts-footer__logo-img {
  opacity: 1;
}

.ts-footer__nav {
  display: flex;
  gap: 28px;
}

@media (max-width: 768px) {
  .ts-footer__nav {
    flex-direction: column;
    gap: 16px;
  }
}

.ts-footer__nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.ts-footer__nav a:hover {
  color: #fff;
}

/* Footer – Social Icons */
.ts-footer__social {
  display: flex;
  gap: 12px;
}

@media (max-width: 768px) {
  .ts-footer__social {
    justify-content: center;
  }
}

.ts-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  font-size: 14px;
  transition: all var(--transition);
}

.ts-social-icon:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer – Bottom */
.ts-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ts-footer__bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.ts-footer__separator {
  color: rgba(255, 255, 255, 0.2);
  font-size: 13px;
}

/* ================================================================
   Footer (previous theme – tsteam)
   ================================================================ */
.tsteam-footer {
  margin-top: 80px;
}

.tsteam-newsletter {
  background: linear-gradient(135deg, #703fd6 0%, #a146da 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.tsteam-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.tsteam-newsletter-box {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.tsteam-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  margin-bottom: 16px;
}

.tsteam-newsletter-title {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
}

.tsteam-newsletter-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0 0 24px;
  line-height: 1.6;
}

.tsteam-newsletter-form__inner {
  display: flex;
  gap: 14px;
}

.tsteam-newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  background: white;
}

.tsteam-newsletter-input::placeholder {
  color: #727f9f;
}

.tsteam-newsletter-btn {
  padding: 14px 28px;
  background: #0f131f;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tsteam-newsletter-btn:hover {
  background: #1a1f33;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.tsteam-footer-bottom {
  background: #0f131f;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tsteam-footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.tsteam-footer-logo img {
  height: 36px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.tsteam-footer-logo:hover img {
  opacity: 1;
}

.tsteam-footer-nav {
  display: flex;
  gap: 28px;
}

.tsteam-footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.tsteam-footer-nav a:hover {
  color: white;
}

.tsteam-socials {
  display: flex;
  gap: 12px;
}

.tsteam-socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.tsteam-socials a:hover {
  background: #703fd6;
  border-color: #703fd6;
  color: white;
  transform: translateY(-2px);
}

.tsteam-footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.tsteam-footer-copyright p {
  margin: 0;
}

.tsteam-footer-copyright span {
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
  .tsteam-footer-links {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .tsteam-newsletter-form__inner {
    flex-direction: column;
  }

  .tsteam-newsletter-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .tsteam-newsletter {
    padding: 50px 0;
  }

  .tsteam-newsletter-title {
    font-size: 22px;
  }

  .tsteam-newsletter-desc {
    font-size: 15px;
  }

  .tsteam-footer-nav {
    flex-direction: column;
    gap: 16px;
  }

  .tsteam-socials {
    justify-content: center;
    gap: 10px;
  }

  .tsteam-footer-bottom {
    padding: 32px 0;
  }
}

/* ================================================================
   Utility
   ================================================================ */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

body.tsteam-menu-open {
  overflow: hidden;
}

/* ================================================================
   Home page cards
   ================================================================ */
.ts-home-card {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.88);
  box-shadow: 0 28px 40px -32px rgba(31, 23, 43, 0.28);
  border: 1px solid rgba(31, 23, 43, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ts-home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 56px -28px rgba(31, 23, 43, 0.35);
}

.ts-home-card__eyebrow {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--brand);
}

/* ================================================================
   Gradient text
   ================================================================ */
.ts-gradient-text {
  background: linear-gradient(90deg, #6f3ed7 0%, #9d78f6 35%, #ff8a3d 68%, #ffb347 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
