/* FinFacts Website Custom Styles */

/* 
 * Logo Usage Guide:
 * - Header logo: Uses white variant (logo-base-white.svg) for all themes
 * - Hero logo: Always uses white variant (logo-base-white.svg) on colored background
 * - Content logos: Use white variant for consistent branding
 * - All logos now use logo-base-white.svg for better visibility and consistency
 */

/* Page Load Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Content section animations - with fallbacks for production */
.content-sections {
  opacity: 1; /* Fallback visibility */
}

.content-sections h2 {
  animation: slideInLeft 0.6s ease-out 0.3s both;
  opacity: 1; /* Fallback for no-animation support */
}

.content-sections h3 {
  animation: fadeInUp 0.6s ease-out 0.5s both;
  opacity: 1; /* Fallback for no-animation support */
}

.content-sections > div {
  animation: fadeInUp 0.6s ease-out 0.1s both;
  opacity: 1; /* Fallback for no-animation support */
}

/* Animation ready state for production deployment */
.animation-ready {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) !important;
  transition: all 0.6s ease-out;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .content-sections h2,
  .content-sections h3,
  .content-sections > div,
  .hero-simple,
  .hero-description {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Production fallback - ensure visibility after 2 seconds */
@media screen {
  .hero-simple,
  .hero-description,
  .content-sections h2,
  .content-sections h3,
  .content-sections > div {
    animation-fill-mode: both;
    opacity: 1;
  }
}

/* Simple Hero Section - Centered with Navigation */
.hero-simple {
  height: 80vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--md-default-bg-color);
  padding: 2rem;
  text-align: center;
  margin: 0;
  animation: fadeInUp 0.8s ease-out;
}

.hero-description {
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  padding: 0 1rem;
  animation: slideInLeft 0.6s ease-out 0.2s both;
}

.hero-description h1 {
  font-size: 1.8rem !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  color: var(--md-default-fg-color) !important;
  margin: 0 !important;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-image-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  animation: fadeInScale 0.8s ease-out 0.4s both;
}

.main-screenshot {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--md-primary-fg-color--light);
  box-shadow: 
    0 0 0 1px var(--md-primary-fg-color--light),
    0 0 20px hsla(var(--md-primary-hue, 231), 60%, 60%, 0.15),
    0 0 40px hsla(var(--md-primary-hue, 231), 60%, 60%, 0.08),
    0 12px 48px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

/* Theme-based screenshot switching using CSS only */
/* Light mode: show dark screenshot (for contrast) */
[data-md-color-scheme="default"] .screenshot-dark-mode {
  display: none;
}

[data-md-color-scheme="default"] .screenshot-light-mode {
  display: block;
}

/* Dark mode: show light screenshot (for contrast) */
[data-md-color-scheme="slate"] .screenshot-light-mode {
  display: none;
}

[data-md-color-scheme="slate"] .screenshot-dark-mode {
  display: block;
}

[data-md-color-scheme="default"] .main-screenshot {
  border: 1px solid var(--md-primary-fg-color--light, #3f51b5);
  box-shadow: 
    0 0 0 1px var(--md-primary-fg-color--light, #3f51b5),
    0 0 20px hsla(231, 60%, 60%, 0.2),
    0 0 40px hsla(231, 60%, 60%, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.12);
}

[data-md-color-scheme="slate"] .main-screenshot {
  border: 1px solid var(--md-primary-fg-color, #3f51b5);
  box-shadow: 
    0 0 0 1px var(--md-primary-fg-color, #3f51b5),
    0 0 20px hsla(231, 70%, 70%, 0.3),
    0 0 40px hsla(231, 70%, 70%, 0.15),
    0 8px 32px rgba(255, 255, 255, 0.1);
}

/* Fallback for browsers that don't support CSS variables */
.main-screenshot {
  border: 1px solid #3f51b5;
  box-shadow: 
    0 0 0 1px #3f51b5,
    0 0 20px rgba(63, 81, 181, 0.2),
    0 0 40px rgba(63, 81, 181, 0.1),
    0 8px 32px rgba(0, 0, 0, 0.12);
}

.main-screenshot:hover {
  transform: translateY(-4px);
  border: 1px solid var(--md-primary-fg-color, #3f51b5);
  box-shadow: 
    0 0 0 1px var(--md-primary-fg-color, #3f51b5),
    0 0 30px rgba(63, 81, 181, 0.3),
    0 0 60px rgba(63, 81, 181, 0.15),
    0 16px 48px rgba(0, 0, 0, 0.2);
}

[data-md-color-scheme="slate"] .main-screenshot:hover {
  transform: translateY(-4px);
  border: 1px solid var(--md-primary-fg-color, #3f51b5);
  box-shadow: 
    0 0 0 1px var(--md-primary-fg-color, #3f51b5),
    0 0 30px rgba(63, 81, 181, 0.4),
    0 0 60px rgba(63, 81, 181, 0.2),
    0 16px 48px rgba(255, 255, 255, 0.15);
}

/* Keep navigation visible on homepage - Simple layout */

/* Keep header always visible on homepage */
body[data-md-url="/"] .md-header,
body[data-md-url="/index.html"] .md-header {
  position: relative !important;
  transform: none !important;
  display: block !important;
}

/* Reduce header height on mobile */
@media (max-width: 768px) {
  body[data-md-url="/"] .md-header,
  body[data-md-url="/index.html"] .md-header {
    min-height: 3rem;
  }
  
  .md-header__inner {
    min-height: 3rem;
  }
}

/* Normal content layout with navigation visible */

/* Responsive Design - Desktop First */
@media (min-width: 1025px) {
  /* Desktop styles */
  .hero-description h1 {
    font-size: 2.2rem !important;
    font-weight: 500 !important;
    white-space: nowrap;
  }
  
  .hero-description {
    margin: 0 auto 2rem auto;
  }
}

@media (max-width: 1024px) {
  .hero-description h1 {
    font-size: 1.8rem !important;
    font-weight: 500 !important;
    white-space: nowrap;
  }
  
  .hero-description {
    margin: 0 auto 1.2rem auto;
  }
  
  .hero-simple {
    height: 60vh;
    min-height: 400px;
    padding: 1.5rem;
  }
  
  .main-screenshot {
    max-height: 60vh;
  }
}

@media (max-width: 768px) {
  .hero-description h1 {
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    white-space: normal;
    line-height: 1.2 !important;
  }
  
  .hero-description {
    margin: 0 auto 1rem auto;
  }
  
  .hero-simple {
    height: 50vh;
    min-height: 350px;
    padding: 1rem;
  }
  
  .main-screenshot {
    max-height: 40vh;
  }
}

@media (max-width: 480px) {
  .hero-description h1 {
    font-size: 1.3rem !important;
    font-weight: 500 !important;
    white-space: normal;
    line-height: 1.2 !important;
  }
  
  .hero-description {
    margin: 0 auto 0.8rem auto;
  }
  
  .hero-simple {
    height: 45vh;
    min-height: 300px;
    padding: 0.5rem;
  }
  
  .main-screenshot {
    max-height: 35vh;
    border-radius: 8px;
  }
}

/* Content below hero */
.content-below-hero {
  padding: 4rem 2rem;
  text-align: center;
  background: var(--md-default-bg-color);
  min-height: 50vh;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.content-below-hero h2 {
  margin-bottom: 2rem;
  color: var(--md-default-fg-color);
}

.content-below-hero p {
  max-width: 600px;
  margin: 0 auto 3rem auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--md-default-fg-color--light);
}

.content-below-hero .md-button {
  margin: 0.5rem;
}

/* Hide the main page title to avoid duplication with hero */
body[data-md-url="/"] .md-content__inner > h1:first-child,
body[data-md-url="/index.html"] .md-content__inner > h1:first-child,
body[data-md-url="/"] .md-typeset h1:first-child,
body[data-md-url="/index.html"] .md-typeset h1:first-child {
  display: none !important;
  visibility: hidden !important;
}

/* Normal hero section within content flow */



/* Logo theme switching */
.md-header__button.md-logo {
  padding: 0.25rem;
  margin: 0.25rem;
}

.md-header__button.md-logo img {
  height: 3rem;
  width: auto;
  max-width: 200px;
  transition: opacity 0.3s ease;
}

/* Enhanced visibility for header logo */
.md-header__button.md-logo:hover img {
  opacity: 0.8;
}

/* Better contrast for dark theme header logo */
[data-md-color-scheme="slate"] .md-header__button.md-logo img {
  filter: brightness(1.1);
}

/* Theme-aware logos for content */
.theme-logo {
  height: 4rem;
  width: auto;
  max-width: 250px;
  transition: all 0.3s ease;
  margin: 1rem auto;
  display: block;
}

.theme-logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Large logo variant for special sections */
.theme-logo-large {
  height: 6rem;
  width: auto;
  max-width: 350px;
  transition: all 0.3s ease;
  margin: 1.5rem auto;
  display: block;
}

.theme-logo-large:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
  .md-header__button.md-logo img {
    height: 2.5rem;
    max-width: 150px;
  }
  
  .hero-logo img.logo-hero {
    height: 4.5rem;
    max-width: 200px;
  }
  
  .theme-logo {
    height: 3rem;
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  .md-header__button.md-logo img {
    height: 2rem;
    max-width: 120px;
  }
  
  .hero-logo img.logo-hero {
    height: 3.5rem;
    max-width: 160px;
  }
  
  .theme-logo {
    height: 2.5rem;
    max-width: 140px;
  }
}

/* Hero section styling */
.hero {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--md-primary-fg-color--light) 0%, var(--md-primary-fg-color) 100%);
  border-radius: 0.5rem;
  margin: 2rem 0;
  color: white;
}

.hero-logo {
  margin-bottom: 3rem;
  padding: 1rem;
}

.hero-logo img.logo-hero {
  height: 8rem;
  width: auto;
  max-width: 400px;
  filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)); /* Makes the logo white on colored background with shadow */
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Grid cards styling */
.grid.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.grid.cards > div {
  background: var(--md-default-bg-color);
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grid.cards > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.grid.cards h4 {
  margin-top: 0;
  color: var(--md-primary-fg-color);
  font-weight: 600;
}

/* Feature highlights */
.feature-highlight {
  background: var(--md-code-bg-color);
  border-left: 4px solid var(--md-primary-fg-color);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 0.25rem 0.25rem 0;
  animation: slideInLeft 0.6s ease-out 1s both;
}

/* Testimonial styling */
blockquote {
  background: var(--md-default-bg-color);
  border-left: 4px solid var(--md-accent-fg-color);
  margin: 2rem 0;
  padding: 1.5rem;
  font-style: italic;
  position: relative;
  animation: fadeInUp 0.6s ease-out 1.2s both;
}

blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--md-accent-fg-color);
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  opacity: 0.3;
}

/* Button enhancements */
.md-button {
  margin: 0.25rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
}

.md-button--primary {
  background: linear-gradient(135deg, var(--md-primary-fg-color) 0%, var(--md-accent-fg-color) 100%);
  border: none;
  color: white;
}

.md-button--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Pricing table styling */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.pricing-card {
  background: var(--md-default-bg-color);
  border: 2px solid var(--md-default-fg-color--lightest);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: var(--md-primary-fg-color);
}

.pricing-card.featured {
  border-color: var(--md-primary-fg-color);
  border-width: 3px;
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--md-primary-fg-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-card h3 {
  color: var(--md-primary-fg-color);
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--md-primary-fg-color);
  margin: 1rem 0;
}

.pricing-card .price small {
  font-size: 1rem;
  color: var(--md-default-fg-color--light);
  font-weight: 400;
}

.pricing-card ul {
  text-align: left;
  margin: 1.5rem 0;
}

.pricing-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--md-default-fg-color--lightest);
}

.pricing-card li:last-child {
  border-bottom: none;
}

/* Pricing page redesign */
.pricing-page {
  position: relative;
  padding-bottom: 2.5rem;
  isolation: isolate;
}

.pricing-page::before {
  content: "";
  position: absolute;
  top: -6rem;
  right: -6rem;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.25), transparent 65%);
  opacity: 0.7;
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}

.pricing-page::after {
  content: "";
  position: absolute;
  bottom: -5rem;
  left: -4rem;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22), transparent 60%);
  opacity: 0.65;
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}

.pricing-page > * {
  position: relative;
  z-index: 1;
}

.pricing-hero {
  position: relative;
  margin: 2rem 0 2.5rem;
  padding: 3rem 3rem;
  border-radius: 1.25rem;
  border: 1px solid var(--md-default-fg-color--lightest);
  background:
    radial-gradient(900px 420px at 0% -20%, rgba(14, 165, 233, 0.2), transparent 60%),
    radial-gradient(700px 360px at 100% 10%, rgba(245, 158, 11, 0.2), transparent 55%),
    linear-gradient(160deg, rgba(2, 6, 23, 0.02), rgba(2, 6, 23, 0.08));
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  animation: pricing-rise 0.6s ease both;
}

.pricing-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.35), transparent 60%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.pricing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(2, 6, 23, 0.1) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.pricing-hero-copy p {
  font-size: 1.05rem;
  color: var(--md-default-fg-color--light);
  max-width: 36rem;
}

.pricing-hero > * {
  position: relative;
  z-index: 1;
}

.pricing-hero h2 {
  margin-top: 0.75rem;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--md-default-fg-color--lightest);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.pricing-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: stretch;
}

.pricing-cta .md-button {
  width: 100%;
  text-align: center;
}

.pricing-hero-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(6px);
  animation: pricing-rise 0.7s ease both;
  animation-delay: 0.1s;
}

.pricing-hero-card h3 {
  margin-top: 0;
}

.pricing-hero-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.pricing-hero-card li {
  position: relative;
  padding-left: 1.3rem;
  margin: 0.6rem 0;
  color: var(--md-default-fg-color--light);
}

.pricing-hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--md-primary-fg-color);
}

.pricing-simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 1rem;
}

.pricing-simple-card {
  background: var(--md-default-bg-color);
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0.9rem;
  padding: 2rem;
  text-align: left;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-simple-card:hover {
  transform: translateY(-3px);
  border-color: var(--md-primary-fg-color);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.pricing-simple-card.featured {
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.08), rgba(255, 255, 255, 0.9));
  border-color: rgba(14, 165, 233, 0.4);
}

.pricing-simple-card h3 {
  margin-bottom: 0.35rem;
}

.pricing-simple-card .price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--md-primary-fg-color);
  margin: 0.75rem 0 1rem;
}

.pricing-simple-card .price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--md-default-fg-color--light);
}

.pricing-simple-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.pricing-simple-card li {
  position: relative;
  padding-left: 1.2rem;
  margin: 0.45rem 0;
  color: var(--md-default-fg-color--light);
}

.pricing-simple-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--md-primary-fg-color);
}

@media (max-width: 960px) {
  .pricing-hero-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero {
    padding: 2.5rem 2rem;
  }

  .pricing-hero-card {
    margin-top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-hero,
  .pricing-hero-card {
    animation: none;
  }
}

@keyframes pricing-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Download page styling */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.download-card {
  background: var(--md-default-bg-color);
  border: 1px solid var(--md-default-fg-color--lightest);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.download-card .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--md-primary-fg-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .grid.cards {
    grid-template-columns: 1fr;
  }
  
  .pricing-table,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cta {
    grid-template-columns: 1fr;
  }
  
  .pricing-hero {
    padding: 2.25rem 1.5rem;
  }
}

/* Dark mode adjustments */
[data-md-color-scheme="slate"] .hero {
  background: linear-gradient(135deg, var(--md-primary-fg-color--dark) 0%, var(--md-primary-fg-color) 100%);
}

[data-md-color-scheme="slate"] .grid.cards > div {
  background: var(--md-code-bg-color);
  border-color: var(--md-default-fg-color--light);
}

[data-md-color-scheme="slate"] .pricing-hero {
  border-color: var(--md-default-fg-color--light);
  background:
    radial-gradient(900px 400px at 0% -20%, rgba(56, 189, 248, 0.15), transparent 60%),
    radial-gradient(700px 360px at 100% 10%, rgba(251, 191, 36, 0.12), transparent 55%),
    linear-gradient(160deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.8));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
}

[data-md-color-scheme="slate"] .pricing-page::before {
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 65%);
}

[data-md-color-scheme="slate"] .pricing-hero::after {
  background-image: radial-gradient(rgba(248, 250, 252, 0.12) 1px, transparent 1px);
  opacity: 0.2;
}

[data-md-color-scheme="slate"] .pricing-page::after {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.18), transparent 60%);
}

[data-md-color-scheme="slate"] .pricing-badge {
  background: rgba(15, 23, 42, 0.6);
  border-color: var(--md-default-fg-color--light);
}

[data-md-color-scheme="slate"] .pricing-hero-card {
  background: rgba(15, 23, 42, 0.85);
  border-color: var(--md-default-fg-color--light);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

[data-md-color-scheme="slate"] .pricing-simple-card {
  background: var(--md-code-bg-color);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

[data-md-color-scheme="slate"] .pricing-simple-card.featured {
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.9));
  border-color: rgba(56, 189, 248, 0.5);
}

[data-md-color-scheme="slate"] .pricing-card,
[data-md-color-scheme="slate"] .download-card {
  background: var(--md-code-bg-color);
  border-color: var(--md-default-fg-color--light);
}
