:root {
  /* Dark theme - Hero only */
  --black: #000;
  --rich: #0a0a0a;
  --surface-dark: #111;
  --card-dark: #1a1a1a;
  --border-dark: rgba(255, 255, 255, 0.08);
  --text-light: #fff;
  --text-light-sec: rgba(255, 255, 255, 0.6);
  --text-light-mut: rgba(255, 255, 255, 0.35);

  /* Light theme - Content */
  --white: #fff;
  --cream: #fafaf9;
  --surface: #f5f5f4;
  --card: #fff;
  --border: rgba(0, 0, 0, 0.06);
  --border-hover: rgba(0, 0, 0, 0.12);
  --text: #1a1a1a;
  --text-sec: #666;
  --text-mut: #999;

  /* Accents */
  --accent: #fffc00;
  --accent-hover: #fff133;
  --green: #22c55e;

  /* Layout */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --pill: 980px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Outfit",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--accent);
  color: var(--black);
}

/* Typography */
.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.hero-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--accent);
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}
.section-title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
}

.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mut);
}
.label-light {
  color: var(--text-light-mut);
}
.label-accent {
  color: var(--accent) !important;
}

/* Navigation - Dark */
.nav-b {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border-dark);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-b.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-b .brand {
  font-family: "Outfit";
  font-weight: 800;
  font-size: 1.375rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.04em;
  transition: color 0.4s;
}
.nav-b.scrolled .brand {
  color: var(--text);
}

.nav-b .nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light-sec);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-b .nav-link:hover {
  color: #fff;
}
.nav-b.scrolled .nav-link {
  color: var(--text-sec);
}
.nav-b.scrolled .nav-link:hover {
  color: var(--text);
}

/* Buttons */
.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--black);
  border: none;
  border-radius: var(--pill);
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: "Outfit";
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.btn-accent:hover {
  background: var(--accent-hover);
  color: var(--black);
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(255, 252, 0, 0.3);
}
.btn-accent-sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--pill);
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: "Outfit";
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.btn-ghost-sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: var(--pill);
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: "Outfit";
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.btn-dark:hover {
  background: #222;
  color: #fff;
  transform: scale(1.02);
}
.btn-dark-sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hover);
  border-radius: var(--pill);
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: "Outfit";
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.btn-outline:hover {
  border-color: var(--text);
  color: var(--text);
  background: rgba(0, 0, 0, 0.02);
}
.btn-outline-sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

/* ============================================
       HERO SECTION - DARK
    ============================================ */
.hero {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 252, 0, 0.3) 0%,
    transparent 70%
  );
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}
.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 252, 0, 0.15) 0%,
    transparent 70%
  );
  top: 50%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(20px, 10px) scale(1.02);
  }
}

/* Noise texture overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
}

.hero-left {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  padding-left: max(2rem, calc((100vw - 1320px) / 2));
  padding-right: 3rem;
}

.hero-right {
  width: 48%;
  position: relative;
  display: none;
}

.hero-image-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, var(--black) 0%, transparent 15%);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: heroImageZoom 8s ease-in-out infinite alternate;
}

@keyframes heroImageZoom {
  0% {
    transform: scale(1.1) translate(0, 0);
  }
  100% {
    transform: scale(1.15) translate(-2%, 1%);
  }
}

@media (min-width: 992px) {
  .hero-right {
    display: block;
  }
}

/* Interest pills - Dark */
.interest-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.interest-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--pill);
  padding: 12px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
}
.interest-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}
.interest-pill i {
  font-size: 1.125rem;
  opacity: 0.5;
}

/* Stats bar - Dark */
.stats-bar {
  background: var(--surface-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 4rem 0;
}
.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}
.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-num {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.stat-label {
  font-size: 0.8125rem;
  color: var(--text-light-sec);
  font-weight: 500;
  margin-top: 4px;
}

/* ============================================
       CONTENT SECTIONS - LIGHT
    ============================================ */

/* Features Section */
.features-section {
  background: var(--cream);
  padding: 8rem 0;
  position: relative;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    180deg,
    var(--surface-dark) 0%,
    var(--cream) 100%
  );
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991.98px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--border-hover);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.feature-card h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
}
.feature-card p {
  color: var(--text-sec);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

/* How it works Section */
.how-section {
  background: var(--white);
  padding: 8rem 0;
}

.step-block {
  background: var(--cream);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-img {
  overflow: hidden;
  height: 400px;
}
.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-block:hover .step-img img {
  transform: scale(1.04);
}

.step-content {
  padding: 2.5rem;
}

.step-number {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--black);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 32px;
  text-align: center;
  margin-bottom: 1rem;
}

.step-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.step-content p {
  color: var(--text-sec);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Cities Section */
.cities-section {
  background: var(--cream);
  padding: 8rem 0;
}

.city-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  text-decoration: none;
  min-height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}
.city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.32), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.2), transparent 30%);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}
.city-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.city-card:hover::before {
  opacity: 0.9;
  transform: scale(1.08) rotate(3deg);
}

.city-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 44%);
}

.city-label {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
}
.city-label h4,
.city-label h5,
.city-label h6 {
  color: #fff;
  font-size: clamp(1.15rem, 2.4vw, 2.25rem);
  font-weight: 900;
  line-height: 1;
  margin: 0;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.32);
  text-transform: uppercase;
  word-break: break-word;
}
.city-count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  margin-top: 2px;
}

/* Venues Section */
.venues-section {
  background: var(--white);
  padding: 8rem 0;
}

.venue-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}
.venue-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.venue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--border-hover);
}

.venue-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.venue-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.venue-img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  text-align: center;
  color: #fff;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.venue-img-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.34), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2));
}
.venue-img-fallback span {
  position: relative;
  z-index: 1;
}
.venue-card:hover .venue-img img {
  transform: scale(1.06);
}
.venue-card:hover .venue-img-fallback {
  transform: scale(1.04);
}

.venue-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--black);
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.venue-body {
  padding: 1.5rem;
}
.venue-body h6 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.venue-title-link {
  color: inherit;
  text-decoration: none;
}
.venue-title-link:hover {
  color: inherit;
  text-decoration: underline;
}
.venue-meta {
  font-size: 0.8125rem;
  color: var(--text-mut);
  margin-bottom: 1rem;
}
.venue-rating {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
}
.venue-rating i {
  color: var(--accent);
  font-size: 0.75rem;
}

.venue-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  background: var(--white);
  color: var(--text-sec);
  border: 1px solid var(--border);
}

/* FAQ Section */
.faq-section {
  background: var(--cream);
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  cursor: pointer;
}
.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: 1.0625rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text);
}
.faq-q .bi {
  font-size: 1.25rem;
  transition: transform 0.3s;
  color: var(--text-mut);
}
.faq-item.open .faq-q .bi {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 0.75rem;
}
.faq-a p {
  font-size: 0.9375rem;
  color: var(--text-sec);
  line-height: 1.65;
  margin: 0;
}

/* CTA Banner */
.cta-section {
  background: var(--white);
  padding: 0 0 8rem;
}

.cta-banner {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 252, 0, 0.2) 0%,
    transparent 70%
  );
  filter: blur(60px);
}

.cta-banner * {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-family: "Outfit";
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  color: #fff;
}
.cta-banner p {
  font-size: 1.0625rem;
  color: var(--text-light-sec);
  max-width: 420px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

/* Footer */
.footer-b {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 4rem 0 2rem;
}
.footer-b a {
  color: var(--text-light-mut);
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s;
}
.footer-b a:hover {
  color: #fff;
}
.footer-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light-sec);
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger-1 {
  transition-delay: 0.1s;
}
.reveal-stagger-2 {
  transition-delay: 0.2s;
}
.reveal-stagger-3 {
  transition-delay: 0.3s;
}
.reveal-stagger-4 {
  transition-delay: 0.4s;
}
.reveal-stagger-5 {
  transition-delay: 0.5s;
}
.reveal-stagger-6 {
  transition-delay: 0.6s;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    background-image: url("https://images.unsplash.com/photo-1519167758481-83f550bb49b3?w=800&q=80");
    background-size: cover;
    background-position: center;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }
  .hero-content {
    position: relative;
    z-index: 2;
  }
  .hero-left {
    padding: 120px 1.5rem 80px;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-orb {
    display: none;
  }

  .step-block .row {
    flex-direction: column-reverse !important;
  }
  .step-img {
    height: 280px;
  }
}

/* Smooth scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light-mut);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator i {
  font-size: 1.25rem;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@media (max-width: 991.98px) {
  .scroll-indicator {
    display: none;
  }
}

em {
  background: linear-gradient(135deg, #ff00ff, #7b68ee, #00fa9a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
