/* SoftWay & FoxyUI Official English Presentation Site Stylesheet */

:root {
  --bg-primary: #0A0E17;
  --bg-secondary: #0F172A;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-glass: rgba(30, 41, 59, 0.6);
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --accent-cyan: #00F5FF;
  --accent-purple: #7C4DFF;
  --accent-magenta: #EC4899;
  --accent-green: #10B981;
  --accent-amber: #F59E0B;
  --accent-blue: #3B82F6;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(0, 245, 255, 0.35);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --font-mono: 'Fira Code', monospace;
}

body.light-theme {
  --bg-primary: #F8FAFC;
  --bg-secondary: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-glass: #F1F5F9;
  --text-main: #0F172A;
  --text-muted: #475569;
  --accent-cyan: #0284C7;
  --accent-purple: #6D28D9;
  --accent-magenta: #DB2777;
  --accent-green: #059669;
  --accent-amber: #D97706;
  --accent-blue: #2563EB;
  --border-color: #E2E8F0;
  --border-glow: rgba(90, 59, 247, 0.35);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 14, 23, 0.85);
  border-bottom: 1px solid var(--border-color);
  padding: 0.85rem 0;
}

body.light-theme .site-header {
  background: rgba(255, 255, 255, 0.9);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text-main);
  z-index: 1001;
}

.brand-logo img {
  height: 38px;
  width: auto;
}

.brand-logo h1 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-logo span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile Hamburger Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 40px;
  height: 40px;
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 8px 9px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.25s ease;
}

.mobile-menu-btn:hover {
  border-color: var(--accent-cyan);
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile-First Nav Links Drawer */
.nav-links {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: rgba(10, 14, 23, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 1.5rem 1.5rem;
  list-style: none;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-top: 1px solid var(--border-color);
  z-index: 1000;
}

body.light-theme .nav-links {
  background: rgba(255, 255, 255, 0.98);
}

.nav-links.open {
  transform: translateX(0);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  display: block;
  transition: all 0.2s ease;
}

.nav-links a:hover, .nav-links a:active {
  color: var(--accent-cyan);
  background: rgba(0, 245, 255, 0.08);
}

/* Desktop Navbar Presentation (min-width: 960px) */
@media (min-width: 960px) {
  .mobile-menu-btn {
    display: none;
  }

  .nav-links {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    padding: 0;
    transform: none;
    overflow-y: visible;
    border-top: none;
  }

  .nav-links a {
    font-size: 0.95rem;
    padding: 0.3rem 0.5rem;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 1001;
}

@media (max-width: 480px) {
  .header-cta-btn span {
    display: none;
  }
  .header-cta-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.3rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #5A3BF7, #7C4DFF);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(90, 59, 247, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 59, 247, 0.5);
}

.btn-secondary {
  background: var(--bg-glass);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.theme-toggle-btn {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero-section {
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 30px;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid var(--border-glow);
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, #00F5FF, #7C4DFF, #EC4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hero-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* About FoxyUI Spotlight Section - Mobile First */
.about-foxy-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(30, 27, 75, 0.7));
  border: 1px solid rgba(255, 122, 0, 0.3);
  border-radius: 24px;
  padding: 1.8rem 1.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 122, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: center;
  text-align: center;
  margin-top: 1rem;
}

@media (min-width: 860px) {
  .about-foxy-card {
    grid-template-columns: 200px 1fr;
    text-align: left;
    padding: 2.5rem;
    gap: 2.5rem;
  }
}

.about-foxy-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-foxy-logo-wrap img {
  width: 150px;
  height: 150px;
  max-width: 100%;
  filter: drop-shadow(0 0 20px rgba(255, 122, 0, 0.35));
  transition: transform 0.3s ease;
}

@media (min-width: 860px) {
  .about-foxy-logo-wrap img {
    width: 170px;
    height: 170px;
  }
}

.about-foxy-logo-wrap img:hover {
  transform: scale(1.05) rotate(2deg);
}

.about-foxy-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.about-foxy-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.about-foxy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 860px) {
  .about-foxy-meta {
    justify-content: flex-start;
  }
}

.btn-github {
  background: #24292E;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.btn-github:hover {
  background: #2F363D;
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 245, 255, 0.2);
}

.prod-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Section Cards & Layouts */
.section {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 2.5rem;
}

.section-tag {
  color: var(--accent-cyan);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
}

/* Framework Foundation Grid - Mobile First */
.framework-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

@media (min-width: 640px) {
  .framework-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .framework-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.6rem;
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 245, 255, 0.12);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-pill {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
  background: rgba(0, 245, 255, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

/* Side-by-Side Showcase Studio */
.showcase-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.showcase-tabs-nav {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border-color);
  overflow-x: auto;
  scrollbar-width: none;
}

.showcase-tab-btn {
  padding: 1rem 1.8rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.showcase-tab-btn:hover {
  color: var(--text-main);
}

.showcase-tab-btn.active {
  color: var(--accent-cyan);
  border-bottom-color: var(--accent-cyan);
  background: rgba(0, 245, 255, 0.05);
}

.side-by-side-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  min-height: auto;
}

@media (min-width: 960px) {
  .side-by-side-wrapper {
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
  }
}

.live-app-pane {
  padding: 1.5rem 1rem;
  border-right: none;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top, rgba(30, 41, 59, 0.3), transparent);
  min-height: 420px;
}

@media (min-width: 960px) {
  .live-app-pane {
    padding: 2rem;
    border-right: 1px solid var(--border-color);
    border-bottom: none;
    min-height: 480px;
  }
}

/* Fail-safe Analytics & Charts Styling */
.chart-widget-card {
  width: 100%;
  max-width: 480px;
  background: #0D131F;
  border: 1px solid rgba(0, 245, 255, 0.25);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.chart-bars-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 180px;
  background: #06090F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem 1rem 0.8rem;
  gap: 12px;
  margin-top: 0.8rem;
  position: relative;
}

.chart-bar-col {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.chart-bar-val {
  font-size: 0.72rem;
  font-weight: 800;
  color: #F8FAFC;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
}

.chart-bar-pillar {
  width: 100%;
  max-width: 42px;
  min-height: 20px;
  border-radius: 6px 6px 0 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 16px rgba(0, 245, 255, 0.25);
  cursor: pointer;
}

.chart-bar-pillar:hover {
  filter: brightness(1.25);
  transform: translateY(-2px);
}

.chart-bar-lbl {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94A3B8;
  margin-top: 6px;
  text-align: center;
}

.java-code-pane {
  background: #080C14;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  overflow: hidden;
}

@media (min-width: 768px) {
  .java-code-pane {
    padding: 1.5rem;
  }
}

.code-pane-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.code-filename {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.copy-code-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E2E8F0;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-code-btn:hover {
  background: var(--accent-cyan);
  color: #0A0E17;
  font-weight: 700;
}

.code-editor-content {
  flex: 1;
  overflow-y: auto;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #E2E8F0;
  white-space: pre;
}

/* Syntax highlight simulation */
.kw { color: #EC4899; font-weight: 700; }
.cls { color: #00F5FF; font-weight: 700; }
.str { color: #10B981; }
.fn { color: #7C4DFF; }
.num { color: #F59E0B; }
.cm { color: #64748B; font-style: italic; }

/* Interactive Live Calculator CSS */
.calc-box {
  width: 100%;
  max-width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.calc-history {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: right;
  min-height: 1.3rem;
  padding: 0 0.5rem;
}

.calc-display {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 800;
  text-align: right;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  margin: 0.5rem 0 1rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.calc-btn {
  padding: 0.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-glass);
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.15s;
}

.calc-btn:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.15);
}

.calc-btn.op { background: rgba(124, 77, 255, 0.25); color: #00F5FF; }
.calc-btn.danger { background: rgba(239, 68, 68, 0.25); color: #EF4444; }
.calc-btn.success { background: #10B981; color: #FFFFFF; }

/* Comparison Table - Mobile Touch Scroll */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 0.8rem;
}

@media (min-width: 640px) {
  .comparison-table-wrapper {
    padding: 1.2rem;
  }
}

.comparison-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
  .comparison-table th, .comparison-table td {
    padding: 1.2rem 1.5rem;
  }
}

.comparison-table th {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  background: rgba(0,0,0,0.15);
}

.comparison-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.highlight-col {
  background: rgba(0, 245, 255, 0.05);
  font-weight: 700;
  color: var(--accent-cyan);
}

/* Footer - Mobile First */
.site-footer {
  background: #06090F;
  border-top: 1px solid var(--border-color);
  padding: 3.5rem 0 2rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .site-footer {
    padding: 4.5rem 0 2rem;
    margin-top: 5rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 0.8rem;
  font-size: 0.9rem;
  max-width: 340px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-cyan);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.interactive-input {
  font-size: 16px !important;
}

/* ==========================================================================
   Comprehensive High-Contrast Light Theme Overrides
   ========================================================================== */
body.light-theme {
  background-color: #F8FAFC;
  color: #0F172A;
}

body.light-theme .hero-subtitle {
  color: #475569;
}

body.light-theme .badge-pill {
  background: #E0F2FE;
  color: #0369A1;
  border-color: #BAE6FD;
}

body.light-theme .about-foxy-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .about-foxy-content h3 {
  color: #0F172A;
}

body.light-theme .about-foxy-content p {
  color: #475569;
}

body.light-theme .btn-github {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}

body.light-theme .btn-github:hover {
  background: #1E293B;
  color: #FFFFFF;
}

body.light-theme .prod-badge {
  background: #DCFCE7;
  color: #166534;
  border-color: #86EFAC;
}

body.light-theme .section-title {
  color: #0F172A;
}

body.light-theme .section-desc {
  color: #475569;
}

body.light-theme .feature-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

body.light-theme .feature-card:hover {
  border-color: #93C5FD;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.08);
}

body.light-theme .feature-card h3 {
  color: #0F172A;
}

body.light-theme .feature-card p {
  color: #475569;
}

body.light-theme .feature-pill {
  background: #EFF6FF;
  color: #1D4ED8;
}

body.light-theme .comparison-table-wrapper {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

body.light-theme .comparison-table th {
  background: #F1F5F9;
  color: #0F172A;
}

body.light-theme .comparison-table td {
  color: #334155;
  border-bottom: 1px solid #E2E8F0;
}

body.light-theme .comparison-table tr:hover td {
  background: #F8FAFC;
}

body.light-theme .highlight-col {
  background: #EFF6FF;
  color: #1D4ED8;
}

body.light-theme .showcase-container {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-theme .showcase-tabs-nav {
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}

body.light-theme .showcase-tab-btn {
  color: #64748B;
}

body.light-theme .showcase-tab-btn:hover {
  color: #0F172A;
}

body.light-theme .showcase-tab-btn.active {
  background: #FFFFFF;
  color: #2563EB;
  border-bottom-color: #2563EB;
}

body.light-theme .live-app-pane {
  background: #F8FAFC;
  border-right: 1px solid #E2E8F0;
}

body.light-theme .chart-widget-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-theme .chart-widget-card h3 {
  color: #0F172A !important;
}

body.light-theme .chart-bars-wrap {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
}

body.light-theme .chart-bar-lbl {
  color: #475569;
}

body.light-theme .chart-bar-val {
  color: #0F172A;
  text-shadow: none;
}

body.light-theme .calc-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
}

body.light-theme .calc-display {
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  color: #0F172A;
}

body.light-theme .calc-btn {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #0F172A;
}

body.light-theme .calc-btn:hover {
  background: #E2E8F0;
}

body.light-theme .site-footer {
  background: #F1F5F9;
  border-top: 1px solid #E2E8F0;
}

body.light-theme .footer-brand p {
  color: #64748B;
}

body.light-theme .footer-col h4 {
  color: #0F172A;
}

body.light-theme .footer-col a {
  color: #475569;
}

body.light-theme .footer-col a:hover {
  color: #2563EB;
}

body.light-theme .footer-bottom {
  border-top: 1px solid #E2E8F0;
  color: #64748B;
}

body.light-theme .interactive-input {
  background: #FFFFFF !important;
  color: #0F172A !important;
  border: 1px solid #CBD5E1 !important;
}
