/* ============================================================
   GP Sourcing — Premium Visual Upgrade Layer v1.0
   Targeted upgrades across all sections for max high-end feel
   ============================================================ */

:root {
  --announce-height: 0px;
  --header-offset: calc(var(--header-height, 72px) + var(--announce-height));
}

/* ════════════════════════════════════════
   1. GLOBAL TYPOGRAPHY REFINEMENTS
   ════════════════════════════════════════ */

[data-theme="dark"] .text-h2 {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.68) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .bento-card-title,
[data-theme="dark"] .comparison-card-title,
[data-theme="dark"] .calculator-title,
[data-theme="dark"] .chart-title {
  background: linear-gradient(180deg, #ffffff 10%, rgba(255, 255, 255, 0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════
   2. LOGO TICKER — PREMIUM UPGRADE
   ════════════════════════════════════════ */

.logo-ticker-wrap {
  margin-top: 80px !important;
  padding: 48px 0 !important;
  position: relative !important;
  background: transparent !important;
}
[data-theme="light"] .logo-ticker-wrap {
  background: transparent !important;
}

.logo-ticker-wrap::before,
.logo-ticker-wrap::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, var(--border-mid) 20%, var(--border-mid) 80%, transparent) !important;
  pointer-events: none !important;
}
.logo-ticker-wrap::before { top: 0 !important; }
.logo-ticker-wrap::after  { bottom: 0 !important; }

.logo-ticker-title {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  background: linear-gradient(135deg, var(--text) 30%, var(--muted) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 32px !important;
  text-align: center !important;
  opacity: 0.9 !important;
}

/* ════════════════════════════════════════
   3. HERO UI FRAME — FRAMELESS FLOAT v4
   ════════════════════════════════════════ */

.hero-mockup-wrapper {
  margin-top: 56px;
}

/* Frameless floating card — no browser chrome */
.hero-ui-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 32px 100px rgba(0, 0, 0, 0.6),
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: perspective(1600px) rotateX(2deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s ease;
  position: relative;
}

/* Ambient glow behind the card */
.hero-ui-frame::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(
    ellipse 80% 60% at 50% 110%,
    rgba(59, 130, 246, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

.hero-ui-frame:hover {
  transform: perspective(1600px) rotateX(0deg) translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.1),
    0 48px 120px rgba(0, 0, 0, 0.65),
    0 16px 48px rgba(59, 130, 246, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .hero-ui-frame {
  border-color: rgba(9, 9, 11, 0.06);
  box-shadow:
    0 0 0 1px rgba(9, 9, 11, 0.04),
    0 24px 72px rgba(59, 130, 246, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}


/* ── Hero viewport layout fix ── */

@media (min-width: 769px) {
  .hero-ui-frame .browser-viewport {
    position: relative !important;
    grid-template-columns: 1fr 1fr !important;
    height: 420px !important;
  }
}

@media (max-width: 768px) {
  .hero-ui-frame .browser-viewport {
    position: relative !important;
    grid-template-columns: 1fr !important;
    height: auto !important;
  }
  .hero-ui-frame .mock-gp-sidebar {
    display: flex !important;
    height: auto !important;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  }
  [data-theme="light"] .hero-ui-frame .mock-gp-sidebar {
    border-top-color: rgba(9, 9, 11, 0.06) !important;
  }
  .hero-ui-frame .svg-connector-overlay {
    display: none !important;
  }
  .hero-ui-frame .mock-shopify-page {
    height: 300px !important;
    border-left: none !important;
    border-right: none !important;
  }
  .hero-ui-frame .shopify-product-preview {
    padding: 20px 16px !important;
  }
  .hero-ui-frame .sidebar-content {
    padding: 16px !important;
  }
  .hero-ui-frame .sidebar-header {
    padding: 12px 16px !important;
  }
}

/* Left panel: stretch product card full-width, not centred */
.hero-ui-frame .mock-shopify-page {
  padding: 0 !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  flex-direction: column !important;
  background: rgba(0, 0, 0, 0.14) !important;
  transition: opacity 0.35s ease !important;
}

.hero-ui-frame .mock-gp-sidebar {
  transition: opacity 0.35s ease !important;
}

/* Product card fills the full left panel width */
.hero-ui-frame .shopify-product-preview {
  width: auto !important;
  margin: 0 !important;
  max-width: none !important;
  border-radius: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 20px 24px 20px !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* Image stretches to fill available space */
.hero-ui-frame .product-image-box {
  flex: 1 !important;
  height: auto !important;
  margin-bottom: 0 !important;
  border-radius: 12px !important;
}

/* Product image fills box */
.hero-ui-frame .mockup-product-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  display: block !important;
}

/* Right panel: match same dark depth */
@media (min-width: 769px) {
  .hero-ui-frame .mock-gp-sidebar {
    border-left: 1px solid rgba(255, 255, 255, 0.06) !important;
  }
}


.dot-red   { width: 11px; height: 11px; border-radius: 50%; background: #ff5f56; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.12); }
.dot-yellow{ width: 11px; height: 11px; border-radius: 50%; background: #ffbd2e; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.12); }
.dot-green { width: 11px; height: 11px; border-radius: 50%; background: #27c93f; box-shadow: 0 0 0 0.5px rgba(0,0,0,0.12); }

.chrome-address-bar {
  flex: 1;
  max-width: 400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  height: 26px;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="light"] .chrome-address-bar {
  background: rgba(0, 0, 0, 0.035);
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--faint);
}

.gp-extension-badge {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 800;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.4);
}

.hover-action-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 0.5625rem;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5);
  animation: hoverBadgePulse 2.5s ease-in-out infinite;
}

@keyframes hoverBadgePulse {
  0%, 100% { transform: translateX(-50%) translateY(0); box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5); }
  50%       { transform: translateX(-50%) translateY(-2px); box-shadow: 0 8px 20px rgba(59, 130, 246, 0.7); }
}

/* ── SIDEBAR PANEL — PREMIUM v3 ── */

.mock-gp-sidebar {
  border-left: 1px solid rgba(255, 255, 255, 0.055) !important;
  background: rgba(10, 10, 18, 0.96) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Ambient glow inside sidebar */
.mock-gp-sidebar::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Bottom green margin glow */
.mock-gp-sidebar::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

[data-theme="light"] .mock-gp-sidebar {
  background: rgba(252, 252, 254, 0.98) !important;
  border-left-color: rgba(0, 0, 0, 0.05) !important;
  backdrop-filter: blur(12px) !important;
}

/* ── Header ── */

.sidebar-header {
  padding: 14px 18px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, transparent 100%) !important;
}

[data-theme="light"] .sidebar-header {
  border-bottom-color: rgba(9, 9, 11, 0.04) !important;
  background: linear-gradient(180deg, rgba(9, 9, 11, 0.01) 0%, transparent 100%) !important;
}

.sidebar-header-left {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.sidebar-logo-img {
  width: 20px !important;
  height: 20px !important;
  object-fit: contain !important;
  border-radius: 4px !important;
  flex-shrink: 0 !important;
}

.sidebar-logo {
  color: #ffffff !important;
  -webkit-text-fill-color: unset !important;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  letter-spacing: -0.015em !important;
}

[data-theme="light"] .sidebar-logo {
  color: #09090b !important;
}

/* Online status dot */
.sidebar-status-dot {
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: #10b981 !important;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25) !important;
  animation: statusPulse 2s ease-in-out infinite !important;
  flex-shrink: 0 !important;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.25) !important; }
  50% { box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08) !important; }
}

.sidebar-version {
  font-family: var(--font-mono), monospace !important;
  font-size: 9px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 1px 6px !important;
  border-radius: 4px !important;
  letter-spacing: 0.02em !important;
}

[data-theme="light"] .sidebar-version {
  color: rgba(9, 9, 11, 0.4) !important;
  background: rgba(9, 9, 11, 0.04) !important;
  border-color: rgba(9, 9, 11, 0.06) !important;
}

/* ── Content ── */

.sidebar-content {
  padding: 20px 18px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  position: relative !important;
  z-index: 1 !important;
}

.sidebar-section {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

/* Section label row */
.section-title-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 4px !important;
}

.section-label {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-family: var(--font-mono), monospace !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.35) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

[data-theme="light"] .section-label {
  color: rgba(9, 9, 11, 0.38) !important;
}

.section-label-icon {
  font-size: 0.6rem;
  opacity: 0.6;
}

/* Match % badge */
.match-percentage {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  background: rgba(16, 185, 129, 0.07) !important;
  border: 1px solid rgba(16, 185, 129, 0.14) !important;
  border-radius: 100px !important;
  padding: 2px 7px !important;
  font-size: 0.57rem !important;
  font-weight: 600 !important;
  color: rgba(16, 185, 129, 0.88) !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
  letter-spacing: 0.01em !important;
}

[data-theme="light"] .match-percentage {
  background: rgba(5, 150, 105, 0.05) !important;
  border-color: rgba(5, 150, 105, 0.12) !important;
  color: rgba(5, 150, 105, 0.85) !important;
}

.match-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.8);
  flex-shrink: 0;
}

/* Confidence bar */
.match-confidence-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

[data-theme="light"] .match-confidence-bar {
  background: rgba(9, 9, 11, 0.05);
}

.match-confidence-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  border-radius: 99px;
  position: relative;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

.match-confidence-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 20%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4));
  animation: confBarShimmer 2s ease-in-out infinite;
}

@keyframes confBarShimmer {
  0% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateX(100%); }
}

/* ── Supplier card ── */
.suppliers-list {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 8px !important;
  margin-top: 10px !important;
  width: 100% !important;
}

.supplier-mini-card {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-top-color: rgba(255, 255, 255, 0.07) !important;
  border-radius: 8px !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
  position: relative !important;
}

.supplier-mini-card:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-1px) !important;
}

.card-index-tag {
  position: absolute !important;
  top: 5px !important;
  left: 6px !important;
  font-family: var(--font-mono, monospace) !important;
  font-size: 7px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.14) !important;
  letter-spacing: 0.05em !important;
  pointer-events: none !important;
  transition: color 0.3s ease !important;
}

.supplier-mini-card.active-matched {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 16px rgba(0, 0, 0, 0.25) !important;
}

.supplier-mini-card.active-matched .card-index-tag {
  color: rgba(255, 255, 255, 0.36) !important;
}

[data-theme="light"] .supplier-mini-card {
  background: #f8f9fc !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
  border-top-color: rgba(255, 255, 255, 0.8) !important;
}

[data-theme="light"] .supplier-mini-card.active-matched {
  background: #ffffff !important;
  border-color: rgba(9, 9, 11, 0.12) !important;
  box-shadow: 0 1px 2px rgba(9, 9, 11, 0.02), 0 4px 12px rgba(9, 9, 11, 0.04) !important;
}

[data-theme="light"] .card-index-tag {
  color: rgba(9, 9, 11, 0.15) !important;
}

[data-theme="light"] .supplier-mini-card.active-matched .card-index-tag {
  color: rgba(9, 9, 11, 0.35) !important;
}

.supplier-thumb-wrap {
  position: relative;
  width: 100% !important;
  height: 100% !important;
  border-radius: 0 !important;
  overflow: hidden;
  border: none !important;
  flex-shrink: 0;
  background: transparent !important;
}

.supplier-rank {
  font-size: 0.6rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.35) !important;
  background: transparent !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
}



.supplier-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.supplier-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-grow: 1;
  min-width: 0;
}

.sup-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.sup-name {
  font-size: 0.625rem !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

[data-theme="light"] .sup-name {
  color: rgba(9, 9, 11, 0.85) !important;
}

.sup-verified {
  color: rgba(16, 185, 129, 0.8) !important;
  font-size: 0.55rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  font-weight: bold !important;
  margin-left: 2px !important;
}

.sup-price-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.sup-price-cny {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

[data-theme="light"] .sup-price-cny {
  color: rgba(9, 9, 11, 0.85) !important;
}

.sup-price-usd {
  font-size: 0.58rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

[data-theme="light"] .sup-price-usd {
  color: rgba(9, 9, 11, 0.45) !important;
}

.sup-moq {
  font-size: 0.52rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 4px !important;
  padding: 1px 4px !important;
  letter-spacing: 0.02em !important;
}

.sup-action-btn {
  width: 24px !important;
  height: 24px !important;
  border-radius: 6px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  color: rgba(255, 255, 255, 0.45) !important;
  transition: all 0.2s ease !important;
  flex-shrink: 0 !important;
}

.sup-action-btn:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ── Divider ── */

.sidebar-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  margin: 0 -16px;
}

[data-theme="light"] .sidebar-divider {
  background: linear-gradient(90deg, transparent, rgba(9, 9, 11, 0.06), transparent);
}

/* ── Margin Intelligence — BIG NUMBER ── */

.margin-hero-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 8px;
}

.margin-hero-value {
  font-family: var(--font-display) !important;
  font-size: 1.75rem !important;
  font-weight: 500 !important;
  letter-spacing: -0.03em !important;
  line-height: 1 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-variant-numeric: tabular-nums;
}

[data-theme="light"] .margin-hero-value {
  color: rgba(9, 9, 11, 0.9) !important;
}

.margin-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.12);
  border-radius: 4px;
  font-size: 0.55rem;
  font-weight: 500;
  color: rgba(16, 185, 129, 0.85);
  letter-spacing: 0.01em;
}

[data-theme="light"] .margin-hero-badge {
  background: rgba(5, 150, 105, 0.04);
  border-color: rgba(5, 150, 105, 0.1);
  color: rgba(5, 150, 105, 0.8);
}

/* Cost flow row */
.margin-sub-row {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 8px 10px;
}

[data-theme="light"] .margin-sub-row {
  background: rgba(9, 9, 11, 0.02);
  border-color: rgba(9, 9, 11, 0.04);
}

.margin-sub-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  text-align: center;
}

.margin-sub-label {
  font-size: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
}

[data-theme="light"] .margin-sub-label {
  color: rgba(9, 9, 11, 0.35);
}

.margin-sub-val {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

[data-theme="light"] .margin-sub-val {
  color: rgba(9, 9, 11, 0.65);
}

.margin-sub-item.profit .margin-sub-val {
  color: #4ade80;
  font-weight: 800;
}

[data-theme="light"] .margin-sub-item.profit .margin-sub-val {
  color: #16a34a;
}

.margin-sub-arrow {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

[data-theme="light"] .margin-sub-arrow {
  color: rgba(9, 9, 11, 0.2);
}

/* Legacy matrix items (keep for other uses) */
.matrix-item.highlight .matrix-value {
  background: linear-gradient(90deg, var(--green), #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}


/* ════════════════════════════════════════
   5. BENTO GRID — OPAQUE PREMIUM CARDS
   ════════════════════════════════════════ */

.bento-card {
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  position: relative;
}

[data-theme="dark"] .bento-card {
  background: #0d0d14 !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 4px 16px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .bento-card:hover {
  border-color: rgba(59, 130, 246, 0.25) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(59, 130, 246, 0.08);
  transform: translateY(-3px);
}

[data-theme="light"] .bento-card {
  background: #ffffff !important;
  border: 1px solid rgba(24, 24, 27, 0.07) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
}

[data-theme="light"] .bento-card:hover {
  border-color: rgba(59, 130, 246, 0.20) !important;
  box-shadow:
    0 12px 36px rgba(59, 130, 246, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04);
  transform: translateY(-3px);
}

.bento-card-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: var(--r-full);
  padding: 3px 10px;
  display: inline-block;
  margin-bottom: 10px;
}

.bento-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.bento-card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ════════════════════════════════════════
   6. COMPARISON SECTION
   ════════════════════════════════════════ */

.traditional-sourcing {
  opacity: 0.72;
  filter: saturate(0.85);
}

.traditional-sourcing:hover {
  opacity: 0.88;
  filter: saturate(1);
}

.gp-list li {
  color: var(--text);
  font-weight: 500;
}

.cost-chart-container {
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  padding: 32px 36px;
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .cost-chart-container {
  background: rgba(12, 12, 20, 0.9);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.chart-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.chart-marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15), 0 0 12px rgba(59, 130, 246, 0.3);
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: crosshair;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chart-marker:hover {
  transform: translate(-50%, -50%) scale(1.4);
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.2), 0 0 20px rgba(59, 130, 246, 0.4);
}

/* ════════════════════════════════════════
   7. CALCULATOR — PREMIUM
   ════════════════════════════════════════ */

[data-theme="dark"] .savings-calculator-card {
  background: rgba(10, 10, 18, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

[data-theme="light"] .savings-calculator-card {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(24, 24, 27, 0.07) !important;
  box-shadow:
    0 20px 60px rgba(59, 130, 246, 0.06),
    0 4px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.calculator-title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

[data-theme="dark"] .savings-stat-card {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.05);
}

.savings-stat-card.highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(6, 182, 212, 0.04) 100%);
  border-color: rgba(59, 130, 246, 0.18);
}

[data-theme="dark"] .savings-stat-card.highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.10) 0%, rgba(6, 182, 212, 0.06) 100%);
  border-color: rgba(59, 130, 246, 0.25);
}

.savings-stat-number {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  display: block;
  font-family: var(--font-display);
  line-height: 1;
}

.savings-stat-card.highlight .savings-stat-number {
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════
   8. RADIAL GAUGES
   ════════════════════════════════════════ */

.gauge-item {
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s ease;
}

[data-theme="dark"] .gauge-item {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.gauge-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent-border);
}

[data-theme="dark"] .gauge-bg-circle {
  stroke: rgba(255, 255, 255, 0.05);
}

.gauge-fill-circle {
  stroke-width: 9px;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.gauge-fill-circle.secondary {
  filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.5));
}

.gauge-fill-circle.accent {
  filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

.gauge-value {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.gauge-item h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  letter-spacing: -0.01em;
}

/* ════════════════════════════════════════
   9. TESTIMONIALS
   ════════════════════════════════════════ */

[data-theme="dark"] .testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.22);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(59, 130, 246, 0.08);
}

[data-theme="dark"] .testimonial-card:hover {
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

.testimonial-card .quote-text {
  font-style: italic;
}

.testimonials-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent) !important;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--r-full);
  padding: 5px 14px;
  margin-bottom: 20px !important;
}

/* ════════════════════════════════════════
   10. HELP CENTER CARDS
   ════════════════════════════════════════ */

[data-theme="dark"] .help-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.06);
}

.help-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.30);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(59, 130, 246, 0.08);
}

[data-theme="dark"] .help-card:hover {
  border-color: rgba(59, 130, 246, 0.28);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(59, 130, 246, 0.10);
}

.help-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.help-search-box:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.10);
}

/* ════════════════════════════════════════
   11. FINAL CTA — ULTRA PREMIUM
   ════════════════════════════════════════ */

.cta-card {
  border-radius: 28px !important;
  padding: 72px 56px !important;
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .cta-card {
  background: rgba(8, 8, 14, 0.98) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

[data-theme="light"] .cta-card {
  background: linear-gradient(145deg, #fafeff 0%, #f0f6ff 100%) !important;
  border: 1px solid rgba(59, 130, 246, 0.10) !important;
  box-shadow:
    0 24px 80px rgba(59, 130, 246, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04) !important;
}

.cta-title {
  font-size: clamp(30px, 4.5vw, 54px) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.1 !important;
  margin-bottom: 20px !important;
}

.cta-sub {
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  max-width: 500px !important;
  margin-bottom: 32px !important;
}

.btn-cta-primary {
  padding: 15px 32px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%) !important;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.btn-cta-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.btn-cta-ghost {
  padding: 15px 28px !important;
  font-size: 0.9375rem !important;
}

/* ════════════════════════════════════════
   12. FOOTER
   ════════════════════════════════════════ */

[data-theme="dark"] #footer {
  background: rgba(6, 6, 10, 0.98);
}

.footer-brand-desc {
  font-size: 0.825rem;
  line-height: 1.65;
  color: var(--faint);
  max-width: 280px;
  margin-top: 12px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2);
  margin-bottom: 16px;
}

.footer-link {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--text);
}

/* ════════════════════════════════════════
   13. MOBILE REFINEMENTS
   ════════════════════════════════════════ */

@media (max-width: 768px) {
  .cta-card {
    padding: 48px 24px !important;
  }
  .cost-chart-container {
    padding: 24px 20px;
  }
}

@media (max-width: 600px) {
  .cta-title {
    font-size: clamp(26px, 8vw, 40px) !important;
  }
}

/* ════════════════════════════════════════
   14. CRITICAL OVERRIDES FOR SPECIFICITY
   (Fixing !important conflicts from components.css)
   ════════════════════════════════════════ */

/* CTA Primary button — ultra-premium gradient override */
.btn-cta-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%) !important;
  color: #ffffff !important;
  padding: 14px 32px !important;
  font-size: 0.9375rem !important;
  font-weight: 700 !important;
  border-radius: var(--r-full) !important;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, opacity 0.2s ease !important;
  letter-spacing: -0.01em;
}

.btn-cta-primary:hover {
  opacity: 1 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 36px rgba(59, 130, 246, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}


/* Dark mode footer — remove transparent background to show our premium dark */
[data-theme="dark"] #footer {
  background: rgba(5, 5, 9, 0.98) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

[data-theme="light"] #footer {
  background: rgba(249, 250, 251, 0.95) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Comparison card  — GP Sourcing hero card deep glow border */
.comparison-card.gp-sourcing-glow {
  border-color: rgba(59, 130, 246, 0.28) !important;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.12),
    0 20px 60px rgba(59, 130, 246, 0.08),
    0 4px 16px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="dark"] .comparison-card.gp-sourcing-glow {
  border-color: rgba(59, 130, 246, 0.30) !important;
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.15),
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(59, 130, 246, 0.06) !important;
}

/* Bento card — Enhanced glow for dark mode */
[data-theme="dark"] #features-bento {
  background: transparent;
}

/* Section — Remove default border-top override on features-bento that looks harsh */
#features-bento.section + .section {
  border-top: none;
}

/* Bento header section label */
.bento-header .label {
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--r-full);
  padding: 5px 14px;
  display: inline-flex !important;
}

/* Testimonials eyebrow — override the inline style color */
.testimonials-eyebrow {
  color: var(--accent) !important;
}

/* High-fidelity rating star in supplier nodes */
.node-rating {
  color: #fbbf24;
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.20);
  border-radius: 4px;
  padding: 1px 5px;
}

/* Bento visual content area — ensure z-index is proper over card glow */
.bento-card-visual {
  position: relative;
  z-index: 1;
}

/* Enhanced: source items column in bento card 4 */
.source-item-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .source-item-card {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.06);
}

.source-item-card:hover {
  border-color: var(--accent-border);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.06);
}

/* WhatsApp preview card — premium styling */
.whatsapp-preview-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.wa-header {
  background: #128c7e;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #fff;
}

.wa-bubble {
  background: #dcf8c6;
  border-radius: 0 8px 8px 8px;
}

[data-theme="dark"] .wa-bubble {
  background: #1f4b3e;
}

.wa-text-inquiry {
  font-size: 0.625rem;
  line-height: 1.6;
  color: #1a1a1a;
}

[data-theme="dark"] .wa-text-inquiry {
  color: rgba(255, 255, 255, 0.85);
}

/* CSV export tag */
.csv-export-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.625rem;
  font-weight: 600;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
  color: var(--green);
  border-radius: 6px;
  padding: 4px 10px;
}

/* ════════════════════════════════════════
   15. ENHANCED MESH BACKGROUND BLOBS
   (More vibrant than the current very subtle version)
   ════════════════════════════════════════ */

.mesh-blob {
  border-radius: 50%;
  filter: blur(80px);
  position: absolute;
  pointer-events: none;
}

[data-theme="dark"] .mesh-blob.blob-1 {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.10) 0%, transparent 70%);
}

[data-theme="dark"] .mesh-blob.blob-2 {
  background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
}

[data-theme="dark"] .mesh-blob.blob-3 {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
}

/* ════════════════════════════════════════
   16. HEADER — PREMIUM FROSTED GLASS
   ════════════════════════════════════════ */

#announcement-bar {
  position: relative;
  z-index: 102;
  height: 36px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 0 16px;
  box-sizing: border-box;
}

[data-theme="dark"] #announcement-bar {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.08) 100%), #09090b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] #announcement-bar {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.04) 0%, rgba(139, 92, 246, 0.04) 100%), #f4f4f5;
  border-bottom: 1px solid rgba(9, 9, 11, 0.05);
  color: rgba(9, 9, 11, 0.8);
}

.announce-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.8);
  animation: announce-pulse 2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes announce-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 12px rgba(59, 130, 246, 1); }
}

.announce-cta {
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  margin-left: 4px;
  border-bottom: 1px dashed rgba(59, 130, 246, 0.4);
  padding-bottom: 1px;
  transition: all 0.2s ease;
}

.announce-cta:hover {
  color: #60a5fa;
  border-bottom-style: solid;
  border-bottom-color: rgba(96, 165, 250, 0.8);
}

#site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  backdrop-filter: blur(24px) saturate(200%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
}

[data-theme="dark"] #site-header {
  background: rgba(9, 9, 11, 0.75) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02), 0 8px 32px rgba(0, 0, 0, 0.24) !important;
}

[data-theme="light"] #site-header {
  background: rgba(255, 255, 255, 0.78) !important;
  border-bottom: 1px solid rgba(9, 9, 11, 0.05) !important;
  box-shadow: 0 1px 0 rgba(9, 9, 11, 0.02), 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

/* Nav links — premium hover */
.nav-link {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover {
  color: var(--accent) !important;
  opacity: 1 !important;
}

/* Perfect horizontal centering for navigation on desktop */
@media (min-width: 769px) {
  .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-nav {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 5;
  }
}

/* Match heights of button and language toggle to 36px for perfect balance and vertical centering */
.btn-chrome {
  height: 36px !important;
  width: 154px !important;
  min-width: 154px !important;
  line-height: 34px !important;
  padding: 0 20px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  border-radius: var(--r-full) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .btn-chrome {
  background: #09090b !important;
  color: #ffffff !important;
  border: 1px solid #09090b !important;
  box-shadow: 0 4px 12px rgba(9, 9, 11, 0.15) !important;
}

[data-theme="light"] .btn-chrome:hover {
  background: #27272a !important;
  border-color: #27272a !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(9, 9, 11, 0.2) !important;
}

[data-theme="dark"] .btn-chrome {
  background: #ffffff !important;
  color: #09090b !important;
  border: 1px solid #ffffff !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .btn-chrome:hover {
  background: #e4e4e7 !important;
  border-color: #e4e4e7 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.15) !important;
}

.btn-chrome span {
  font-size: 13.5px !important;
  font-weight: 600 !important;
}

/* Language toggle height match and size locking */
.lang-toggle {
  height: 36px !important;
  width: 112px !important;
  padding: 2px !important;
  box-sizing: border-box !important;
}

[data-theme="light"] .lang-toggle {
  background: rgba(9, 9, 11, 0.05) !important;
  border: 1px solid rgba(9, 9, 11, 0.08) !important;
}

[data-theme="dark"] .lang-toggle {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.lang-option {
  width: 54px !important;
  padding: 0 !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 12px !important;
}

.lang-option span {
  font-size: 12px !important;
}

.lang-toggle-pill {
  top: 2px !important;
  bottom: 2px !important;
}

/* ════════════════════════════════════════
   18. CTA BUTTON HEIGHT SYNCHRONIZATION
   ════════════════════════════════════════ */

.btn-cta-primary,
.btn-cta-ghost {
  height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  border-radius: var(--r-full) !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-cta-primary {
  font-weight: 700 !important;
  padding: 0 32px !important;
}

.btn-cta-ghost {
  padding: 0 32px !important;
}

/* ════════════════════════════════════════
   19. FIREFOX RANGE INPUT COMPATIBILITY
   ════════════════════════════════════════ */

/* Calculator slider */
.calculator-slider::-moz-range-thumb {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
  cursor: pointer !important;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, border-color 0.2s !important;
}

.calculator-slider::-moz-range-thumb:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3), 0 0 0 4px rgba(59, 130, 246, 0.15) !important;
  border-color: var(--accent) !important;
}

.calculator-slider::-moz-range-track {
  height: 6px !important;
  background: transparent !important;
  border-radius: 99px !important;
}

/* Minimal slider */
.minimal-slider::-moz-range-thumb {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background: var(--accent) !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  cursor: pointer !important;
  transition: transform 0.1s !important;
}

.minimal-slider::-moz-range-thumb:hover {
  transform: scale(1.2) !important;
}

.minimal-slider::-moz-range-track {
  height: 4px !important;
  background: transparent !important;
  border-radius: 99px !important;
}

/* ════════════════════════════════════════
   20. HERO SECTION — PREMIUM SaaS OVERHAUL
   ════════════════════════════════════════ */

/* Hero Eyebrow Badge */
.hero-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 14px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  border-radius: var(--r-full) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  transition: all 0.3s ease !important;
}

[data-theme="light"] .hero-eyebrow {
  background: rgba(9, 9, 11, 0.04) !important;
  border: 1px solid rgba(9, 9, 11, 0.08) !important;
  color: #09090b !important;
}

[data-theme="dark"] .hero-eyebrow {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.hero-eyebrow-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #3b82f6 !important;
  box-shadow: 0 0 8px #3b82f6 !important;
  animation: premiumPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

@keyframes premiumPulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px #3b82f6; }
  50% { transform: scale(1.3); opacity: 0.5; box-shadow: 0 0 16px #3b82f6; }
}

/* Hero Title */
.hero-title {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.08 !important;
  max-width: 960px !important;
  margin-bottom: 20px !important;
}

/* Premium Text Gradient */
.text-gradient {
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  display: inline-block !important;
}

[data-theme="light"] .text-gradient {
  background-image: linear-gradient(135deg, #0284c7 0%, #4f46e5 50%, #9333ea 100%) !important;
}

[data-theme="dark"] .text-gradient {
  background-image: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%) !important;
}

/* Hero Subtitle */
.hero-sub {
  font-size: 1.0625rem !important;
  line-height: 1.75 !important;
  max-width: 640px !important;
  color: var(--text-2) !important;
  opacity: 0.82 !important;
  margin-bottom: 36px !important;
}

/* Hero Actions & Buttons */
.hero-actions {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}

.btn-chrome-hero {
  height: 50px !important;
  padding: 0 36px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  border-radius: var(--r-full) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid transparent !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .btn-chrome-hero {
  background: #09090b !important;
  color: #ffffff !important;
  box-shadow: 0 10px 30px rgba(9, 9, 11, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

[data-theme="light"] .btn-chrome-hero:hover {
  background: #27272a !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 15px 35px rgba(9, 9, 11, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

[data-theme="dark"] .btn-chrome-hero {
  background: #ffffff !important;
  color: #09090b !important;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

[data-theme="dark"] .btn-chrome-hero:hover {
  background: #e4e4e7 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
}

/* Hero Trust Line */
.hero-trust-line {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  gap: 16px !important;
  margin-bottom: 48px !important;
}

.trust-badge-item {
  display: inline-flex !important;
  align-items: center !important;
  color: var(--text-2) !important;
  opacity: 0.75 !important;
}

.trust-bullet {
  color: var(--accent) !important;
  opacity: 0.5 !important;
}

/* Live Sourcing Ticker (Frosted Glass) */
.sourcing-ticker-container {
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 14px 0 !important;
  margin: 24px 0 48px 0 !important;
}

[data-theme="light"] .sourcing-ticker-container {
  background: rgba(9, 9, 11, 0.01) !important;
  border-color: rgba(9, 9, 11, 0.06) !important;
}

[data-theme="dark"] .sourcing-ticker-container {
  background: rgba(255, 255, 255, 0.01) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
}

.ticker-item {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding: 5px 12px !important;
  font-size: 0.78rem !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .ticker-item {
  background: rgba(9, 9, 11, 0.02) !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

.ticker-badge {
  background: var(--accent-soft) !important;
  color: var(--accent) !important;
  border: 1px solid var(--accent-border) !important;
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
}

.ticker-saving {
  color: #10b981 !important;
  font-weight: 700 !important;
  background: rgba(16, 185, 129, 0.08) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
  padding: 1px 6px !important;
  border-radius: 4px !important;
}

/* Browser Mockup Ambient Glow */
[data-theme="dark"] .premium-browser-mockup {
  position: relative;
}

[data-theme="dark"] .premium-browser-mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  z-index: -1;
  background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* ════════════════════════════════════════
   21. BENTO GRID SECTION — PREMIUM SaaS OVERHAUL
   ════════════════════════════════════════ */

/* Section headers display font */
#features-bento .text-h2 {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
}

.bento-subtitle {
  line-height: 1.7 !important;
  color: var(--text-2) !important;
  opacity: 0.8 !important;
  font-size: 1rem !important;
}

/* General Bento Card Enhancements */
.bento-card {
  border-radius: 24px !important;
  padding: 40px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .bento-card {
  background: #ffffff !important;
  border: 1px solid rgba(9, 9, 11, 0.06) !important;
  box-shadow: 0 4px 20px rgba(9, 9, 11, 0.02) !important;
}

[data-theme="light"] .bento-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(59, 130, 246, 0.20) !important;
  box-shadow: 0 16px 40px rgba(9, 9, 11, 0.06) !important;
}

[data-theme="dark"] .bento-card {
  background: rgba(8, 8, 14, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
}

[data-theme="dark"] .bento-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(59, 130, 246, 0.25) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
}

/* Card 1: Scanner Box */
.vision-scan-box {
  border-radius: 20px !important;
  border: 1px solid rgba(59, 130, 246, 0.15) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), inset 0 0 20px rgba(59, 130, 246, 0.08) !important;
}

[data-theme="light"] .vision-scan-box {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
  box-shadow: 0 12px 32px rgba(9, 9, 11, 0.04), inset 0 0 20px rgba(59, 130, 246, 0.04) !important;
}

.laser-scanner-line {
  background: linear-gradient(90deg, transparent, var(--cyan), transparent) !important;
  box-shadow: 0 0 16px var(--cyan) !important;
  height: 2px !important;
}

/* Floating Supplier Node Cards */
.node-card {
  border-radius: 12px !important;
  padding: 8px 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .node-card {
  background: #ffffff !important;
  border-color: rgba(9, 9, 11, 0.06) !important;
  box-shadow: 0 10px 25px rgba(9, 9, 11, 0.05) !important;
}

[data-theme="dark"] .node-card {
  background: rgba(13, 13, 22, 0.95) !important;
}

.node-card:hover {
  transform: translateY(-2px) scale(1.02) !important;
}

.badge-source {
  background: rgba(255, 107, 0, 0.1) !important;
  color: #ff6b00 !important;
  border: 1px solid rgba(255, 107, 0, 0.2) !important;
  font-weight: 700 !important;
  padding: 1px 5px !important;
  border-radius: 4px !important;
  font-size: 0.6rem !important;
}

.price-match {
  font-weight: 700 !important;
  font-family: var(--font-display) !important;
}

.usd-price {
  color: var(--muted) !important;
  font-weight: 500 !important;
}

/* Card 2: DDP Shipping Route Node */
.route-node {
  background: rgba(59, 130, 246, 0.08) !important;
  border: 1.5px solid var(--accent) !important;
  color: var(--text) !important;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15) !important;
}

[data-theme="light"] .route-node {
  background: #ffffff !important;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.08) !important;
}

.point-dest-glow {
  border-color: var(--accent-2) !important;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15) !important;
}

/* Dropdown styling */
.minimal-select-wrap select {
  background: var(--surface-2) !important;
  border: 1px solid var(--border-strong) !important;
  border-radius: 8px !important;
  padding: 6px 12px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  outline: none !important;
  transition: all 0.2s !important;
}

.minimal-select-wrap select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12) !important;
}

/* Carrier Price Items styling */
.price-row-item {
  border-radius: 10px !important;
  border: 1px solid var(--border-mid) !important;
  padding: 10px 14px !important;
  background: var(--surface) !important;
}

.carrier-icon-wrap {
  background: var(--surface-2) !important;
  border: 1px solid var(--border-strong) !important;
  color: var(--accent) !important;
}

/* Card 3: Margin donut visual */
.margin-chart-ring-container {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Cost & Profit Ring strokes */
#bento-ring-cost { stroke: #64748b !important; filter: drop-shadow(0 2px 4px rgba(100, 116, 139, 0.1)); }
#bento-ring-freight { stroke: #818cf8 !important; filter: drop-shadow(0 2px 4px rgba(129, 140, 248, 0.1)); }
#bento-ring-profit { stroke: #10b981 !important; filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.25)); }

.margin-data-sheet {
  border-top: 1px solid var(--border-mid) !important;
  padding-top: 14px !important;
}

.sheet-row {
  font-size: 0.825rem !important;
  font-weight: 500 !important;
  color: var(--text-2) !important;
}

.sheet-row.highlight strong {
  color: var(--text) !important;
  font-size: 0.95rem !important;
}

/* Card 4: WhatsApp Previews & columns */
.source-item-card {
  padding: 10px 12px !important;
  border-radius: 12px !important;
}

.wa-header {
  padding: 8px 12px !important;
}

.wa-bubble {
  padding: 10px 12px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.qty-badge {
  background: var(--accent-soft) !important;
  color: var(--accent) !important;
  font-size: 0.625rem !important;
  font-weight: 700 !important;
  padding: 1px 6px !important;
  border-radius: 4px !important;
  border: 1px solid var(--accent-border) !important;
}

.price-badge {
  font-weight: 700 !important;
  font-size: 0.65rem !important;
}

/* ════════════════════════════════════════
   22. SOURCING COMPARISON — PREMIUM SaaS OVERHAUL
   ════════════════════════════════════════ */

#product .text-h2 {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.15 !important;
}

.comparison-grid {
  gap: 40px !important;
  max-width: 1100px !important;
}

.comparison-card {
  border-radius: 24px !important;
  padding: 44px 40px !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Left Card: Traditional (muted contrast anchor) */
.traditional-sourcing {
  background: var(--surface-2) !important;
  border: 1px solid var(--border-mid) !important;
  opacity: 0.7 !important;
}

.traditional-sourcing:hover {
  opacity: 0.85 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
}

/* Right Card: GP Sourcing (glowing hero) */
.gp-sourcing-glow {
  background: var(--surface) !important;
  border: 1.5px solid rgba(59, 130, 246, 0.28) !important;
  transform: scale(1.02) !important;
}

.gp-sourcing-glow:hover {
  transform: scale(1.02) translateY(-4px) !important;
}

.comparison-indicator {
  width: 10px !important;
  height: 10px !important;
}

.red-dot { background: #ef4444 !important; box-shadow: 0 0 10px rgba(239, 68, 68, 0.4) !important; }
.green-dot { background: #10b981 !important; box-shadow: 0 0 10px rgba(16, 185, 129, 0.4) !important; }

.comparison-list li {
  font-size: 0.9375rem !important;
  font-weight: 500 !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
}

.comparison-icon {
  font-size: 0.9rem !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.comparison-icon:not(.check-icon) {
  background: rgba(239, 68, 68, 0.08) !important;
  color: #ef4444 !important;
}

.comparison-icon.check-icon {
  background: rgba(16, 185, 129, 0.08) !important;
  color: #10b981 !important;
}

/* Cost & Volume Curve Chart — premium, clean container */
.cost-chart-container {
  border-radius: 12px !important;
  padding: 32px 36px !important;
  margin-top: 48px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Chart section base layout (replaces removed inline styles) */
.chart-flex-layout {
  display: flex !important;
  gap: 48px !important;
  align-items: stretch !important;
  flex-wrap: wrap !important;
}

.chart-info-col {
  flex: 1.1 !important;
  min-width: 300px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding-right: 16px !important;
}

.chart-graph-col {
  flex: 1.5 !important;
  min-width: 320px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}

.chart-bar-legend {
  display: flex !important;
  gap: 16px !important;
  font-size: 0.75rem !important;
  align-items: center !important;
  justify-content: flex-end !important;
  margin-bottom: 16px !important;
  padding-top: 4px !important;
}

[data-theme="dark"] .cost-chart-container {
  background: rgba(8, 8, 14, 0.5) !important;
  border-color: rgba(255, 255, 255, 0.04) !important;
}

[data-theme="light"] .cost-chart-container {
  background: rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
}

.line-chart-wrapper {
  margin-top: 28px !important;
  border-bottom: none !important;
}

.chart-title {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  font-size: 1.1rem !important;
}

.chart-desc {
  color: var(--muted) !important;
  opacity: 1 !important;
  font-size: 0.77rem !important;
}

.chart-marker {
  width: 10px !important;
  height: 10px !important;
}

/* SVG Chart Labels & Grid Polish */
.line-chart-svg text {
  font-family: var(--font-sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif) !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
}

.line-chart-svg text.chart-x-label {
  font-size: 11px !important;
  font-weight: 600 !important;
}

[data-theme="dark"] .line-chart-svg text.chart-x-label {
  fill: rgba(255, 255, 255, 0.65) !important;
}

[data-theme="light"] .line-chart-svg text.chart-x-label {
  fill: rgba(9, 9, 11, 0.7) !important;
}

[data-theme="dark"] .line-chart-svg text:not(.chart-x-label) {
  fill: rgba(255, 255, 255, 0.3) !important;
}

[data-theme="light"] .line-chart-svg text:not(.chart-x-label) {
  fill: rgba(9, 9, 11, 0.35) !important;
}

/* Tooltip Premium Overhaul */
.chart-tooltip {
  width: 260px !important; /* Expanded to prevent cramped text and wrapping */
  padding: 14px 18px !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="dark"] .chart-tooltip {
  background: rgba(15, 15, 27, 0.93) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.65) !important;
}

[data-theme="light"] .chart-tooltip {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(9, 9, 11, 0.08) !important;
  box-shadow: 0 16px 36px rgba(9, 9, 11, 0.08) !important;
}

.chart-tooltip .tooltip-vol {
  font-family: var(--font-display, inherit) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding-bottom: 8px !important;
  margin-bottom: 10px !important;
  color: var(--text) !important;
}

[data-theme="light"] .chart-tooltip .tooltip-vol {
  border-bottom: 1px solid rgba(9, 9, 11, 0.06) !important;
}

.chart-tooltip .tooltip-row {
  font-size: 0.78rem !important;
  margin-bottom: 6px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  line-height: 1.5 !important;
}

.chart-tooltip .tooltip-row span:first-child {
  color: var(--muted) !important;
}

.chart-tooltip .tooltip-row .old-price {
  color: rgba(255, 255, 255, 0.4) !important;
  text-decoration: line-through !important;
  font-weight: 500 !important;
}

[data-theme="light"] .chart-tooltip .tooltip-row .old-price {
  color: rgba(9, 9, 11, 0.4) !important;
  text-decoration: line-through !important;
}

.chart-tooltip .tooltip-row .new-price {
  color: #00f2fe !important; /* Highlights GP cost with neon cyan */
  font-weight: 700 !important;
  font-size: 0.82rem !important;
}

.chart-tooltip .tooltip-row.saving-row {
  margin-top: 10px !important;
  padding-top: 10px !important;
  border-top: 1px dashed rgba(255, 255, 255, 0.08) !important;
}

[data-theme="light"] .chart-tooltip .tooltip-row.saving-row {
  border-top: 1px dashed rgba(9, 9, 11, 0.08) !important;
}

.chart-tooltip .tooltip-row.saving-row span:first-child {
  color: var(--text) !important;
  font-weight: 600 !important;
}

.chart-tooltip .savings-badge {
  background: rgba(0, 242, 254, 0.1) !important;
  color: #00f2fe !important;
  border: 1px solid rgba(0, 242, 254, 0.2) !important;
  padding: 2px 8px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 0.75rem !important;
  box-shadow: 0 0 8px rgba(0, 242, 254, 0.1) !important;
}

/* Chart Legend Styling */
[data-theme="light"] .chart-bar-legend .legend-dot-old {
  background: rgba(9, 9, 11, 0.15) !important;
}
@media (max-width: 600px) {
  .chart-header-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
}

/* ════════════════════════════════════════
   23. SAVINGS CALCULATOR — PREMIUM SaaS OVERHAUL
   ════════════════════════════════════════ */

#sourcing-calculator .text-h2 {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

.calculator-title {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.2 !important;
}

.savings-calculator-card {
  border-radius: 28px !important;
  padding: 48px !important;
  border: 1px solid var(--border-mid) !important;
}

[data-theme="dark"] .savings-calculator-card {
  background: rgba(8, 8, 14, 0.85) !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Slider groups */
.slider-group {
  border-radius: 20px !important;
  padding: 24px 28px !important;
}

.slider-value-badge {
  background: var(--accent-soft) !important;
  color: var(--accent) !important;
  border: 1px solid var(--accent-border) !important;
  font-weight: 700 !important;
  padding: 4px 12px !important;
  border-radius: var(--r-full) !important;
}

/* Stat Result Cards */
.savings-stat-card {
  border-radius: 20px !important;
  padding: 24px !important;
}

.savings-stat-number {
  font-size: 2rem !important;
  font-weight: 900 !important;
  margin-top: 8px !important;
  font-family: var(--font-mono, monospace) !important;
  letter-spacing: -0.01em !important;
}

/* Monthly savings stat highlight */
.savings-stat-card.highlight {
  border: 1.5px solid rgba(59, 130, 246, 0.28) !important;
}

[data-theme="dark"] .savings-stat-card.highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12) 0%, rgba(6, 182, 212, 0.08) 100%) !important;
}

[data-theme="light"] .savings-stat-card.highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(6, 182, 212, 0.04) 100%) !important;
}

/* Radial Gauges */
.radial-gauges-grid {
  gap: 32px !important;
  margin-top: 48px !important;
}

.gauge-item {
  border-radius: 24px !important;
  padding: 36px 28px !important;
}

.gauge-item h4 {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  font-size: 0.95rem !important;
}

.gauge-item p {
  color: var(--text-2) !important;
  opacity: 0.8 !important;
  font-size: 0.825rem !important;
  line-height: 1.6 !important;
}

/* ════════════════════════════════════════
   24. TESTIMONIALS — PREMIUM SaaS OVERHAUL
   ════════════════════════════════════════ */

#testimonials .text-h2 {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

.testimonials-marquee-wrap {
  mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent) !important;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 20%, #000 80%, transparent) !important;
}

.testimonials-marquee-track {
  gap: 28px !important;
}

.testimonial-card {
  border-radius: 20px !important;
  padding: 28px !important;
  height: 180px !important;
}

[data-theme="dark"] .testimonial-card {
  background: rgba(8, 8, 14, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

[data-theme="light"] .testimonial-card {
  background: #ffffff !important;
  border: 1px solid rgba(9, 9, 11, 0.06) !important;
  box-shadow: 0 4px 15px rgba(9, 9, 11, 0.01) !important;
}

.testimonial-card:hover {
  transform: translateY(-4px) !important;
}

.quote-text {
  font-size: 0.875rem !important;
  line-height: 1.65 !important;
  color: var(--text-2) !important;
}

.author-name {
  font-weight: 700 !important;
  font-size: 0.875rem !important;
}

/* ════════════════════════════════════════
   25. HELP CENTER & ACCORDIONS — OVERHAUL
   ════════════════════════════════════════ */

.help-title {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
}

.help-search-box {
  border: 1.5px solid var(--border-mid) !important;
  background: var(--surface) !important;
}

.help-search-box:focus-within {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12) !important;
}

.help-grid {
  gap: 24px !important;
  max-width: 1000px !important;
  margin: 48px auto 0 !important;
}

.help-card {
  border-radius: 18px !important;
  padding: 28px 24px !important;
}

[data-theme="dark"] .help-card {
  background: rgba(8, 8, 14, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
}

[data-theme="light"] .help-card {
  background: #ffffff !important;
  border-color: rgba(9, 9, 11, 0.06) !important;
  box-shadow: 0 4px 15px rgba(9, 9, 11, 0.01) !important;
}

.help-card:hover {
  transform: translateY(-4px) !important;
}

/* FAQ list and expanded sections */
.faq-list {
  max-width: 760px !important;
}

.faq-item {
  border-bottom: 1px solid var(--border-mid) !important;
}

.faq-q {
  padding: 22px 0 !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
}

.faq-icon {
  width: 22px !important;
  height: 22px !important;
}

.faq-body-inner {
  font-size: 0.875rem !important;
  line-height: 1.7 !important;
  color: var(--text-2) !important;
  padding-bottom: 24px !important;
}

/* ════════════════════════════════════════
   26. FINAL CTA & FOOTER — OVERHAUL
   ════════════════════════════════════════ */

.cta-card {
  border-radius: 32px !important;
  padding: 80px 48px !important;
}

.cta-title {
  font-family: var(--font-display) !important;
  font-weight: 900 !important;
  letter-spacing: -0.03em !important;
}

.cta-sub {
  color: var(--text-2) !important;
  opacity: 0.85 !important;
}

/* Footer modern layout */
#footer {
  padding: 72px 0 36px !important;
}

.footer-inner {
  gap: 64px !important;
  border-bottom: 1px solid var(--border-mid) !important;
  padding-bottom: 48px !important;
  margin-bottom: 32px !important;
}

@media (min-width: 769px) {
  .footer-inner {
    display: grid !important;
    grid-template-columns: 2.2fr 1fr 1.2fr 1fr !important;
  }
}

/* Hide duplicate legal links in the bottom right corner */
.footer-legal {
  display: none !important;
}

.footer-brand-desc {
  max-width: 320px !important;
  font-size: 0.85rem !important;
  line-height: 1.65 !important;
}

.footer-col-title {
  font-family: var(--font-display) !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  font-size: 0.72rem !important;
}

.footer-link {
  font-size: 0.85rem !important;
  transition: all 0.2s ease !important;
}

.footer-link:hover {
  color: var(--accent) !important;
}

/* ════════════════════════════════════════
   27. GRAND & SPACIOUS SaaS OVERRIDES (大气版重塑)
   ════════════════════════════════════════ */

/* Global Section Padding — Increase breathing space significantly */
:root {
  --section-py: 128px !important;
}

/* Grand Typography scale */
.text-h2 {
  font-size: clamp(34px, 5vw, 52px) !important;
  line-height: 1.15 !important;
  margin-bottom: 24px !important;
}

.bento-subtitle,
.chart-desc,
.cta-sub {
  font-size: 1.0625rem !important;
  line-height: 1.75 !important;
  max-width: 660px !important;
  margin-top: 18px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Bento Card Grid spacing and padding scale */
.bento-grid {
  gap: 40px !important;
  margin-top: 64px !important;
}

.bento-card {
  padding: 52px 48px !important;
}

.bento-card-title {
  font-size: 1.45rem !important;
  margin-bottom: 12px !important;
}

.bento-card-desc {
  font-size: 0.9375rem !important;
  line-height: 1.65 !important;
}

/* Sourcing Comparison Card layout scale */
.comparison-grid {
  gap: 48px !important;
  margin-top: 64px !important;
}

.comparison-card {
  padding: 56px 48px !important;
}

.comparison-card-title {
  font-size: 1.45rem !important;
  margin-bottom: 12px !important;
}

.comparison-list li {
  font-size: 0.95rem !important;
  margin-bottom: 20px !important;
}

/* Pricing Curve Chart visual scale */
.cost-chart-container {
  padding: 56px 48px !important;
  margin-top: 64px !important;
}

/* Savings Calculator Section scale */
.savings-calculator-card {
  padding: 56px 48px !important;
}

.calculator-grid {
  gap: 52px !important;
  margin-top: 56px !important;
}

.slider-group {
  padding: 24px 28px !important;
}

.savings-stat-card {
  padding: 24px 28px !important;
}

.savings-stat-number {
  font-size: 2.25rem !important;
}

/* Help Center & Accordion visual scale */
.help-grid {
  gap: 28px !important;
  margin-top: 64px !important;
}

.help-card {
  padding: 32px 24px !important;
}

/* Final CTA Card visual scale */
.cta-card {
  padding: 96px 64px !important;
}

.cta-title {
  font-size: clamp(32px, 5.5vw, 60px) !important;
  line-height: 1.12 !important;
}

.btn-cta-primary,
.btn-cta-ghost {
  height: 52px !important;
  padding: 0 40px !important;
  font-size: 1rem !important;
}

/* ════════════════════════════════════════
   28. PREMIUM INTERFACE POLISH & DETAILS
   ════════════════════════════════════════ */

/* Custom Selection Highlight */
::selection {
  background: rgba(59, 130, 246, 0.16) !important;
  color: var(--accent) !important;
}

/* Webkit Scrollbar overrides */
::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}

::-webkit-scrollbar-track {
  background: transparent !important;
}

::-webkit-scrollbar-thumb {
  background: var(--border-mid) !important;
  border-radius: 99px !important;
}

[data-theme="dark"] ::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.08) !important;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-strong) !important;
}

/* Modern Gradient Section Dividers */
.section {
  border-top: none !important;
  position: relative !important;
}

.section::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 12% !important;
  right: 12% !important;
  height: 1px !important;
  z-index: 10 !important;
}

[data-theme="light"] .section::before {
  background: linear-gradient(90deg, transparent, rgba(9, 9, 11, 0.05) 50%, transparent) !important;
}

[data-theme="dark"] .section::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04) 50%, transparent) !important;
}

/* Hero section doesn't need top divider */
#hero::before {
  display: none !important;
}

/* ════════════════════════════════════════
   29. BRAND LOGO SIZE POLISH
   ════════════════════════════════════════ */

.logo-text-img {
  height: 38px !important;
}

/* ════════════════════════════════════════
   30. ULTRA-PREMIUM SaaS VISUAL REFINEMENT
   ════════════════════════════════════════ */

/* Disable background particle canvas and raycast slashes to remove clutter */
#hero-particles-container,
.raycast-hero-glow {
  display: none !important;
}

/* Calm dynamic background mesh opacity */
.superhuman-mesh-bg {
  opacity: 0.20 !important;
}

[data-theme="light"] .superhuman-mesh-bg {
  opacity: 0.06 !important;
}

/* Unified Hairline Borders & Soft Air Shadows */
[data-theme="dark"] .bento-card,
[data-theme="dark"] .comparison-card,
[data-theme="dark"] .savings-calculator-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .help-card,
[data-theme="dark"] .cost-chart-container {
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  box-shadow: 0 40px 100px -25px rgba(0, 0, 0, 0.65), 0 10px 30px -15px rgba(0, 0, 0, 0.4) !important;
}

[data-theme="light"] .bento-card,
[data-theme="light"] .comparison-card,
[data-theme="light"] .savings-calculator-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .help-card,
[data-theme="light"] .cost-chart-container {
  border: 1px solid rgba(9, 9, 11, 0.04) !important;
  box-shadow: 0 40px 100px -25px rgba(9, 9, 11, 0.04), 0 10px 30px -15px rgba(9, 9, 11, 0.02) !important;
}

/* Card 1: AI Vision matched nodes */
[data-theme="dark"] .node-card {
  background: rgba(10, 10, 18, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
}

.badge-source {
  background: var(--accent-soft) !important;
  color: var(--accent) !important;
  border: 1px solid var(--accent-border) !important;
}

/* Card 2: Custom Dropdowns inside DDP shipping */
.minimal-select-wrap {
  position: relative !important;
  display: inline-block !important;
  width: 100% !important;
}

.minimal-select-wrap::after {
  content: '' !important;
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 8px !important;
  height: 6px !important;
  background-color: var(--text-2) !important;
  clip-path: polygon(0 0, 100% 0, 50% 100%) !important;
  pointer-events: none !important;
  opacity: 0.6 !important;
}

.minimal-select-wrap select {
  width: 100% !important;
  padding: 8px 32px 8px 12px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border-radius: 8px !important;
  border: 1px solid var(--border-strong) !important;
  background: var(--surface-2) !important;
  color: var(--text) !important;
  font-size: 0.825rem !important;
  font-weight: 600 !important;
  outline: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

/* Card 3: Thin segmented SVG strokes for Margin donut */
#bento-ring-bg,
#bento-ring-cost,
#bento-ring-freight,
#bento-ring-profit {
  stroke-width: 2.2 !important;
}

/* Card 4: WhatsApp Chat bubble */
[data-theme="dark"] .wa-bubble {
  background: rgba(24, 34, 30, 0.6) !important;
  border: 1px solid rgba(16, 185, 129, 0.12) !important;
}

.wa-msg-meta {
  font-family: var(--font-mono) !important;
  font-size: 0.72rem !important;
  opacity: 0.7 !important;
}

/* Soften comparison dots */
.red-dot {
  background: #ef4444 !important;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.2) !important;
}

.green-dot {
  background: #10b981 !important;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.2) !important;
}

/* ════════════════════════════════════════
   31. PREMIUM GEIST TYPEFACE OVERRIDES (高级字体微调)
   ════════════════════════════════════════ */

:root {
  --font-sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  --font-display: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  --font-mono: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif !important;
}

html[lang^="zh"] {
  --font-sans: "Geist", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif !important;
  --font-display: "Geist", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif !important;
}

/* ════════════════════════════════════════
   32. HIGH-FIDELITY PRODUCT IMAGE STYLING
   ════════════════════════════════════════ */

.mockup-product-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  opacity: 0.9 !important;
  transition: opacity 0.3s ease !important;
}

[data-theme="light"] .mockup-product-img {
  opacity: 1 !important;
}

.product-image-box:hover .mockup-product-img {
  opacity: 0.95 !important;
}

.supplier-thumb-img {
  width: 36px !important;
  height: 36px !important;
  object-fit: cover !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  flex-shrink: 0 !important;
}

[data-theme="light"] .supplier-thumb-img {
  border-color: rgba(9, 9, 11, 0.06) !important;
}

.node-card-thumb {
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.node-thumb-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 6px !important;
  flex-shrink: 0 !important;
}

/* ════════════════════════════════════════
   33. PREMIUM NAVIGATION BAR & HEADER REFINEMENTS
   ════════════════════════════════════════ */

/* Clean Header Glassmorphism */
#site-header {
  background: rgba(8, 8, 10, 0.70) !important;
  backdrop-filter: blur(20px) saturate(190%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(190%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  box-shadow: none !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#site-header.scrolled {
  background: rgba(8, 8, 10, 0.85) !important;
  border-bottom-color: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5) !important;
}

/* Typographical & Minimalist Nav Links */
.nav-link {
  color: rgba(255, 255, 255, 0.55) !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  font-weight: 500 !important;
  padding: 6px 14px !important;
  font-size: 0.86rem !important;
  transition: color 0.25s ease, background 0.25s ease !important;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

[data-theme="light"] .nav-link {
  color: rgba(9, 9, 11, 0.6) !important;
}

[data-theme="light"] .nav-link:hover, [data-theme="light"] .nav-link.active {
  color: #09090b !important;
  background: rgba(0, 0, 0, 0.03) !important;
}

/* Lang Switcher Redesign */
.lang-toggle {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  height: 30px !important;
}

[data-theme="light"] .lang-toggle {
  background: rgba(0, 0, 0, 0.03) !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
}

.lang-toggle-pill {
  top: 1px !important;
  bottom: 1px !important;
  border-radius: var(--r-full) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="dark"] .lang-toggle-pill {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

[data-theme="light"] .lang-toggle-pill {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.03) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06) !important;
}

.lang-option {
  padding: 0 10px !important;
  font-size: 0.72rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
}

[data-theme="light"] .lang-option {
  color: rgba(9, 9, 11, 0.5) !important;
}

.lang-toggle[data-lang="en"] .lang-option[data-lang-opt="en"],
.lang-toggle[data-lang="zh"] .lang-option[data-lang-opt="zh"] {
  color: #ffffff !important;
  font-weight: 600 !important;
}

[data-theme="light"] .lang-toggle[data-lang="en"] .lang-option[data-lang-opt="en"],
[data-theme="light"] .lang-toggle[data-lang="zh"] .lang-option[data-lang-opt="zh"] {
  color: #09090b !important;
}

/* Premium Vercel-style Chrome Button */
.btn-chrome {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-top-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  height: 38px !important;
  padding: 0 18px !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-chrome span {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
}

.btn-chrome:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  border-top-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.25), 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-1px) !important;
}

[data-theme="light"] .btn-chrome {
  background: #09090b !important;
  border-color: #09090b !important;
  color: #ffffff !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05) !important;
}

[data-theme="light"] .btn-chrome:hover {
  background: #27272a !important;
  border-color: #27272a !important;
  box-shadow: 0 4px 12px rgba(9, 9, 11, 0.15) !important;
  transform: translateY(-1px) !important;
}

/* ════════════════════════════════════════
   34. HIGH-FIDELITY HERO MOCKUP & CTA BUTTON
   ════════════════════════════════════════ */

/* Hero Button Moving Shimmer Effect */
.btn-chrome-hero {
  position: relative !important;
  overflow: hidden !important;
}

.btn-chrome-hero::before {
  content: "" !important;
  position: absolute !important;
  top: -100% !important;
  left: -100% !important;
  width: 300% !important;
  height: 300% !important;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 55%
  ) !important;
  transform: rotate(45deg) !important;
  animation: btnShimmerLoop 4.5s cubic-bezier(0.25, 1, 0.5, 1) infinite !important;
}

@keyframes btnShimmerLoop {
  0% { transform: translate(-30%, -30%) rotate(45deg); }
  30%, 100% { transform: translate(75%, 75%) rotate(45deg); }
}

/* Browser Mockup Top Bar */
.chrome-nav-arrows {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: var(--muted) !important;
  opacity: 0.65 !important;
  margin-left: 4px !important;
}

.chrome-nav-arrow {
  cursor: pointer !important;
  opacity: 0.5 !important;
  transition: opacity 0.2s ease !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

.chrome-nav-arrow.disabled {
  opacity: 0.12 !important;
  cursor: not-allowed !important;
}

.chrome-nav-arrow:hover:not(.disabled) {
  opacity: 0.95 !important;
  color: var(--text) !important;
}

/* Address Bar Refinements */
.chrome-address-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 10px !important;
  background: rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
}

[data-theme="light"] .chrome-address-bar {
  background: rgba(0, 0, 0, 0.03) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.chrome-address-text {
  flex-grow: 1 !important;
  text-align: center !important;
  margin: 0 8px !important;
  opacity: 0.75 !important;
  font-size: 0.64rem !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.chrome-star-icon {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  opacity: 0.45 !important;
  cursor: pointer !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.chrome-star-icon:hover {
  opacity: 1 !important;
  stroke: #eab308 !important;
  fill: #eab308 !important;
  transform: scale(1.1) !important;
}

/* ════════════════════════════════════════
   35. INFINITE LOGO CLOUD PLATFORMS TICKER
   ════════════════════════════════════════ */

.logo-ticker-container {
  padding: 12px 0 !important;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent) !important;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent) !important;
}

.logo-ticker-track .ticker-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  opacity: 0.55 !important;
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding: 8px 18px !important;
  border-radius: 99px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  cursor: pointer !important;
  will-change: transform, opacity !important;
  backface-visibility: hidden !important;
}

.logo-ticker-container:hover .logo-ticker-track {
  animation-play-state: paused !important;
}

[data-theme="light"] .logo-ticker-track .ticker-item {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.04) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

.logo-ticker-track .ticker-item::before {
  content: "" !important;
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  opacity: 0.65 !important;
  filter: grayscale(1) !important;
  transition: all 0.3s ease !important;
}

.logo-ticker-track .ticker-item:hover {
  opacity: 1 !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
  transform: scale(1.02) !important;
}

[data-theme="light"] .logo-ticker-track .ticker-item:hover {
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05) !important;
}

.logo-ticker-track .ticker-item:hover::before {
  opacity: 1 !important;
  filter: grayscale(0) !important;
}

/* Brand Colored Icon Injectors */
.logo-ticker-track .ticker-item.shopify::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2L3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4zM3 6h18M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E") !important;
}

.logo-ticker-track .ticker-item.woocommerce::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239333ea' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E") !important;
}

.logo-ticker-track .ticker-item.amazon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") !important;
}

.logo-ticker-track .ticker-item.ebay::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82zM7 7h.01'/%3E%3C/svg%3E") !important;
}

.logo-ticker-track .ticker-item.aliexpress::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10zM2 12h20'/%3E%3C/svg%3E") !important;
}

.logo-ticker-track .ticker-item.shopee::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f97316' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='9' width='18' height='12' rx='2' ry='2'/%3E%3Cpath d='M9 22V12h6v10M12 2a3 3 0 0 0-3 3v4h6V5a3 3 0 0 0-3-3z'/%3E%3C/svg%3E") !important;
}

.logo-ticker-track .ticker-item.lazada::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ec4899' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E") !important;
}

.logo-ticker-track .ticker-item.tiktok::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2306b6d4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E") !important;
}

.logo-ticker-track .ticker-item.mercadolibre::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23eab308' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 16v1a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h11a2 2 0 0 1 2 2v1M18 8h4M20 6v4'/%3E%3C/svg%3E") !important;
}

/* ════════════════════════════════════════
   36. BENTO FEATURES & COMPARISON REDESIGN
   ════════════════════════════════════════ */

/* Bento Donut Ring SVG Glow */
.margin-donut-svg {
  filter: drop-shadow(0 2px 10px rgba(129, 140, 248, 0.22)) drop-shadow(0 2px 10px rgba(16, 185, 129, 0.28)) !important;
}

/* breakdown legend capsules */
.breakdown-donut-legend {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
}

.legend-item-v4 {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding: 4px 10px !important;
  border-radius: var(--r-full) !important;
  font-size: 0.7rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: var(--muted) !important;
  transition: all 0.25s ease !important;
}

[data-theme="light"] .legend-item-v4 {
  background: rgba(0, 0, 0, 0.01) !important;
  border-color: rgba(0, 0, 0, 0.04) !important;
}

.legend-item-v4:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--text) !important;
}

/* Data Sheet rows */
.margin-data-sheet {
  border-top: 1px solid rgba(255, 255, 255, 0.03) !important;
  padding-top: 12px !important;
}

.sheet-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.02) !important;
  padding: 8px 4px !important;
  transition: background 0.25s ease !important;
}

.sheet-row:hover {
  background: rgba(255, 255, 255, 0.01) !important;
}

.sheet-row.highlight {
  background: rgba(59, 130, 246, 0.03) !important;
  border: 1px solid rgba(59, 130, 246, 0.08) !important;
  border-radius: 6px !important;
  padding: 8px 10px !important;
}

.sheet-row.profit {
  background: rgba(16, 185, 129, 0.03) !important;
  border: 1px solid rgba(16, 185, 129, 0.08) !important;
  border-radius: 6px !important;
  padding: 8px 10px !important;
  margin-top: 4px !important;
}

/* Bento Card 4: Sourcing shortlist card items */
.source-item-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px !important;
  padding: 10px 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border-left: none !important;
}

.source-item-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22) !important;
  transform: translateY(-1px) !important;
}

[data-theme="light"] .source-item-card {
  background: #ffffff !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
}

[data-theme="light"] .source-item-card:hover {
  background: #fafafa !important;
  border-color: rgba(9, 9, 11, 0.1) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04) !important;
}

.item-img-placeholder {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.04) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 6px !important;
}

/* Laser pulses in bridge */
.moving-laser-dot {
  filter: drop-shadow(0 0 5px var(--accent)) drop-shadow(0 0 10px var(--accent)) !important;
}

/* High fidelity WhatsApp Mockup card */
.whatsapp-preview-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: none !important;
}

.wa-header {
  background: rgba(30, 41, 59, 0.45) !important;
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding: 10px 14px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.wa-header::before {
  content: none !important;
  display: none !important;
}

.wa-bubble {
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.01) !important;
  border-radius: 8px !important;
  color: var(--text-1) !important;
  padding: 12px 14px !important;
  position: relative !important;
  margin: 12px !important;
}

.wa-bubble::after {
  content: none !important;
  display: none !important;
}

[data-theme="light"] .whatsapp-preview-card {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
}

[data-theme="light"] .wa-header {
  background: rgba(241, 245, 249, 0.5) !important;
  color: #111b21 !important;
  border-bottom-color: rgba(9, 9, 11, 0.04) !important;
}

[data-theme="light"] .wa-bubble {
  background: rgba(9, 9, 11, 0.02) !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
  color: #111b21 !important;
}

[data-theme="light"] .wa-bubble::after {
  content: none !important;
  display: none !important;
}

/* Comparison list icons check and cross */
.comparison-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
}

.comparison-icon {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  flex-shrink: 0 !important;
}

.comparison-card.traditional-sourcing .comparison-icon {
  background: rgba(239, 68, 68, 0.08) !important;
  border: 1px solid rgba(239, 68, 68, 0.15) !important;
  color: #ef4444 !important;
}

.comparison-icon.check-icon {
  background: rgba(16, 185, 129, 0.08) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
  color: #10b981 !important;
}

/* Volume Curve — refined, lower-saturation line */
.line-chart-svg path.chart-line {
  filter: drop-shadow(0 2px 6px rgba(59, 130, 246, 0.15)) !important;
  stroke-width: 2 !important;
}

.line-chart-svg line.grid-line {
  stroke: rgba(255, 255, 255, 0.04) !important;
}

[data-theme="light"] .line-chart-svg line.grid-line {
  stroke: rgba(0, 0, 0, 0.05) !important;
}

/* ════════════════════════════════════════
   37. CALCULATOR & RADIAL GAUGES REFINEMENTS
   ════════════════════════════════════════ */

/* Slider Custom Styling */
.calculator-slider {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  height: 6px !important;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px !important;
  outline: none !important;
  border: none !important;
  margin: 16px 0 !important;
  transition: background 0.3s !important;
}

[data-theme="light"] .calculator-slider {
  background: rgba(9, 9, 11, 0.06);
}

.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2) !important;
  cursor: grab !important;
  transition: transform 0.2s, background 0.2s !important;
}

.calculator-slider::-webkit-slider-thumb:active {
  cursor: grabbing !important;
  transform: scale(1.15) !important;
}

/* Stat Cards Glass styling */
.savings-stat-card {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
  border-radius: 12px !important;
  padding: 20px 24px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .savings-stat-card {
  background: #ffffff !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02) !important;
}

.savings-stat-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

[data-theme="light"] .savings-stat-card:hover {
  background: #fafafa !important;
  border-color: rgba(9, 9, 11, 0.08) !important;
}

/* Highlighted Stat Card (Monthly Savings) */
.savings-stat-card.highlight {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.06) 0%, rgba(16, 185, 129, 0.02) 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.25) !important;
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.08), inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

[data-theme="light"] .savings-stat-card.highlight {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, rgba(255, 255, 255, 0.95) 100%) !important;
  border-color: rgba(16, 185, 129, 0.2) !important;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.04) !important;
}

.savings-stat-card.highlight:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%) !important;
  border-color: rgba(16, 185, 129, 0.35) !important;
  box-shadow: 0 16px 48px rgba(16, 185, 129, 0.12) !important;
}

/* Radial Gauge SVGs */
.gauge-fill-circle {
  filter: drop-shadow(0 0 5px var(--accent)) !important;
}

.gauge-fill-circle.secondary {
  filter: drop-shadow(0 0 5px var(--cyan)) !important;
}

.gauge-fill-circle.accent {
  filter: drop-shadow(0 0 5px var(--accent-2)) !important;
}

.gauge-value {
  font-family: var(--font-sans) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  color: var(--text) !important;
}

/* ════════════════════════════════════════
   38. FAQ HELP CENTER — PREMIUM GLASS CARDS
   ════════════════════════════════════════ */

/* Help search box */
.help-search-box {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.help-search-box:focus-within {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08), 0 8px 24px rgba(0, 0, 0, 0.2) !important;
}

[data-theme="light"] .help-search-box {
  background: #ffffff !important;
  border-color: rgba(9, 9, 11, 0.06) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

[data-theme="light"] .help-search-box:focus-within {
  border-color: rgba(59, 130, 246, 0.25) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04) !important;
}

/* Help category cards */
.help-card {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .help-card {
  background: #ffffff !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

.help-card:hover {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(59, 130, 246, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

[data-theme="light"] .help-card:hover {
  background: #fafafa !important;
  border-color: rgba(9, 9, 11, 0.08) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(59, 130, 246, 0.06) !important;
}

.help-card.active {
  background: rgba(59, 130, 246, 0.06) !important;
  border-color: rgba(59, 130, 246, 0.25) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 12px 32px rgba(59, 130, 246, 0.08) !important;
}

/* FAQ Accordion rows */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  transition: background 0.25s ease !important;
  border-radius: 4px !important;
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
}

[data-theme="light"] .faq-item {
  border-bottom-color: rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .faq-item:first-child {
  border-top-color: rgba(0, 0, 0, 0.05) !important;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.01) !important;
}

.faq-q {
  font-weight: 500 !important;
  letter-spacing: -0.015em !important;
  transition: color 0.2s ease !important;
}

.faq-q:hover {
  color: var(--text) !important;
}

.faq-icon {
  width: 22px !important;
  height: 22px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .faq-icon {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

.faq-item.open .faq-icon {
  background: rgba(59, 130, 246, 0.1) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.15) !important;
}

/* Articles header separator */
.help-articles-header {
  border-bottom-color: rgba(255, 255, 255, 0.04) !important;
}

[data-theme="light"] .help-articles-header {
  border-bottom-color: rgba(0, 0, 0, 0.05) !important;
}

/* ════════════════════════════════════════
   39. FINAL CTA BANNER — PREMIUM RADIAL GLOW
   ════════════════════════════════════════ */

.cta-card {
  background: rgba(8, 8, 10, 0.6) !important;
  border: 1px solid rgba(59, 130, 246, 0.15) !important;
  border-top-color: rgba(59, 130, 246, 0.25) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 40px 120px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

[data-theme="light"] .cta-card {
  background: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(59, 130, 246, 0.12) !important;
  border-top-color: rgba(59, 130, 246, 0.2) !important;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

/* CTA primary button */
.btn-cta-primary {
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%) !important;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-cta-primary::before {
  content: "" !important;
  position: absolute !important;
  top: -100% !important;
  left: -100% !important;
  width: 300% !important;
  height: 300% !important;
  background: linear-gradient(
    45deg,
    transparent 45%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 55%
  ) !important;
  animation: btnShimmerLoop 5s cubic-bezier(0.25, 1, 0.5, 1) infinite !important;
}

.btn-cta-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.45) !important;
}

/* Ghost secondary CTA button */
.btn-cta-ghost {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-top-color: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-cta-ghost:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

[data-theme="light"] .btn-cta-ghost {
  background: rgba(9, 9, 11, 0.03) !important;
  border-color: rgba(9, 9, 11, 0.08) !important;
  color: rgba(9, 9, 11, 0.65) !important;
}

[data-theme="light"] .btn-cta-ghost:hover {
  background: rgba(9, 9, 11, 0.06) !important;
  border-color: rgba(9, 9, 11, 0.14) !important;
  color: #09090b !important;
}

/* ════════════════════════════════════════
   40. FOOTER — REFINED MUTED GLASS
   ════════════════════════════════════════ */

#footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
  background: rgba(4, 4, 6, 0.6) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

[data-theme="light"] #footer {
  border-top-color: rgba(0, 0, 0, 0.05) !important;
  background: rgba(250, 250, 252, 0.8) !important;
}

.footer-col-title {
  font-size: 0.68rem !important;
  letter-spacing: 0.1em !important;
  color: rgba(255, 255, 255, 0.25) !important;
}

[data-theme="light"] .footer-col-title {
  color: rgba(9, 9, 11, 0.35) !important;
}

.footer-link {
  font-size: 0.8125rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  transition: color 0.2s ease !important;
}

.footer-link:hover {
  color: rgba(255, 255, 255, 0.9) !important;
}

[data-theme="light"] .footer-link {
  color: rgba(9, 9, 11, 0.5) !important;
}

[data-theme="light"] .footer-link:hover {
  color: #09090b !important;
}

.footer-brand-desc {
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 0.78rem !important;
  line-height: 1.7 !important;
}

[data-theme="light"] .footer-brand-desc {
  color: rgba(9, 9, 11, 0.45) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
}

[data-theme="light"] .footer-bottom {
  border-top-color: rgba(0, 0, 0, 0.05) !important;
}

.footer-copy {
  font-size: 0.72rem !important;
  color: rgba(255, 255, 255, 0.2) !important;
}

[data-theme="light"] .footer-copy {
  color: rgba(9, 9, 11, 0.3) !important;
}

.footer-legal a {
  font-size: 0.72rem !important;
  color: rgba(255, 255, 255, 0.2) !important;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6) !important;
}

[data-theme="light"] .footer-legal a {
  color: rgba(9, 9, 11, 0.3) !important;
}

[data-theme="light"] .footer-legal a:hover {
  color: rgba(9, 9, 11, 0.65) !important;
}

/* ════════════════════════════════════════
   41. TESTIMONIAL CARDS — FLOATING GLASS
   ════════════════════════════════════════ */

.testimonial-card {
  height: 190px !important;
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 18px !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .testimonial-card {
  background: #ffffff !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03), inset 0 1px 0 rgba(255,255,255,0.9) !important;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(59, 130, 246, 0.18) !important;
  transform: translateY(-6px) scale(1.01) !important;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

[data-theme="light"] .testimonial-card:hover {
  background: #fafafa !important;
  border-color: rgba(59, 130, 246, 0.15) !important;
  box-shadow: 0 12px 36px rgba(0,0,0,0.06), 0 0 0 1px rgba(59,130,246,0.06) !important;
}

/* Testimonial author avatar logo */
.testimonial-card-logo {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  transition: all 0.25s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
}

.testimonial-card:hover .testimonial-card-logo {
  transform: scale(1.08) !important;
}

/* Quote text refinement */
.testimonial-card .quote-text {
  font-size: 0.8rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  font-style: italic !important;
}

[data-theme="light"] .testimonial-card .quote-text {
  color: rgba(9, 9, 11, 0.6) !important;
}

.author-name {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

.author-role {
  font-size: 0.72rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

[data-theme="light"] .author-role {
  color: rgba(9, 9, 11, 0.45) !important;
}

/* ════════════════════════════════════════
   42. SECTION EYEBROW LABELS — PULSING DOT
   ════════════════════════════════════════ */

/* Add a soft pulsing glow ring to section eyebrow dots */
.label-dot {
  width: 7px !important;
  height: 7px !important;
  background: var(--accent) !important;
  border-radius: 50% !important;
  position: relative !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15) !important;
  animation: dotPulse 2.5s ease-in-out infinite !important;
}

@keyframes dotPulse {
  0%, 100% {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15) !important;
    transform: scale(1) !important;
  }
  50% {
    box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.05) !important;
    transform: scale(1.08) !important;
  }
}

/* eyebrow label chip glass pill */
.label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: rgba(59, 130, 246, 0.06) !important;
  border: 1px solid rgba(59, 130, 246, 0.12) !important;
  border-radius: var(--r-full) !important;
  padding: 4px 12px 4px 10px !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.06em !important;
  font-weight: 600 !important;
  color: rgba(59, 130, 246, 0.9) !important;
  backdrop-filter: blur(4px) !important;
}

[data-theme="light"] .label {
  background: rgba(59, 130, 246, 0.04) !important;
  border-color: rgba(59, 130, 246, 0.1) !important;
  color: rgba(37, 99, 235, 0.9) !important;
}

/* bento-card-tag chips */
.bento-card-tag {
  display: inline-block !important;
  background: rgba(59, 130, 246, 0.06) !important;
  border: 1px solid rgba(59, 130, 246, 0.12) !important;
  border-radius: var(--r-full) !important;
  padding: 3px 10px !important;
  font-size: 0.65rem !important;
  letter-spacing: 0.08em !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: rgba(59, 130, 246, 0.85) !important;
}

/* ════════════════════════════════════════
   43. GLOBAL MICRO-POLISH
   ════════════════════════════════════════ */

/* Refined reveal animation — smoother, gentler */
.reveal {
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Scroll-to-top of page: smooth jump */
html {
  scroll-behavior: smooth !important;
}

/* Selection highlight */
::selection {
  background: rgba(59, 130, 246, 0.2) !important;
  color: inherit !important;
}

/* Focus ring — clean global */
*:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.5) !important;
  outline-offset: 3px !important;
  border-radius: 4px !important;
}

/* Glowing value display badges in bento sliders */
.glowing-value {
  font-weight: 700 !important;
  color: var(--text) !important;
  letter-spacing: -0.02em !important;
  font-variant-numeric: tabular-nums !important;
}

/* Section heading h2 global fine-tuning */
.text-h2 {
  letter-spacing: -0.03em !important;
}

/* Savings stat label icon fine-tuning */
.savings-stat-label {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
}

/* Slider value badge */
.slider-value-badge {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: var(--r-full) !important;
  padding: 2px 10px !important;
  font-variant-numeric: tabular-nums !important;
}

[data-theme="light"] .slider-value-badge {
  background: rgba(9, 9, 11, 0.03) !important;
  border-color: rgba(9, 9, 11, 0.06) !important;
}

/* Price rows in sourcing panel */
.price-row-item {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  transition: all 0.25s ease !important;
}

.price-row-item:hover {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
}

[data-theme="light"] .price-row-item {
  background: rgba(9, 9, 11, 0.01) !important;
  border-color: rgba(9, 9, 11, 0.04) !important;
}

/* Bento card large/medium border refinements */
.bento-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.bento-card:hover {
  transform: translateY(-3px) !important;
}

/* ════════════════════════════════════════
   44. BENTO GRID — DEEP GLASS CARD UPGRADE
   ════════════════════════════════════════ */

.bento-card {
  background: rgba(255, 255, 255, 0.012) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
  backdrop-filter: blur(2px) !important;
  -webkit-backdrop-filter: blur(2px) !important;
}

[data-theme="light"] .bento-card {
  background: #ffffff !important;
  border: 1px solid rgba(9, 9, 11, 0.05) !important;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.03),
    0 1px 2px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: none !important;
}

.bento-card:hover {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(59, 130, 246, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 32px rgba(59, 130, 246, 0.04) !important;
}

[data-theme="light"] .bento-card:hover {
  background: #fafafa !important;
  border-color: rgba(59, 130, 246, 0.15) !important;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(59, 130, 246, 0.05) !important;
}

/* Bento card top hairline gradient border */
.bento-card::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 16px !important;
  right: 16px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent) !important;
  border-radius: 0 0 2px 2px !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

[data-theme="light"] .bento-card::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent) !important;
}

/* Bento grid section glow spotlight */
.bento-glow-spotlight {
  position: absolute !important;
  top: -200px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 900px !important;
  height: 500px !important;
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.06) 0%, rgba(99, 102, 241, 0.03) 40%, transparent 70%) !important;
  filter: blur(40px) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

/* Bento card tag chip refine */
.bento-card-tag {
  background: rgba(59, 130, 246, 0.07) !important;
  border: 1px solid rgba(59, 130, 246, 0.14) !important;
  color: rgba(99, 155, 255, 0.95) !important;
  border-radius: 100px !important;
  font-size: 0.6rem !important;
  letter-spacing: 0.1em !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  padding: 3px 10px !important;
  backdrop-filter: blur(4px) !important;
}

[data-theme="light"] .bento-card-tag {
  background: rgba(59, 130, 246, 0.05) !important;
  border-color: rgba(59, 130, 246, 0.1) !important;
  color: rgba(37, 99, 235, 0.9) !important;
}

/* Bento title */
.bento-card-title {
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  line-height: 1.2 !important;
}

/* Bento description */
.bento-card-desc {
  color: rgba(255, 255, 255, 0.5) !important;
  line-height: 1.65 !important;
  font-size: 0.875rem !important;
}

[data-theme="light"] .bento-card-desc {
  color: rgba(9, 9, 11, 0.55) !important;
}

/* ════════════════════════════════════════
   45. FEATURE RIBBON — PREMIUM SHIMMER ITEMS
   ════════════════════════════════════════ */

/* The horizontal scrolling feature label strip */
.feature-ribbon-track {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.feature-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 6px 14px 6px 12px !important;
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 100px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  white-space: nowrap !important;
  letter-spacing: -0.01em !important;
  transition: all 0.25s ease !important;
  cursor: default !important;
}

[data-theme="light"] .feature-pill {
  background: rgba(9, 9, 11, 0.03) !important;
  border-color: rgba(9, 9, 11, 0.07) !important;
  color: rgba(9, 9, 11, 0.6) !important;
}

.feature-pill:hover {
  background: rgba(59, 130, 246, 0.06) !important;
  border-color: rgba(59, 130, 246, 0.15) !important;
  color: rgba(99, 155, 255, 0.95) !important;
}

/* Feature ribbon dot dividers */
.feature-ribbon-dot {
  width: 4px !important;
  height: 4px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.15) !important;
  flex-shrink: 0 !important;
}

[data-theme="light"] .feature-ribbon-dot {
  background: rgba(9, 9, 11, 0.15) !important;
}

/* Section background ambient depth strips */
#features-bento {
  position: relative !important;
  overflow: hidden !important;
}

#testimonials {
  position: relative !important;
  overflow: hidden !important;
}



/* ════════════════════════════════════════
   46. SECTION & PAGE AMBIENT DEPTH
   ════════════════════════════════════════ */

/* Section separator micro-lines */
section.section + section.section {
  position: relative !important;
}

/* Testimonials eyebrow text */
.testimonials-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-bottom: 16px !important;
}

[data-theme="light"] .testimonials-eyebrow {
  color: rgba(9, 9, 11, 0.45) !important;
}

/* Pricing / Help center section title fine-tuning */
.help-title {
  letter-spacing: -0.03em !important;
  font-weight: 800 !important;
}

/* platform ticker container edge fade */
.platforms-ticker-wrapper {
  position: relative !important;
}

.platforms-ticker-wrapper::before,
.platforms-ticker-wrapper::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 120px !important;
  z-index: 3 !important;
  pointer-events: none !important;
}

.platforms-ticker-wrapper::before {
  left: 0 !important;
  background: linear-gradient(to right, var(--bg) 0%, transparent 100%) !important;
}

.platforms-ticker-wrapper::after {
  right: 0 !important;
  background: linear-gradient(to left, var(--bg) 0%, transparent 100%) !important;
}

/* Keyboard shortcut badge */
kbd, .kbd {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1px 6px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-bottom-width: 2px !important;
  border-radius: 5px !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  font-family: var(--font-mono, 'SF Mono', 'Fira Code', monospace) !important;
  color: rgba(255, 255, 255, 0.65) !important;
  letter-spacing: 0.04em !important;
}

[data-theme="light"] kbd,
[data-theme="light"] .kbd {
  background: rgba(9, 9, 11, 0.03) !important;
  border-color: rgba(9, 9, 11, 0.12) !important;
  border-bottom-color: rgba(9, 9, 11, 0.2) !important;
  color: rgba(9, 9, 11, 0.55) !important;
}

/* ════════════════════════════════════════
   47. CALCULATOR — PREMIUM SLIDER & STAT CARDS
   ════════════════════════════════════════ */

/* Savings Calculator card container */
.savings-calculator-card {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 24px !important;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
}

[data-theme="light"] .savings-calculator-card {
  background: #ffffff !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255,255,255,0.9) !important;
  backdrop-filter: none !important;
}

/* Slider track */
.calculator-slider {
  height: 4px !important;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 99px !important;
  cursor: pointer !important;
}

[data-theme="light"] .calculator-slider {
  background: rgba(9, 9, 11, 0.05);
}

/* Slider thumb */
.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 0 0 3px rgba(59, 130, 246, 0.2) !important;
  cursor: grab !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.calculator-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4), 0 0 0 5px rgba(59, 130, 246, 0.12) !important;
}

/* Stat cards */
.savings-stat-card {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .savings-stat-card {
  background: #f8f8f9 !important;
  border-color: rgba(9, 9, 11, 0.04) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
}

.savings-stat-card:hover {
  background: rgba(255, 255, 255, 0.025) !important;
  border-color: rgba(59, 130, 246, 0.15) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.06) !important;
}

/* Highlight savings stat card */
.savings-stat-card.highlight {
  background: rgba(59, 130, 246, 0.05) !important;
  border-color: rgba(59, 130, 246, 0.15) !important;
  box-shadow:
    0 8px 24px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(59, 130, 246, 0.08) !important;
}

.savings-stat-card.highlight .savings-stat-number {
  color: rgba(99, 155, 255, 1) !important;
  text-shadow: 0 0 20px rgba(59, 130, 246, 0.25) !important;
}

[data-theme="light"] .savings-stat-card.highlight .savings-stat-number {
  color: rgba(37, 99, 235, 1) !important;
  text-shadow: none !important;
}

/* Savings stat number */
.savings-stat-number {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  font-variant-numeric: tabular-nums !important;
}

/* Stat sub label */
.stat-sub {
  font-size: 0.66rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
  font-weight: 400 !important;
}

[data-theme="light"] .stat-sub {
  color: rgba(9, 9, 11, 0.4) !important;
}

/* ════════════════════════════════════════
   48. FORM INPUTS — GLOBAL GLASS TREATMENT
   ════════════════════════════════════════ */

input[type="text"],
input[type="email"],
input[type="search"],
input[type="number"],
textarea,
select {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 10px !important;
  color: var(--text) !important;
  transition: all 0.25s ease !important;
  outline: none !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08) !important;
}

[data-theme="light"] input[type="text"],
[data-theme="light"] input[type="email"],
[data-theme="light"] input[type="search"],
[data-theme="light"] input[type="number"],
[data-theme="light"] textarea,
[data-theme="light"] select {
  background: #ffffff !important;
  border-color: rgba(9, 9, 11, 0.07) !important;
}

[data-theme="light"] input[type="text"]:focus,
[data-theme="light"] input[type="email"]:focus,
[data-theme="light"] input[type="search"]:focus,
[data-theme="light"] input[type="number"]:focus,
[data-theme="light"] textarea:focus,
[data-theme="light"] select:focus {
  border-color: rgba(59, 130, 246, 0.25) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.06) !important;
}

/* ════════════════════════════════════════
   49. HERO SECTION — BOTTOM BLEND FADE
   ════════════════════════════════════════ */

/* Hero section bottom fade to blend into next section */
#hero {
  position: relative !important;
}

#hero::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 120px !important;
  background: linear-gradient(to bottom, transparent, var(--bg)) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

/* Chrome Extension badge shimmer */
.chrome-badge {
  position: relative !important;
  overflow: hidden !important;
}

.chrome-badge::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    90deg,
    transparent 20%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 80%
  ) !important;
  animation: btnShimmerLoop 4s 1.5s cubic-bezier(0.25, 1, 0.5, 1) infinite !important;
  pointer-events: none !important;
}

/* ════════════════════════════════════════
   50. COMPARISON SECTION — GLASS CARD UPGRADE
   ════════════════════════════════════════ */

/* Traditional sourcing card */
.comparison-card.traditional-sourcing {
  background: rgba(255, 255, 255, 0.008) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  opacity: 0.7 !important;
  box-shadow: none !important;
}

.comparison-card.traditional-sourcing:hover {
  background: rgba(255, 255, 255, 0.015) !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
  opacity: 0.9 !important;
  transform: translateY(-2px) !important;
}

[data-theme="light"] .comparison-card.traditional-sourcing {
  background: rgba(9, 9, 11, 0.01) !important;
  border-color: rgba(9, 9, 11, 0.04) !important;
}

/* GP Sourcing glow card — maximize impact with subtle premium borders */
.comparison-card.gp-sourcing-glow {
  background: linear-gradient(180deg, rgba(8, 8, 14, 0.75) 0%, rgba(13, 16, 26, 0.75) 100%) !important;
  border: 1px solid rgba(59, 130, 246, 0.12) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important; /* Premium top highlight reflection */
  backdrop-filter: blur(24px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(160%) !important;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(59, 130, 246, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.02) !important;
  transform: scale(1.02) !important;
}

.comparison-card.gp-sourcing-glow:hover {
  border-color: rgba(59, 130, 246, 0.22) !important;
  border-top-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(59, 130, 246, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  transform: scale(1.02) translateY(-4px) !important;
}

[data-theme="light"] .comparison-card.gp-sourcing-glow {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%) !important;
  border-color: rgba(59, 130, 246, 0.15) !important;
  border-top-color: rgba(59, 130, 246, 0.2) !important;
  box-shadow: 
    0 16px 48px rgba(59, 130, 246, 0.04), 
    inset 0 1px 0 #ffffff !important;
  backdrop-filter: none !important;
}

/* Red / Green Dot Pulsing Overrides */
.red-dot {
  background: #ef4444 !important;
  box-shadow: 0 0 8px #ef4444 !important;
  position: relative;
}
.red-dot::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.4);
  animation: pulseRed 2s infinite;
}

.green-dot {
  background: #10b981 !important;
  box-shadow: 0 0 8px #10b981 !important;
  position: relative;
}
.green-dot::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.4);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseRed {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
@keyframes pulseGreen {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Gradient Titles */
.gp-sourcing-glow .comparison-card-title {
  background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 60%, #60a5fa 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 700 !important;
}
[data-theme="light"] .gp-sourcing-glow .comparison-card-title {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* SVG Icon Badges styling */
.comp-icon-svg {
  width: 11px !important;
  height: 11px !important;
  display: block;
}
.comparison-icon {
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-sizing: border-box !important;
}
.comparison-icon.red-cross {
  background: rgba(239, 68, 68, 0.08) !important;
  color: #f87171 !important;
  border: 1px solid rgba(239, 68, 68, 0.16) !important;
}
[data-theme="light"] .comparison-icon.red-cross {
  background: rgba(239, 68, 68, 0.06) !important;
  color: #dc2626 !important;
  border-color: rgba(239, 68, 68, 0.12) !important;
}
.comparison-icon.check-icon {
  background: rgba(16, 185, 129, 0.08) !important;
  color: #34d399 !important;
  border: 1px solid rgba(16, 185, 129, 0.22) !important;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.12) !important;
}
[data-theme="light"] .comparison-icon.check-icon {
  background: rgba(16, 185, 129, 0.06) !important;
  color: #059669 !important;
  border-color: rgba(16, 185, 129, 0.15) !important;
  box-shadow: none !important;
}

/* Comparison card header separator */
.comparison-card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

[data-theme="light"] .comparison-card-header {
  border-bottom-color: rgba(9, 9, 11, 0.05) !important;
}

/* Status indicator dots */
.comparison-indicator.red-dot {
  background: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
  animation: dotPulse 3s ease-in-out infinite !important;
}

.comparison-indicator.green-dot {
  background: #22c55e !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15) !important;
  animation: dotPulse 2.5s ease-in-out infinite !important;
}

/* Comparison list check/cross icons */
.comparison-icon {
  font-style: normal !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  flex-shrink: 0 !important;
}

/* X mark */
.comparison-icon:not(.check-icon) {
  background: rgba(239, 68, 68, 0.08) !important;
  border: 1px solid rgba(239, 68, 68, 0.12) !important;
  color: rgba(239, 68, 68, 0.7) !important;
}

/* Checkmark */
.comparison-icon.check-icon {
  background: rgba(34, 197, 94, 0.08) !important;
  border: 1px solid rgba(34, 197, 94, 0.12) !important;
  color: rgba(34, 197, 94, 0.85) !important;
}

.comparison-card-title {
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

.comparison-card-subtitle {
  font-size: 0.75rem !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

[data-theme="light"] .comparison-card-subtitle {
  color: rgba(9, 9, 11, 0.45) !important;
}

/* ════════════════════════════════════════
   51. COMPARISON LIST ITEMS — REFINED ROW
   ════════════════════════════════════════ */

.comparison-list {
  gap: 0 !important;
}

.comparison-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 10px 0 !important;
  font-size: 0.875rem !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  transition: color 0.2s ease !important;
}

.comparison-list li:last-child {
  border-bottom: none !important;
}

.comparison-list.gp-list li {
  color: rgba(255, 255, 255, 0.75) !important;
}

.comparison-list.gp-list li:hover {
  color: rgba(255, 255, 255, 0.95) !important;
}

[data-theme="light"] .comparison-list li {
  color: rgba(9, 9, 11, 0.55) !important;
  border-bottom-color: rgba(9, 9, 11, 0.03) !important;
}

[data-theme="light"] .comparison-list.gp-list li {
  color: rgba(9, 9, 11, 0.7) !important;
}

/* ════════════════════════════════════════
   52. FINAL TYPOGRAPHY FINE-TUNING
   ════════════════════════════════════════ */

/* Refined muted color across whole page */
.text-muted,
.muted,
[class*="desc"],
[class*="subtitle"]:not(h1):not(h2):not(h3) {
  color: rgba(255, 255, 255, 0.5) !important;
}

[data-theme="light"] .text-muted,
[data-theme="light"] .muted,
[data-theme="light"] [class*="desc"],
[data-theme="light"] [class*="subtitle"]:not(h1):not(h2):not(h3) {
  color: rgba(9, 9, 11, 0.5) !important;
}

/* Refined h3 headings in cards */
.bento-card-title,
.comparison-card-title,
.help-card-title,
.section-card-title {
  color: var(--text) !important;
}

/* All pill/badge elements — consistent tracking */
[class*="badge"],
[class*="tag"],
[class*="chip"],
[class*="label"],
[class*="eyebrow"] {
  line-height: 1 !important;
}

/* Smooth transitions on everything with CSS vars */
[data-theme] * {
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease !important;
}

/* Prevent transition overriding on animated elements */
[data-theme] *[class*="anim"],
[data-theme] *[class*="shimmer"],
[data-theme] *[class*="scroll"],
[data-theme] *[class*="marquee"],
[data-theme] *[class*="reveal"] {
  transition: none !important;
}

/* Restore reveal transitions */
[data-theme] .reveal {
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ════════════════════════════════════════
   53. MOCKUP v4 — SHOPIFY ADMIN DARK + CLEAN PANEL
   ════════════════════════════════════════ */

/* ── Left: Mock Shopify Admin page ── */

.mock-shopify-page {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  background: rgba(0, 0, 0, 0.18) !important;
  gap: 0 !important;
}

[data-theme="light"] .mock-shopify-page {
  background: rgba(0, 0, 0, 0.02) !important;
}

/* Store nav strip at top of left panel */
.mock-store-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  background: rgba(255, 255, 255, 0.015) !important;
  flex-shrink: 0 !important;
}

[data-theme="light"] .mock-store-nav {
  border-bottom-color: rgba(9, 9, 11, 0.04) !important;
  background: rgba(9, 9, 11, 0.01) !important;
}

.mock-store-logo {
  font-size: 0.625rem !important;
  font-weight: 800 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  letter-spacing: -0.02em !important;
}

[data-theme="light"] .mock-store-logo {
  color: rgba(9, 9, 11, 0.7) !important;
}

.mock-store-nav-links {
  display: flex !important;
  gap: 14px !important;
  align-items: center !important;
}

.mock-nav-link {
  font-size: 0.55rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.28) !important;
  cursor: pointer !important;
}

.mock-nav-link.active {
  color: rgba(255, 255, 255, 0.7) !important;
  font-weight: 700 !important;
}

[data-theme="light"] .mock-nav-link {
  color: rgba(9, 9, 11, 0.3) !important;
}

[data-theme="light"] .mock-nav-link.active {
  color: rgba(9, 9, 11, 0.75) !important;
}

/* Product preview card in left panel */
.shopify-product-preview {
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-top-color: rgba(255, 255, 255, 0.06) !important;
  border-radius: 14px !important;
  padding: 18px !important;
  margin: 20px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.04) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

[data-theme="light"] .shopify-product-preview {
  background: rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(9, 9, 11, 0.04) !important;
  border-top-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.02), inset 0 1px 0 rgba(255,255,255,1) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

/* Product image box */
.product-image-box {
  border-radius: 10px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.025) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

[data-theme="light"] .product-image-box {
  background: #f5f5f7 !important;
  border-color: rgba(9, 9, 11, 0.04) !important;
}

/* Product details section below image */
.product-details-box {
  padding-top: 14px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

/* Category tag — neutral muted mono */
.mock-product-category {
  font-size: 0.55rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.28) !important;
  display: block !important;
}

[data-theme="light"] .mock-product-category {
  color: rgba(9, 9, 11, 0.3) !important;
}

/* Product title — bigger, tighter, premium */
.mock-product-title {
  font-family: var(--font-display) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.035em !important;
  color: rgba(255, 255, 255, 0.92) !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

[data-theme="light"] .mock-product-title {
  color: rgba(9, 9, 11, 0.9) !important;
}

/* Price row */
.mock-product-price-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-top: 6px !important;
}

.mock-retail-price {
  font-family: var(--font-display) !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-variant-numeric: tabular-nums !important;
}

[data-theme="light"] .mock-retail-price {
  color: rgba(9, 9, 11, 0.92) !important;
}

.mock-tag-dropship {
  font-size: 0.5rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.35) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 100px !important;
  padding: 2px 7px !important;
}

/* Object ID / stats row */
.mock-product-stats {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 0.57rem !important;
  color: rgba(255, 255, 255, 0.28) !important;
  margin-top: 2px !important;
}

[data-theme="light"] .mock-product-stats {
  color: rgba(9, 9, 11, 0.32) !important;
}

.mock-stat-val {
  font-weight: 500 !important;
  font-variant-numeric: tabular-nums !important;
  color: rgba(255, 255, 255, 0.32) !important;
}

[data-theme="light"] .mock-stat-val {
  color: rgba(9, 9, 11, 0.35) !important;
}

.mock-stat-sep {
  opacity: 0.3 !important;
}

/* ── Right: Cost Breakdown Ledger Table ── */

.cost-breakdown-table {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

[data-theme="light"] .cost-breakdown-table {
  background: rgba(9, 9, 11, 0.02) !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
}

.cost-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 8px 12px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  transition: background 0.15s ease !important;
}

.cost-row:last-child {
  border-bottom: none !important;
}

[data-theme="light"] .cost-row {
  border-bottom-color: rgba(9, 9, 11, 0.03) !important;
}

.cost-row-label {
  font-size: 0.62rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  letter-spacing: 0em !important;
}

[data-theme="light"] .cost-row-label {
  color: rgba(9, 9, 11, 0.45) !important;
}

.cost-row-value {
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-variant-numeric: tabular-nums !important;
  letter-spacing: -0.02em !important;
}

[data-theme="light"] .cost-row-value {
  color: rgba(9, 9, 11, 0.78) !important;
}

/* Net profit row */
.cost-row.cost-row-profit {
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.cost-row.cost-row-profit .cost-row-label {
  color: rgba(255, 255, 255, 0.55) !important;
  font-weight: 500 !important;
}

[data-theme="light"] .cost-row.cost-row-profit {
  background: transparent !important;
  border-top-color: rgba(9, 9, 11, 0.04) !important;
}

[data-theme="light"] .cost-row.cost-row-profit .cost-row-label {
  color: rgba(9, 9, 11, 0.55) !important;
}

.cost-val-profit {
  color: rgba(16, 185, 129, 0.85) !important;
  font-weight: 700 !important;
}

[data-theme="light"] .cost-val-profit {
  color: rgba(5, 150, 105, 0.85) !important;
}

/* ════════════════════════════════════════
   54. WORKFLOW STEPS — DEEP GLASS PREMIUM
   ════════════════════════════════════════ */

[data-theme="dark"] .workflow-step {
  background: rgba(10, 10, 18, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.055) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.09) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

[data-theme="dark"] .workflow-step:hover {
  background: rgba(14, 14, 24, 0.85) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
  border-top-color: rgba(59, 130, 246, 0.3) !important;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(59, 130, 246, 0.06),
    inset 0 1px 0 rgba(59, 130, 246, 0.08) !important;
  transform: translateY(-6px) !important;
}

/* Step number — bigger, more dramatic */
.step-number {
  font-size: 2.5rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.05em !important;
  opacity: 1 !important;
  line-height: 1 !important;
}

/* Step title */
.step-title {
  font-size: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.3 !important;
  color: var(--text) !important;
}

/* Step description */
.step-desc {
  font-size: 0.82rem !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.45) !important;
}

[data-theme="light"] .step-desc {
  color: rgba(9, 9, 11, 0.5) !important;
}

/* Connector arrow between steps */
@media (min-width: 1025px) {
  [data-theme="dark"] .workflow-step:not(:last-child)::after {
    border-top: 2px dashed rgba(59, 130, 246, 0.2) !important;
    opacity: 1 !important;
  }
}

/* ════════════════════════════════════════
   55. HERO EYEBROW PILL — GLASSMORPHISM
   ════════════════════════════════════════ */

.hero-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 14px !important;
  background: rgba(59, 130, 246, 0.06) !important;
  border: 1px solid rgba(59, 130, 246, 0.14) !important;
  border-radius: 100px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  letter-spacing: 0.01em !important;
  margin-bottom: 24px !important;
  backdrop-filter: blur(8px) !important;
}

[data-theme="light"] .hero-eyebrow {
  background: rgba(59, 130, 246, 0.04) !important;
  border-color: rgba(59, 130, 246, 0.12) !important;
  color: rgba(9, 9, 11, 0.6) !important;
}

.hero-eyebrow-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #60a5fa !important;
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2) !important;
  flex-shrink: 0 !important;
  animation: statusPulse 2.2s ease-in-out infinite !important;
}

/* ════════════════════════════════════════
   56. HERO TITLE — TIGHTER, STRONGER
   ════════════════════════════════════════ */

.hero-title {
  letter-spacing: -0.04em !important;
  line-height: 1.08 !important;
}

[data-theme="dark"] .text-gradient {
  background: linear-gradient(130deg, #60a5fa 0%, #38bdf8 40%, #34d399 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.hero-sub {
  font-size: 1.0625rem !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  max-width: 600px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

[data-theme="light"] .hero-sub {
  color: rgba(9, 9, 11, 0.5) !important;
}

/* ════════════════════════════════════════
   57. TRUST LINE BADGES — REFINED
   ════════════════════════════════════════ */

.trust-badge-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

[data-theme="light"] .trust-badge-item {
  color: rgba(9, 9, 11, 0.45) !important;
}

.trust-bullet {
  color: rgba(255, 255, 255, 0.15) !important;
  font-size: 0.6rem !important;
}

/* ════════════════════════════════════════
   58. GLOBAL SECTION DIVIDERS — ELEGANT LINES
   ════════════════════════════════════════ */

/* Add a subtle top separator to all full-width sections */
.section {
  position: relative !important;
}

/* Gradient horizontal hairline at top of alternating sections */
#sourcing-calculator::before,
#testimonials::before {
  content: '' !important;
  display: block !important;
  height: 1px !important;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.15) 30%,
    rgba(99, 102, 241, 0.1) 70%,
    transparent 100%
  ) !important;
  margin-bottom: 0 !important;
}

/* Section label micro-typography polish */
.label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--accent) !important;
  background: rgba(59, 130, 246, 0.05) !important;
  border: 1px solid rgba(59, 130, 246, 0.1) !important;
  border-radius: 100px !important;
  padding: 4px 12px !important;
  margin-bottom: 16px !important;
}

[data-theme="light"] .label {
  background: rgba(59, 130, 246, 0.04) !important;
  border-color: rgba(59, 130, 246, 0.1) !important;
}

.label-dot {
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: currentColor !important;
  opacity: 0.7 !important;
}

/* ════════════════════════════════════════
   59. HERO MOCKUP — GEOMETRIC SHAPE DISPLAY
   ════════════════════════════════════════ */

.product-image-box.is-scanning-mode {
  position: relative !important;
  background: transparent !important;
  border: none !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  min-height: 220px !important;
}

/* ── Shape wrapper ── */
.shape-display-wrap {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 140px !important;
  height: 140px !important;
}

/* ── Radar Scanning Reticles ── */
.radar-circle {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  border-radius: 50% !important;
  border: 1px dashed rgba(255, 255, 255, 0.05) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
.radar-c1 {
  width: 140px !important;
  height: 140px !important;
}
.radar-c2 {
  width: 200px !important;
  height: 200px !important;
  border: 1px solid rgba(255, 255, 255, 0.02) !important;
}
.radar-crosshair-h {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 220px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.035) 50%, transparent) !important;
  transform: translate(-50%, -50%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
.radar-crosshair-v {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  height: 220px !important;
  width: 1px !important;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035) 50%, transparent) !important;
  transform: translate(-50%, -50%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* ── Base shape element ── */
.shape-el {
  position: relative !important;
  z-index: 2 !important;
  border: 1.5px solid rgba(255, 255, 255, 0.32) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.06)) !important;
  transition:
    border-color 0.5s ease,
    background 0.5s ease,
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s ease,
    opacity 0.4s ease !important;
}

/* Scanning state — blue border */
.product-image-box.is-scanning .shape-el {
  border-color: rgba(96, 165, 250, 0.7) !important;
  background: rgba(59, 130, 246, 0.08) !important;
  filter: drop-shadow(0 0 16px rgba(96, 165, 250, 0.35)) !important;
}

/* Found state — subtle green, very calm */
.product-image-box.has-found .shape-el {
  border-color: rgba(16, 185, 129, 0.65) !important;
  background: rgba(16, 185, 129, 0.06) !important;
  filter: drop-shadow(0 0 16px rgba(16, 185, 129, 0.35)) !important;
}

/* ── Shape variants ── */
.shape-circle {
  width: 88px !important;
  height: 88px !important;
  border-radius: 50% !important;
}

.shape-square {
  width: 80px !important;
  height: 80px !important;
  border-radius: 8px !important;
}

.shape-triangle {
  width: 88px !important;
  height: 88px !important;
  border: none !important;
  background: rgba(255, 255, 255, 0.18) !important; /* Acts as the border color */
  clip-path: polygon(50% 4%, 96% 92%, 4% 92%) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: relative !important;
}

.shape-diamond {
  width: 72px !important;
  height: 72px !important;
  border-radius: 6px !important;
  transform: rotate(45deg) !important;
}

.shape-hexagon {
  width: 88px !important;
  height: 88px !important;
  border: none !important;
  background: rgba(255, 255, 255, 0.18) !important; /* Acts as the border color */
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%) !important;
  box-shadow: none !important;
  position: relative !important;
}

/* Pseudo element trick to mask interior, creating a clean 1.5px border on clipped shapes */
.shape-triangle::before,
.shape-hexagon::before {
  content: "" !important;
  position: absolute !important;
  inset: 1.5px !important; /* Border thickness */
  background: #09090b !important; /* Default dark mode card surface color */
  clip-path: inherit !important;
  z-index: -1 !important;
}

.shape-oval {
  width: 108px !important;
  height: 72px !important;
  border-radius: 50% !important;
}

/* Triangle & hexagon scanning state overrides using parent background (border) + child overlay (interior) */
.product-image-box.is-scanning .shape-triangle,
.product-image-box.is-scanning .shape-hexagon {
  background: rgba(96, 165, 250, 0.55) !important; /* Blue border color */
  box-shadow: none !important;
}
.product-image-box.is-scanning .shape-triangle::before,
.product-image-box.is-scanning .shape-hexagon::before {
  background: linear-gradient(rgba(59, 130, 246, 0.04), rgba(59, 130, 246, 0.04)), #09090b !important;
}

.product-image-box.has-found .shape-triangle,
.product-image-box.has-found .shape-hexagon {
  background: rgba(16, 185, 129, 0.45) !important; /* Green border color */
  box-shadow: none !important;
}
.product-image-box.has-found .shape-triangle::before,
.product-image-box.has-found .shape-hexagon::before {
  background: linear-gradient(rgba(16, 185, 129, 0.03), rgba(16, 185, 129, 0.03)), #09090b !important;
}

.supplier-thumb-spinner {
  display: none !important;
}

.supplier-mini-card.active-matched .supplier-thumb-spinner {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── Scan ring — expands outward when scanning ── */
.shape-scan-ring {
  position: absolute !important;
  border-radius: 50% !important;
  border: 1px solid rgba(96, 165, 250, 0) !important;
  width: 88px !important;
  height: 88px !important;
  z-index: 1 !important;
  pointer-events: none !important;
  transition: none !important;
}

.product-image-box.is-scanning .shape-scan-ring {
  animation: shapeScanPulse 0.75s ease-out infinite !important;
}

.product-image-box.has-found .shape-scan-ring {
  animation: none !important;
  border-color: rgba(16, 185, 129, 0) !important;
}

@keyframes shapeScanPulse {
  0%   { transform: scale(1);    border-color: rgba(96, 165, 250, 0.4); opacity: 1; }
  100% { transform: scale(1.65); border-color: rgba(96, 165, 250, 0);   opacity: 0; }
}

/* ── Light theme adjustments ── */
[data-theme="light"] .shape-el {
  border-color: rgba(9, 9, 11, 0.14) !important;
  background: rgba(9, 9, 11, 0.02) !important;
  filter: drop-shadow(0 0 10px rgba(9, 9, 11, 0.02)) !important;
}

[data-theme="light"] .radar-circle {
  border-color: rgba(9, 9, 11, 0.04) !important;
}
[data-theme="light"] .radar-c2 {
  border-color: rgba(9, 9, 11, 0.015) !important;
}
[data-theme="light"] .radar-crosshair-h {
  background: linear-gradient(90deg, transparent, rgba(9, 9, 11, 0.02) 50%, transparent) !important;
}
[data-theme="light"] .radar-crosshair-v {
  background: linear-gradient(180deg, transparent, rgba(9, 9, 11, 0.02) 50%, transparent) !important;
}

[data-theme="light"] .product-image-box.is-scanning .shape-el {
  border-color: rgba(37, 99, 235, 0.45) !important;
  background: rgba(59, 130, 246, 0.03) !important;
  filter: drop-shadow(0 0 16px rgba(37, 99, 235, 0.12)) !important;
}

[data-theme="light"] .product-image-box.has-found .shape-el {
  border-color: rgba(5, 150, 105, 0.4) !important;
  background: rgba(16, 185, 129, 0.02) !important;
  filter: drop-shadow(0 0 16px rgba(5, 150, 105, 0.1)) !important;
}

/* Light theme border and interior overrides */
[data-theme="light"] .shape-triangle,
[data-theme="light"] .shape-hexagon {
  background: rgba(9, 9, 11, 0.14) !important; /* Light border color */
  box-shadow: none !important;
}
[data-theme="light"] .shape-triangle::before,
[data-theme="light"] .shape-hexagon::before {
  background: #ffffff !important;
}

[data-theme="light"] .product-image-box.is-scanning .shape-triangle::before,
[data-theme="light"] .product-image-box.is-scanning .shape-hexagon::before {
  background: linear-gradient(rgba(37, 99, 235, 0.03), rgba(37, 99, 235, 0.03)), #ffffff !important;
}
[data-theme="light"] .product-image-box.has-found .shape-triangle::before,
[data-theme="light"] .product-image-box.has-found .shape-hexagon::before {
  background: linear-gradient(rgba(16, 185, 129, 0.02), rgba(16, 185, 129, 0.02)), #ffffff !important;
}



/* Premium Glassmorphic 3D Product Placeholder (Linear style) */
.glass-product-render {
  position: relative !important;
  width: 120px !important;
  height: 120px !important;
  transform: rotateX(24deg) rotateY(-24deg) rotateZ(4deg) !important;
  transform-style: preserve-3d !important;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-image-box.is-scanning .glass-product-render {
  transform: rotateX(24deg) rotateY(-24deg) rotateZ(4deg) scale(1.05) !important;
}

.product-image-box.has-found .glass-product-render {
  transform: rotateX(20deg) rotateY(-20deg) rotateZ(0deg) scale(1.08) !important;
}

/* Base plate */
.glass-base {
  position: absolute !important;
  bottom: 0 !important;
  left: 10px !important;
  width: 100px !important;
  height: 12px !important;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.6), 
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  border-radius: 6px !important;
  transform: translateZ(-20px) !important;
}

/* Vertical stem — neutral matte */
.glass-stem {
  position: absolute !important;
  bottom: 12px !important;
  left: 54px !important;
  width: 12px !important;
  height: 48px !important;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.09)) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
  border-radius: 4px !important;
  transform-origin: bottom center !important;
}

/* Magnetic puck disk */
.glass-puck {
  position: absolute !important;
  top: 15px !important;
  left: 25px !important;
  width: 70px !important;
  height: 70px !important;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 50% !important;
  box-shadow: 
    inset 0 0 15px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255,255,255,0.2),
    0 10px 30px rgba(0, 0, 0, 0.5) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  backdrop-filter: blur(6px) !important;
  transition: border-color 0.4s ease !important;
}

.product-image-box.is-scanning .glass-puck {
  border-color: rgba(255, 255, 255, 0.22) !important;
}

.product-image-box.has-found .glass-puck {
  border-color: rgba(16, 185, 129, 0.28) !important;
}

/* Puck accent glow — muted, barely visible at rest */
.puck-accent-glow {
  position: absolute !important;
  inset: 6px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 80%) !important;
  opacity: 1 !important;
  transition: opacity 0.6s ease, background 0.6s ease !important;
}

.product-image-box.is-scanning .puck-accent-glow {
  opacity: 1 !important;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 80%) !important;
}

.product-image-box.has-found .puck-accent-glow {
  opacity: 1 !important;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 80%) !important;
}

.puck-core {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* Sweeping line — barely visible, glass-thin */
.scan-laser-line {
  position: absolute !important;
  left: 0 !important;
  width: 100% !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent 10%, rgba(255, 255, 255, 0.18) 50%, transparent 90%) !important;
  box-shadow: none !important;
  opacity: 0 !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

.product-image-box.is-scanning .scan-laser-line {
  opacity: 1 !important;
  background: linear-gradient(90deg, transparent 5%, rgba(96, 165, 250, 0.65) 50%, transparent 95%) !important;
  box-shadow: 0 0 10px rgba(96, 165, 250, 0.4) !important;
  animation: scanSweep 0.75s ease-in-out infinite !important;
}

[data-theme="light"] .product-image-box.is-scanning .scan-laser-line {
  background: linear-gradient(90deg, transparent 5%, rgba(37, 99, 235, 0.65) 50%, transparent 95%) !important;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.4) !important;
}

@keyframes scanSweep {
  0%, 100% { top: 15%; }
  50% { top: 85%; }
}

/* Scan status badge */
.scan-status-overlay {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  z-index: 10 !important;
}

.scan-status-pill {
  font-family: var(--font-mono, monospace) !important;
  font-size: 0.52rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Connector line — hidden (removed from visual layer, logic preserved) */
.svg-connector-overlay {
  display: none !important;
}

.connector-svg {
  width: 100% !important;
  height: 100% !important;
}

.connector-path-active {
  stroke-dasharray: 15 280 !important;
  stroke-dashoffset: 295 !important;
}

.browser-viewport .svg-connector-overlay[style*="opacity: 1"] .connector-path-active {
  animation: strokeFlow 2.2s linear infinite !important;
}

@keyframes strokeFlow {
  from { stroke-dashoffset: 295; }
  to { stroke-dashoffset: 0; }
}

/* Supplier mini card glass thumbnail */
.supplier-thumb-glass {
  width: 100% !important;
  height: 100% !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

.supplier-mini-card.active-matched .supplier-thumb-glass {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

.thumb-glass-inner {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  opacity: 0 !important;
  transform: scale(0.4) !important;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-radius 0.3s ease !important;
}

/* Supplier mini shapes to match left panel scanned shapes */
.thumb-glass-inner.shape-circle {
  border-radius: 50% !important;
}
.thumb-glass-inner.shape-square {
  border-radius: 2px !important;
}
.thumb-glass-inner.shape-triangle {
  border: none !important;
  background: transparent !important;
  clip-path: polygon(50% 12%, 92% 88%, 8% 88%) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18) !important;
  border-radius: 0 !important;
}
.thumb-glass-inner.shape-diamond {
  border-radius: 1px !important;
}
.thumb-glass-inner.shape-hexagon {
  border: none !important;
  background: rgba(255, 255, 255, 0.04) !important;
  clip-path: polygon(25% 6%, 75% 6%, 98% 50%, 75% 94%, 25% 94%, 2% 50%) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18) !important;
}
.thumb-glass-inner.shape-oval {
  border-radius: 50% !important;
}

.supplier-mini-card.active-matched .thumb-glass-inner {
  opacity: 1 !important;
  transform: scale(1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.16) !important;
  box-shadow: none !important;
}

.supplier-mini-card.active-matched .thumb-glass-inner.shape-triangle,
.supplier-mini-card.active-matched .thumb-glass-inner.shape-hexagon {
  box-shadow: none !important;
  background: rgba(255, 255, 255, 0.16) !important;
}

.supplier-mini-card.active-matched .thumb-glass-inner.shape-diamond {
  transform: scale(0.85) rotate(45deg) !important;
}

.supplier-mini-card.active-matched .thumb-glass-inner.shape-oval {
  transform: scale(1.1, 0.75) !important;
}

@keyframes gridCardShimmer {
  0% {
    background: rgba(255, 255, 255, 0.012) !important;
    border-color: rgba(255, 255, 255, 0.04) !important;
  }
  50% {
    background: rgba(255, 255, 255, 0.045) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  100% {
    background: rgba(255, 255, 255, 0.012) !important;
    border-color: rgba(255, 255, 255, 0.04) !important;
  }
}

.supplier-mini-card:not(.active-matched) {
  animation: gridCardShimmer 1.8s ease-in-out infinite !important;
  animation-delay: calc(var(--card-index, 0) * 0.06s) !important;
}

.supplier-thumb-spinner {
  display: none !important;
}

.supplier-mini-card.active-matched .supplier-thumb-spinner {
  opacity: 0 !important;
  pointer-events: none !important;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Bento Sourcing matched supplier cards micro wireframes */
.node-thumb-wireframe {
  width: 24px !important;
  height: 24px !important;
  color: var(--accent) !important;
  display: block !important;
  opacity: 0.8 !important;
  filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.4)) !important;
}

[data-theme="light"] .node-thumb-wireframe {
  color: rgba(37, 99, 235, 0.85) !important;
  filter: none !important;
}

/* ════════════════════════════════════════
   60. PREMIUM GLOBAL LIGHT/DARK TOGGLE
   ════════════════════════════════════════ */

.theme-toggle-btn {
  display: none !important;
}

[data-theme="light"] .theme-toggle-btn {
  background: rgba(9, 9, 11, 0.03) !important;
  border-color: rgba(9, 9, 11, 0.06) !important;
}

.theme-toggle-btn:hover {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

[data-theme="light"] .theme-toggle-btn:hover {
  border-color: rgba(9, 9, 11, 0.12) !important;
  background: rgba(9, 9, 11, 0.05) !important;
}

/* Toggle circle dot indicator */
.theme-toggle-dot {
  position: absolute !important;
  top: 3px !important;
  left: 3px !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  box-shadow: 
    0 1px 3px rgba(0, 0, 0, 0.2), 
    inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 1 !important;
}

[data-theme="light"] .theme-toggle-dot {
  transform: translateX(20px) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12) !important;
  background: #09090b !important;
}

/* SVG icons inside toggle button */
.theme-toggle-btn svg {
  width: 11px !important;
  height: 11px !important;
  stroke: rgba(255, 255, 255, 0.4) !important;
  transition: opacity 0.2s ease, stroke 0.2s ease !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

[data-theme="light"] .theme-toggle-btn svg {
  stroke: rgba(9, 9, 11, 0.4) !important;
}

/* Light / dark active icon states */
.theme-toggle-btn .sun-icon {
  opacity: 1 !important;
}

.theme-toggle-btn .moon-icon {
  opacity: 0.3 !important;
}

[data-theme="light"] .theme-toggle-btn .sun-icon {
  opacity: 0.3 !important;
}

[data-theme="light"] .theme-toggle-btn .moon-icon {
  opacity: 1 !important;
  stroke: #ffffff !important; /* light dot overlaps moon, make it readable */
}

/* ════════════════════════════════════════
   61. HOW IT WORKS — PREMIUM MINIMAL STRIP
   ════════════════════════════════════════ */

.hero-steps-section {
  width: 100% !important;
  max-width: 960px !important;
  margin: 40px auto 0 !important;
  padding: 0 16px !important;
  box-sizing: border-box !important;
}

.hero-steps-container {
  display: grid !important;
  grid-template-columns: 1fr 1px 1fr 1px 1fr !important;
  align-items: stretch !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.03) 0%,
    rgba(255,255,255,0.01) 100%
  ) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

[data-theme="light"] .hero-steps-container {
  background: linear-gradient(
    135deg,
    rgba(9,9,11,0.025) 0%,
    rgba(9,9,11,0.01) 100%
  ) !important;
  border-color: rgba(9,9,11,0.07) !important;
}

/* Thin separator lines */
.hero-step-sep {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,0.08) 30%,
    rgba(255,255,255,0.08) 70%,
    transparent 100%
  ) !important;
  width: 1px !important;
  align-self: stretch !important;
}

[data-theme="light"] .hero-step-sep {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(9,9,11,0.08) 30%,
    rgba(9,9,11,0.08) 70%,
    transparent 100%
  ) !important;
}

.hero-step {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 24px 32px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: background 0.25s ease !important;
}

.hero-step:hover {
  background: rgba(255,255,255,0.02) !important;
}

[data-theme="light"] .hero-step:hover {
  background: rgba(9,9,11,0.015) !important;
}

/* Big translucent number — decorative background */
.hero-step-num {
  font-family: var(--font-display, 'Inter', sans-serif) !important;
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.06em !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.12) 0%,
    rgba(255,255,255,0.04) 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  user-select: none !important;
}

[data-theme="light"] .hero-step-num {
  background: linear-gradient(
    180deg,
    rgba(9,9,11,0.1) 0%,
    rgba(9,9,11,0.04) 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.hero-step-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.hero-step-title {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  line-height: 1.35 !important;
  letter-spacing: -0.02em !important;
}

[data-theme="dark"] .hero-step-title {
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.75) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.hero-step-desc {
  font-size: 0.72rem !important;
  line-height: 1.5 !important;
  color: rgba(255,255,255,0.38) !important;
  letter-spacing: 0 !important;
}

[data-theme="light"] .hero-step-desc {
  color: rgba(9,9,11,0.45) !important;
}

@media (max-width: 1024px) {
  .hero-steps-container {
    grid-template-columns: 1fr !important;
    grid-template-rows: 1fr 1px 1fr 1px 1fr !important;
  }
  .hero-step-sep {
    width: auto !important;
    height: 1px !important;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(255,255,255,0.08) 20%,
      rgba(255,255,255,0.08) 80%,
      transparent 100%
    ) !important;
  }
  [data-theme="light"] .hero-step-sep {
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(9,9,11,0.08) 20%,
      rgba(9,9,11,0.08) 80%,
      transparent 100%
    ) !important;
  }
  .hero-step {
    padding: 20px 24px !important;
  }
}

/* ════════════════════════════════════════
   62. B2B ROI METRICS GRID SYSTEM (legacy, kept for reference)
   ════════════════════════════════════════ */

.hero-metrics-section {
  width: 100% !important;
  max-width: 900px !important;
  margin: 36px auto 0 !important;
  padding: 0 24px !important;
  box-sizing: border-box !important;
}

.metrics-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 20px 48px !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  box-shadow: 
    0 16px 40px -10px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(8px) !important;
}

[data-theme="light"] .metrics-container {
  background: rgba(9, 9, 11, 0.01) !important;
  border-color: rgba(9, 9, 11, 0.04) !important;
  box-shadow: 
    0 8px 24px rgba(9, 9, 11, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
}

.metric-card {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  align-items: center !important;
}

.metric-number {
  font-family: var(--font-display) !important;
  font-size: 2.1rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.04em !important;
  color: var(--text) !important;
  line-height: 1 !important;
  font-variant-numeric: tabular-nums !important;
}

.metric-label {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  color: rgba(255, 255, 255, 0.45) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
}

[data-theme="light"] .metric-label {
  color: rgba(9, 9, 11, 0.5) !important;
}

.metric-divider {
  width: 1px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

[data-theme="light"] .metric-divider {
  background: rgba(9, 9, 11, 0.06) !important;
}

@media (max-width: 640px) {
  .metrics-container {
    flex-direction: column !important;
    gap: 24px !important;
    padding: 24px !important;
  }
  .metric-divider {
    width: 60px !important;
    height: 1px !important;
  }
}



/* ════════════════════════════════════════
   63. THIRD-PARTY ECOSYSTEM INTEGRATIONS
   ════════════════════════════════════════ */

.integrations-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  margin-top: 48px !important;
}

@media (max-width: 768px) {
  .integrations-grid {
    grid-template-columns: 1fr !important;
  }
}

.integration-item {
  padding: 32px !important;
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1) !important;
  transition: transform 0.3s ease, border-color 0.3s ease !important;
}

[data-theme="light"] .integration-item {
  background: #ffffff !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
  box-shadow: 0 4px 16px rgba(9,9,11,0.01) !important;
}

.integration-item:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

[data-theme="light"] .integration-item:hover {
  border-color: rgba(9, 9, 11, 0.1) !important;
}

.integration-logo-wrap {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
  color: var(--text) !important;
}

[data-theme="light"] .integration-logo-wrap {
  background: rgba(9, 9, 11, 0.02) !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
}

.integration-logo {
  width: 20px !important;
  height: 20px !important;
}

.integration-title {
  font-family: var(--font-display) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  margin-bottom: 8px !important;
  letter-spacing: -0.01em !important;
}

.integration-desc {
  font-size: 0.78rem !important;
  line-height: 1.5 !important;
  color: var(--muted) !important;
  margin: 0 !important;
}

/* ════════════════════════════════════════
   64. ENTERPRISE DATA COMPLIANCE & SECURITY
   ════════════════════════════════════════ */

.compliance-box {
  display: grid !important;
  grid-template-columns: 1fr 1.2fr !important;
  gap: 56px !important;
  align-items: center !important;
  padding: 48px !important;
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 20px !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15) !important;
}

@media (max-width: 992px) {
  .compliance-box {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    padding: 32px !important;
  }
}

[data-theme="light"] .compliance-box {
  background: #ffffff !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
  box-shadow: 0 10px 30px rgba(9,9,11,0.01) !important;
}

.compliance-desc {
  font-size: 0.85rem !important;
  line-height: 1.65 !important;
  color: var(--muted) !important;
  margin: 0 !important;
}

.compliance-right {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.security-badge-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  padding: 16px !important;
  background: rgba(255, 255, 255, 0.016) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 10px !important;
}

[data-theme="light"] .security-badge-item {
  background: rgba(9, 9, 11, 0.01) !important;
  border-color: rgba(9, 9, 11, 0.04) !important;
}

.badge-icon-wrap {
  width: 32px !important;
  height: 32px !important;
  border-radius: 6px !important;
  background: rgba(59, 130, 246, 0.08) !important;
  border: 1px solid rgba(59, 130, 246, 0.12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #60a5fa !important;
  flex-shrink: 0 !important;
}

[data-theme="light"] .badge-icon-wrap {
  color: #2563eb !important;
}

.badge-text-box {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.badge-text-title {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: var(--text) !important;
}

.badge-text-desc {
  font-size: 0.72rem !important;
  line-height: 1.45 !important;
  color: var(--muted) !important;
}

/* ══════════════════════════════════════════════════════
   SECTION POLISH — Section 2: Ticker & B2B Metrics
   ══════════════════════════════════════════════════════ */

/* Sourcing ticker — borderless, airy layout */
.sourcing-ticker-container {
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding: 10px 0 !important;
  margin: 20px 0 44px 0 !important;
  background: transparent !important;
}
[data-theme="light"] .sourcing-ticker-container {
  border-color: rgba(9, 9, 11, 0.04) !important;
}

/* Ticker pills — invisible borders, subdued text */
.sourcing-ticker-container .ticker-item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 4px 18px !important;
  font-size: 0.73rem !important;
  color: rgba(255, 255, 255, 0.42) !important;
  letter-spacing: 0.01em !important;
  gap: 8px !important;
}
[data-theme="light"] .sourcing-ticker-container .ticker-item {
  color: rgba(9, 9, 11, 0.4) !important;
}

/* Country badge — monochrome accent */
.sourcing-ticker-container .ticker-badge {
  font-size: 0.58rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  padding: 1px 5px !important;
  border-radius: 3px !important;
  background: rgba(59, 130, 246, 0.07) !important;
  color: rgba(96, 165, 250, 0.75) !important;
  border: 1px solid rgba(59, 130, 246, 0.1) !important;
}
[data-theme="light"] .sourcing-ticker-container .ticker-badge {
  background: rgba(37, 99, 235, 0.05) !important;
  color: rgba(37, 99, 235, 0.7) !important;
  border-color: rgba(37, 99, 235, 0.08) !important;
}

/* Savings pill — plain color, no background */
.sourcing-ticker-container .ticker-saving {
  color: rgba(16, 185, 129, 0.8) !important;
  font-weight: 600 !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

/* Separator arrow — muted */
.sourcing-ticker-container .ticker-arrow {
  color: rgba(255, 255, 255, 0.18) !important;
  font-size: 0.68rem !important;
}
[data-theme="light"] .sourcing-ticker-container .ticker-arrow {
  color: rgba(9, 9, 11, 0.18) !important;
}

/* B2B Metrics row — Linear-style spacious grid */
.metrics-container {
  padding: 30px 60px !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}
[data-theme="light"] .metrics-container {
  border-color: rgba(9, 9, 11, 0.05) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.metric-card {
  gap: 5px !important;
}

.metric-number {
  font-size: 2.25rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.05em !important;
  font-variant-numeric: tabular-nums !important;
}

.metric-label {
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  color: var(--muted) !important;
}

.metric-divider {
  width: 1px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.05) !important;
}
[data-theme="light"] .metric-divider {
  background: rgba(9, 9, 11, 0.05) !important;
}

/* ══════════════════════════════════════════════════════
   SECTION POLISH — Section 3: Calculator Sliders
   ══════════════════════════════════════════════════════ */

/* WebKit — crisp 16px thumb, subtle shadow ring */
.calculator-slider::-webkit-slider-thumb {
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1.5px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16) !important;
  cursor: pointer !important;
  transition: box-shadow 0.15s ease !important;
  -webkit-appearance: none !important;
}
.calculator-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.16), 0 0 0 4px rgba(59, 130, 246, 0.14) !important;
}
.calculator-slider::-webkit-slider-runnable-track {
  height: 4px !important;
  border-radius: 99px !important;
  background: transparent !important;
}
[data-theme="light"] .calculator-slider::-webkit-slider-runnable-track {
  background: transparent !important;
}

/* Minimal slider */
.minimal-slider::-webkit-slider-thumb {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: var(--accent) !important;
  border: none !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15) !important;
  cursor: pointer !important;
  -webkit-appearance: none !important;
  transition: box-shadow 0.15s ease !important;
}
.minimal-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 5px rgba(59, 130, 246, 0.2) !important;
}
.minimal-slider::-webkit-slider-runnable-track {
  height: 3px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-radius: 99px !important;
}

/* ══════════════════════════════════════════════════════
   SECTION POLISH — Section 5: Pricing Cards
   ══════════════════════════════════════════════════════ */

/* Pricing card hover — subtle 2px lift, no bounce */
.pricing-card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}
.pricing-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(255, 255, 255, 0.07) !important;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18) !important;
}
[data-theme="light"] .pricing-card:hover {
  border-color: rgba(9, 9, 11, 0.08) !important;
  box-shadow: 0 10px 28px rgba(9, 9, 11, 0.04) !important;
}

/* Featured card — single hairline top border glow, no noise */
.pricing-card.featured {
  border-color: rgba(59, 130, 246, 0.15) !important;
  border-top-color: rgba(59, 130, 246, 0.32) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18) !important;
}
.pricing-card.featured:hover {
  border-color: rgba(59, 130, 246, 0.24) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22) !important;
}

/* Featured badge — solid blue, minimal */
.featured-badge {
  background: #3b82f6 !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.1em !important;
  padding: 3px 10px !important;
  box-shadow: none !important;
}

/* Feature list — thin separator lines between items */
.pricing-card-features ul {
  gap: 0 !important;
}
.pricing-card-features li {
  font-size: 0.77rem !important;
  color: rgba(255, 255, 255, 0.62) !important;
  padding: 9px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  gap: 9px !important;
}
.pricing-card-features li:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
[data-theme="light"] .pricing-card-features li {
  color: rgba(9, 9, 11, 0.62) !important;
  border-bottom-color: rgba(9, 9, 11, 0.04) !important;
}
.pricing-card-features li.disabled {
  opacity: 0.22 !important;
  border-bottom-color: transparent !important;
}

/* Check icon — muted green, no glow */
.check-icon {
  color: rgba(16, 185, 129, 0.75) !important;
  width: 10px !important;
  height: 10px !important;
  margin-top: 2px !important;
  flex-shrink: 0 !important;
}
[data-theme="light"] .check-icon {
  color: rgba(5, 150, 105, 0.75) !important;
}

/* Plan price — tighter tracking */
.plan-price {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.05em !important;
}

/* ══════════════════════════════════════════════════════
   GLOBAL — Remove remaining cheap bounce/scale effects
   ══════════════════════════════════════════════════════ */

/* Cards — universal subtle hover lift */
.card:hover,
.feature-card:hover,
.bento-card:hover,
.integration-card:hover {
  transform: translateY(-1px) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
}

/* Suppress any scale(1.X) on hover across the board */
*:hover {
  transform: var(--hover-transform, none) !important;
}
.pricing-card:hover { --hover-transform: translateY(-2px) !important; }
.metric-card:hover  { --hover-transform: none !important; }


/* ── Bento Card 1 (AI Image Scanner) Luxury Refinements ── */
.bento-card-tag-dot {
  width: 5px !important;
  height: 5px !important;
  background-color: #60a5fa !important;
  border-radius: 50% !important;
  display: inline-block !important;
  animation: bentoDotBlink 2s infinite ease-in-out !important;
}

@keyframes bentoDotBlink {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 6px #60a5fa; }
}

.bento-card--scanner .bento-card-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: var(--font-mono, monospace) !important;
  padding: 4px 10px !important;
  font-size: 10px !important;
  background: rgba(96, 165, 250, 0.06) !important;
  border: 1px solid rgba(96, 165, 250, 0.15) !important;
  color: #60a5fa !important;
}

.bento-card--scanner .bento-card-title {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  background: linear-gradient(135deg, #ffffff 40%, rgba(255, 255, 255, 0.65) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-top: 14px !important;
  margin-bottom: 12px !important;
}

.bento-card--scanner .bento-card-desc {
  max-width: 540px !important;
  font-size: 0.825rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  letter-spacing: 0.01em !important;
}

/* Glass panel scanner box wrapper */
.vision-scan-box {
  background: rgba(255, 255, 255, 0.012) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-top-color: rgba(255, 255, 255, 0.07) !important;
  border-radius: 12px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 8px 32px rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: border-color 0.3s ease, background 0.3s ease !important;
}

.bento-card:hover .vision-scan-box {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(96, 165, 250, 0.2) !important;
}

/* Node cards refinement */
.matched-sourcing-nodes .node-card {
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-top-color: rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: all 0.3s ease !important;
}

.bento-card:hover .node-card {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.matched-sourcing-nodes .node-card:hover {
  background: rgba(255, 255, 255, 0.035) !important;
  border-color: rgba(96, 165, 250, 0.2) !important;
  transform: translateY(-2px) !important;
}

.matched-sourcing-nodes .node-card .price-match {
  font-family: var(--font-mono, monospace) !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  letter-spacing: -0.02em !important;
}

.matched-sourcing-nodes .node-card .price-match .usd-price {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  margin-left: 4px !important;
}

.matched-sourcing-nodes .node-card .badge-source {
  background: rgba(96, 165, 250, 0.08) !important;
  border: 1px solid rgba(96, 165, 250, 0.16) !important;
  color: #60a5fa !important;
  font-size: 9px !important;
  font-family: var(--font-mono, monospace) !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
}

.matched-sourcing-nodes .node-card .node-rating {
  color: #fbbf24 !important;
  font-family: var(--font-mono, monospace) !important;
  font-weight: 600 !important;
  font-size: 10px !important;
  margin-left: auto !important;
}

.node-card-title-row {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}


/* ── Bento Grid General Tag Dot blink ── */
.bento-card-tag-dot {
  width: 5px !important;
  height: 5px !important;
  background-color: #60a5fa !important;
  border-radius: 50% !important;
  display: inline-block !important;
  animation: bentoDotBlink 2s infinite ease-in-out !important;
}

.bento-card-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-family: var(--font-mono, monospace) !important;
  padding: 4px 10px !important;
  font-size: 10px !important;
  background: rgba(96, 165, 250, 0.06) !important;
  border: 1px solid rgba(96, 165, 250, 0.15) !important;
  color: #60a5fa !important;
  border-radius: 100px !important;
}

.bento-card-title {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
  background: linear-gradient(135deg, #ffffff 40%, rgba(255, 255, 255, 0.65) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-top: 14px !important;
  margin-bottom: 12px !important;
}

.bento-card-desc {
  max-width: 540px !important;
  font-size: 0.825rem !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  letter-spacing: 0.01em !important;
}

/* ── Bento Card 2 (DDP Shipping Estimator) Premium Styling ── */
.abstract-shipping-card {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-top-color: rgba(255, 255, 255, 0.07) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 12px 48px rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

/* CN/US routing nodes */
.route-node {
  width: 36px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-top-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-family: var(--font-mono, monospace) !important;
  font-weight: 600 !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 2 !important;
}

.point-cn {
  border-color: rgba(96, 165, 250, 0.25) !important;
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.12), inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

.point-dest-glow {
  border-color: rgba(96, 165, 250, 0.35) !important;
  box-shadow: 0 0 16px rgba(96, 165, 250, 0.16), inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

.route-arc-svg {
  left: 36px !important;
  right: 36px !important;
  width: calc(100% - 72px) !important;
}

/* Country Selector select drop down */
.minimal-select-wrap select {
  width: 100% !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-top-color: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  padding: 11px 14px !important;
  padding-right: 36px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  outline: none !important;
  cursor: pointer !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.01), 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

.minimal-select-wrap select:focus {
  border-color: rgba(96, 165, 250, 0.4) !important;
  background: rgba(255, 255, 255, 0.025) !important;
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.02) !important;
}

.minimal-select-wrap::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>") !important;
  opacity: 0.55 !important;
  right: 14px !important;
  width: 12px !important;
  height: 12px !important;
}

/* Slider Design Refinements */
.minimal-slider {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  height: 20px !important;
  background: transparent !important;
  outline: none !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer !important;
}

/* Style the track for Webkit */
.minimal-slider::-webkit-slider-runnable-track {
  width: 100% !important;
  height: 2px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 99px !important;
  border: none !important;
}

/* Style the track for Firefox */
.minimal-slider::-moz-range-track {
  width: 100% !important;
  height: 2px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 99px !important;
  border: none !important;
}

/* Style the thumb for Webkit */
.minimal-slider::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 2px solid #60a5fa !important;
  box-shadow: 0 0 8px rgba(96, 165, 250, 0.6) !important;
  margin-top: -5px !important; /* Centering math: (2px track / 2) - (12px thumb / 2) = -5px */
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s ease !important;
}

/* Style the thumb for Firefox */
.minimal-slider::-moz-range-thumb {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 2px solid #60a5fa !important;
  box-shadow: 0 0 8px rgba(96, 165, 250, 0.6) !important;
  box-sizing: border-box !important;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.15s ease !important;
}

.minimal-slider::-webkit-slider-thumb:hover {
  transform: scale(1.3) !important;
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.8) !important;
}

.minimal-slider::-moz-range-thumb:hover {
  transform: scale(1.3) !important;
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.8) !important;
}

/* Label details */
.selector-field-compact label,
.slider-val-row {
  font-size: 11px !important;
  font-family: var(--font-mono, monospace) !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
}

.glowing-value {
  color: #60a5fa !important;
  font-weight: 600 !important;
}

/* Shipping select row spacing */
.shipping-selectors-row {
  gap: 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035) !important;
  padding-bottom: 18px !important;
  margin-bottom: 18px !important;
}

/* Shipping list items cards */
.price-row-item {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  border-top-color: rgba(255, 255, 255, 0.05) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  margin-bottom: 8px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}

.price-row-item:last-child {
  margin-bottom: 0 !important;
}

.price-row-item:hover {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(96, 165, 250, 0.15) !important;
  transform: translateY(-1px) !important;
}

.carrier-icon-wrap {
  width: 32px !important;
  height: 32px !important;
  background: rgba(96, 165, 250, 0.06) !important;
  border: 1px solid rgba(96, 165, 250, 0.12) !important;
  color: #60a5fa !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
}

.price-row-item:hover .carrier-icon-wrap {
  background: rgba(96, 165, 250, 0.1) !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
  box-shadow: 0 0 8px rgba(96, 165, 250, 0.2) !important;
}

.label-desc {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
}

.label-sub {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-top: 2px !important;
}

.value-price {
  font-size: 14px !important;
  font-family: var(--font-mono, monospace) !important;
  font-weight: 600 !important;
  color: #60a5fa !important;
  letter-spacing: -0.01em !important;
}

.abstract-margin-card {
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-top-color: rgba(255, 255, 255, 0.07) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 12px 48px rgba(0, 0, 0, 0.2) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}
/* ── Bento Grid Abstract Analytics Refinements ── */
.carrier-right-meta {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 4px !important;
}

.dot-indicator {
  width: 4px !important;
  height: 4px !important;
  border-radius: 50% !important;
  display: inline-block !important;
  margin-right: 5px !important;
}

.dot-indicator.green {
  background: #10b981 !important;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6) !important;
}

.carrier-badge {
  font-size: 8px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  padding: 3px 6px !important;
  border-radius: 4px !important;
  font-family: var(--font-mono, monospace) !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
}

.carrier-badge.priority {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

.carrier-badge.standard {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.carrier-cost-label {
  font-size: 9px !important;
  font-family: var(--font-mono, monospace) !important;
  color: rgba(255, 255, 255, 0.3) !important;
  font-weight: 500 !important;
  margin-top: 2px !important;
}
/* Segmented progress bar chart */
.margin-split-bar-container {
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-top-color: rgba(255, 255, 255, 0.06) !important;
  border-radius: 10px !important;
  padding: 4px !important;
  margin-top: 24px !important;
  margin-bottom: 16px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.01) !important;
}

.split-bar-segments {
  display: flex !important;
  width: 100% !important;
  height: 28px !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}

.split-bar-segments .segment {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  height: 100% !important;
  font-size: 9px !important;
  font-family: var(--font-mono, monospace) !important;
  font-weight: 600 !important;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  line-height: 1.15 !important;
}

.segment-label {
  opacity: 0.52 !important;
  font-size: 8px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 1px !important;
  transition: opacity 0.25s ease-in-out !important;
  white-space: nowrap !important;
}

.segment-value {
  font-size: 10px !important;
  font-weight: 700 !important;
  transition: opacity 0.25s ease-in-out !important;
  white-space: nowrap !important;
}

.split-bar-segments .segment.segment--narrow .segment-label,
.split-bar-segments .segment.segment--narrow .segment-value {
  opacity: 0 !important;
  pointer-events: none !important;
}

.segment-cost {
  background: rgba(148, 163, 184, 0.12) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.03) !important;
  color: #94a3b8 !important;
}

.segment-freight {
  background: rgba(129, 140, 248, 0.12) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.03) !important;
  color: #a5b4fc !important;
}

.segment-profit {
  background: rgba(16, 185, 129, 0.12) !important;
  color: #34d399 !important;
}

/* Multiplier badge row */
.multiplier-badge-row {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: rgba(96, 165, 250, 0.02) !important;
  border: 1px solid rgba(96, 165, 250, 0.07) !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
}

.multiplier-label {
  font-size: 11px !important;
  font-family: var(--font-mono, monospace) !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

.multiplier-value {
  font-size: 12px !important;
  font-family: var(--font-mono, monospace) !important;
  font-weight: 700 !important;
  color: #60a5fa !important;
  text-shadow: 0 0 8px rgba(96, 165, 250, 0.2) !important;
}

/* Selectors stack layout */
.shipping-selectors-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.035) !important;
  padding-bottom: 16px !important;
  margin-bottom: 16px !important;
}

.dim-weight-comparison-row {
  display: flex !important;
  justify-content: space-between !important;
  background: rgba(255, 255, 255, 0.01) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  margin-bottom: 18px !important;
}

.dim-metric {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.dim-metric.highlight .dim-val {
  color: #60a5fa !important;
  text-shadow: 0 0 8px rgba(96, 165, 250, 0.2) !important;
}

.dim-label {
  font-size: 10px !important;
  font-family: var(--font-mono, monospace) !important;
  color: rgba(255, 255, 255, 0.35) !important;
}

.dim-val {
  font-size: 13px !important;
  font-family: var(--font-mono, monospace) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

/* Dimensions Grid styles */
.dimensions-inputs-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 8px !important;
}

.dim-input-field {
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  border-radius: 6px !important;
  padding: 6px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 2px !important;
}

.dim-input-label {
  font-size: 8px !important;
  color: rgba(255, 255, 255, 0.3) !important;
  font-weight: 500 !important;
  font-family: var(--font-mono, monospace) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
}

.dim-input-val {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  font-family: var(--font-mono, monospace) !important;
}

.micro-dim-slider {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 100% !important;
  height: 4px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border-radius: 2px !important;
  outline: none !important;
  margin-top: 4px !important;
  margin-bottom: 2px !important;
}

.micro-dim-slider::-webkit-slider-runnable-track {
  height: 4px !important;
  background: transparent !important;
}

.micro-dim-slider::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  cursor: pointer !important;
  transition: transform 0.15s ease !important;
  margin-top: -2px !important;
}

.micro-dim-slider::-webkit-slider-thumb:hover {
  transform: scale(1.3) !important;
  background: #60a5fa !important;
  box-shadow: 0 0 6px rgba(96, 165, 250, 0.6) !important;
}

.micro-dim-slider::-moz-range-thumb {
  width: 8px !important;
  height: 8px !important;
  border: none !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  cursor: pointer !important;
  transition: transform 0.15s ease !important;
}

.micro-dim-slider::-moz-range-thumb:hover {
  transform: scale(1.3) !important;
  background: #60a5fa !important;
  box-shadow: 0 0 6px rgba(96, 165, 250, 0.6) !important;
}

/* Scanner modes overlays and tab styling */
.scanner-mode-tabs {
  position: absolute !important;
  top: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  background: rgba(10, 10, 11, 0.75) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  padding: 2px !important;
  gap: 2px !important;
  z-index: 20 !important;
  width: max-content !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45) !important;
}

.scanner-tab {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  border-radius: 18px !important;
  padding: 4px 9px !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 8.5px !important;
  font-weight: 500 !important;
  font-family: var(--font-sans), system-ui !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
}

.scanner-tab:hover {
  color: rgba(255, 255, 255, 0.85) !important;
}

.scanner-tab.active {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2) !important;
}

.scanner-tab .tab-icon {
  opacity: 0.7 !important;
  stroke-width: 2.2px !important;
}

/* Crop Overlay */
.scanner-crop-overlay {
  position: absolute !important;
  top: 22% !important;
  left: 22% !important;
  width: 56% !important;
  height: 56% !important;
  border: 1px dashed rgba(96, 165, 250, 0.45) !important;
  opacity: 0 !important;
  transition: opacity 0.25s ease !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

.product-image-box.mode-crop .scanner-crop-overlay {
  opacity: 1 !important;
}

.crop-corner {
  position: absolute !important;
  width: 8px !important;
  height: 8px !important;
  border: 2px solid #60a5fa !important;
}

.crop-corner.top-left { top: -2px !important; left: -2px !important; border-right: none !important; border-bottom: none !important; }
.crop-corner.top-right { top: -2px !important; right: -2px !important; border-left: none !important; border-bottom: none !important; }
.crop-corner.bottom-left { bottom: -2px !important; left: -2px !important; border-right: none !important; border-top: none !important; }
.crop-corner.bottom-right { bottom: -2px !important; right: -2px !important; border-left: none !important; border-top: none !important; }

/* Upload Overlay */
.scanner-upload-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(10, 10, 11, 0.82) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px !important;
  opacity: 0 !important;
  transition: opacity 0.25s ease !important;
  z-index: 6 !important;
  pointer-events: none !important;
}

.product-image-box.mode-upload .scanner-upload-overlay {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.upload-dashed-border {
  width: 100% !important;
  height: 100% !important;
  border: 1px dashed rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: rgba(255, 255, 255, 0.005) !important;
  transition: border-color 0.2s ease, background-color 0.2s ease !important;
}

.upload-dashed-border:hover {
  border-color: rgba(96, 165, 250, 0.35) !important;
  background: rgba(96, 165, 250, 0.015) !important;
}

.upload-icon {
  color: rgba(255, 255, 255, 0.25) !important;
}

.upload-text {
  font-size: 7.5px !important;
  font-family: var(--font-mono, monospace) !important;
  letter-spacing: 0.05em !important;
  color: rgba(255, 255, 255, 0.4) !important;
}

/* Bento scanner container tabs and mode overlay states */
.scanner-wrapper {
  position: relative !important;
  width: 110px !important;
  height: 110px !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.bento-scanner-tabs {
  position: absolute !important;
  bottom: calc(100% + 12px) !important; /* Positions exactly 12px above the scanner box */
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  background: rgba(10, 10, 11, 0.6) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  padding: 3px !important;
  gap: 2px !important;
  z-index: 20 !important;
  width: max-content !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

.bento-scanner-tab {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  border-radius: 16px !important;
  padding: 4px 9px !important; /* Increased padding */
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 10px !important; /* Highly readable font size */
  font-weight: 500 !important;
  font-family: var(--font-sans), system-ui !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  white-space: nowrap !important;
}

.bento-scanner-tab:hover {
  color: rgba(255, 255, 255, 0.85) !important;
}

.bento-scanner-tab.active {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
}

/* Connect mode classes on .vision-scan-box to show/hide bento overlays */
.vision-scan-box.mode-crop .scanner-crop-overlay {
  opacity: 1 !important;
}

.vision-scan-box.mode-upload .scanner-upload-overlay {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* Expansive 2x2 grid layout for sourcing results in Bento Card 1 */
/* Expansive vertical top-to-bottom layout for sourcing results in Bento Card 1 */
.abstract-scanner-container {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  height: auto !important; /* Dynamic height based on child contents */
  padding: 8px 0 !important;
  box-sizing: border-box !important;
  gap: 0px !important;
}

.matched-sourcing-nodes {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important; /* 3-Column Grid */
  gap: 12px !important;
  width: 100% !important;
  max-height: 154px !important; /* Cap height to cut off second row slightly for fade mask */
  overflow: hidden !important;
  position: relative !important;
  
  /* Mask gradient to fade out bottom row of results */
  mask-image: linear-gradient(to bottom, black 45%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 100%) !important;
}

.node-card {
  padding: 12px 14px !important; /* Spacious padding */
  gap: 12px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.node-card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(96, 165, 250, 0.3) !important;
  box-shadow: 0 12px 30px rgba(96, 165, 250, 0.1) !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

.node-card-thumb {
  width: 32px !important;
  height: 32px !important;
  flex-shrink: 0 !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.node-card-thumb svg {
  width: 100% !important;
  height: 100% !important;
}

.price-match {
  font-size: 0.85rem !important; /* Highly readable prices */
  font-weight: 700 !important;
  color: #ffffff !important;
}

.price-match .usd-price {
  font-size: 0.65rem !important;
  font-weight: 400 !important;
  opacity: 0.6 !important;
  display: block !important;
  margin-top: 1px !important;
}

.badge-source {
  font-size: 0.58rem !important;
  padding: 2px 6px !important;
  background: rgba(96, 165, 250, 0.1) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(96, 165, 250, 0.2) !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
}

.node-rating {
  font-size: 0.65rem !important;
  color: #fbbf24 !important;
  font-weight: 600 !important;
  margin-left: auto !important;
}

/* Vertical Connection lines */
.abstract-connection-lines {
  width: 220px !important; /* Branches across the columns horizontally */
  height: 40px !important;  /* Short vertical height */
  margin: 6px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.abstract-connection-lines svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

/* Matched Sourcing Nodes Wrapper & Header Styling */
.matched-sourcing-nodes-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

.results-header-bento {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0 4px !important;
  margin-bottom: 2px !important;
}

.results-title-bento {
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

.results-count-bento {
  font-size: 0.6rem !important;
  color: #60a5fa !important;
  background: rgba(96, 165, 250, 0.08) !important;
  padding: 2px 6px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  border: 1px solid rgba(96, 165, 250, 0.15) !important;
}

/* More results scroll indicator */
.more-results-indicator {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  margin-top: 4px !important;
  padding: 8px 16px !important;
  background: rgba(96, 165, 250, 0.03) !important;
  border: 1px dashed rgba(96, 165, 250, 0.12) !important;
  border-radius: 12px !important;
  color: #60a5fa !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.more-results-indicator:hover {
  background: rgba(96, 165, 250, 0.06) !important;
  border-color: rgba(96, 165, 250, 0.25) !important;
  box-shadow: 0 0 16px rgba(96, 165, 250, 0.08) !important;
}

.indicator-arrow {
  animation: float-arrow-bento 1.5s infinite ease-in-out !important;
  transition: transform 0.2s ease !important;
}

.more-results-indicator:hover .indicator-arrow {
  transform: translateY(2px) !important;
}

@keyframes float-arrow-bento {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* ==========================================
   48. FUTURISTIC CALCULATOR & SLIDER REFINEMENTS
   ========================================== */

/* Layout and grid settings - Lower stacked breakpoint to 768px */
@media (min-width: 769px) {
  .calculator-grid {
    display: grid !important;
    grid-template-columns: 1.25fr 1fr !important;
    gap: 36px !important;
  }
}

@media (max-width: 768px) {
  .calculator-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .savings-calculator-card {
    padding: 32px 20px !important;
  }
}

/* Glassmorphism Slider Group Cards */
.slider-group {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 16px !important;
  padding: 22px 26px !important;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.01),
    0 4px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .slider-group {
  background: rgba(0, 0, 0, 0.01) !important;
  border-color: rgba(9, 9, 11, 0.04) !important;
  box-shadow: 0 4px 12px rgba(9, 9, 11, 0.02) !important;
}

.slider-group:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(59, 130, 246, 0.25) !important;
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 8px 32px rgba(59, 130, 246, 0.06) !important;
  transform: translateY(-2px) !important;
}

[data-theme="light"] .slider-group:hover {
  background: rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(59, 130, 246, 0.15) !important;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.04) !important;
}

/* Premium Value Badges */
.slider-value-badge {
  background: rgba(59, 130, 246, 0.08) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(59, 130, 246, 0.2) !important;
  font-weight: 700 !important;
  padding: 5px 12px !important;
  border-radius: 99px !important;
  font-family: var(--font-sans) !important;
  font-size: 0.8rem !important;
  letter-spacing: -0.01em !important;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.1) !important;
  transition: all 0.25s ease !important;
}

[data-theme="light"] .slider-value-badge {
  background: rgba(59, 130, 246, 0.06) !important;
  color: #2563eb !important;
  border-color: rgba(59, 130, 246, 0.15) !important;
  box-shadow: none !important;
}

/* Interactive Sliders */
.calculator-slider {
  height: 5px !important;
  border-radius: 99px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  cursor: pointer !important;
  outline: none !important;
  margin: 14px 0 8px 0 !important;
}

[data-theme="light"] .calculator-slider {
  background: rgba(9, 9, 11, 0.08) !important;
}

/* Glowing Slider Thumbs */
.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 2px solid #3b82f6 !important;
  box-shadow: 
    0 0 8px rgba(59, 130, 246, 0.4),
    0 2px 4px rgba(0, 0, 0, 0.25) !important;
  cursor: grab !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease !important;
}

.calculator-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15) !important;
  box-shadow: 
    0 0 12px rgba(59, 130, 246, 0.7),
    0 3px 6px rgba(0, 0, 0, 0.3) !important;
}

.calculator-slider::-webkit-slider-thumb:active {
  cursor: grabbing !important;
  transform: scale(1.1) !important;
  border-color: #60a5fa !important;
}

/* Stat Cards (Right Column) Glassmorphic Redesign */
.savings-stats-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.savings-stat-card {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 18px !important;
  padding: 20px 24px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .savings-stat-card {
  background: rgba(0, 0, 0, 0.01) !important;
  border-color: rgba(9, 9, 11, 0.04) !important;
  box-shadow: 0 4px 12px rgba(9, 9, 11, 0.02) !important;
}

.savings-stat-card:hover {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2) !important;
}

/* Glowing Highlight Card for Monthly Savings */
.savings-stat-card.highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(16, 185, 129, 0.05)) !important;
  border: 1px solid rgba(59, 130, 246, 0.25) !important;
  box-shadow: 
    0 0 24px rgba(59, 130, 246, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  position: relative !important;
  overflow: hidden !important;
}

[data-theme="light"] .savings-stat-card.highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), rgba(16, 185, 129, 0.03)) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
  box-shadow: none !important;
}

.savings-stat-card.highlight:hover {
  border-color: rgba(59, 130, 246, 0.4) !important;
  box-shadow: 
    0 0 32px rgba(59, 130, 246, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.25) !important;
}

.savings-stat-number {
  font-family: var(--font-sans) !important;
  font-size: 2.15rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  transition: transform 0.2s ease !important;
}

@media (max-width: 1024px) {
  .savings-stat-number {
    font-size: 1.85rem !important;
  }
}

.savings-stat-card.highlight .savings-stat-number {
  color: #10b981 !important; /* Emerald color for savings */
  text-shadow: 0 0 12px rgba(16, 185, 129, 0.25) !important;
}

[data-theme="light"] .savings-stat-card.highlight .savings-stat-number {
  color: #059669 !important;
  text-shadow: none !important;
}

/* ==========================================
   Bento Grid Premium Visual Overhaul
   ========================================== */

.scanner-product-image {
  position: absolute !important;
  inset: 0 !important;
  border-radius: 15px !important;
  background: url('../magsafe-stand.jpg') no-repeat center !important;
  background-size: cover !important;
  opacity: 0.82 !important;
  z-index: 0 !important;
  filter: contrast(1.05) brightness(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.vision-scan-box:hover .scanner-product-image {
  transform: scale(1.06) !important;
}

/* Supplier nodes styling */
.node-card {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 14px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .node-card {
  background: rgba(255, 255, 255, 0.75) !important;
  border-color: rgba(0, 0, 0, 0.04) !important;
}

.node-card:hover {
  transform: translateY(-2px) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(59, 130, 246, 0.25) !important;
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.08) !important;
}

[data-theme="light"] .node-card:hover {
  background: #ffffff !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03) !important;
}

.node-card-thumb {
  width: 34px !important;
  height: 34px !important;
  border-radius: 8px !important;
  background-size: cover !important;
  background-position: center !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  flex-shrink: 0 !important;
  transition: transform 0.25s ease !important;
}

[data-theme="light"] .node-card-thumb {
  border-color: rgba(0, 0, 0, 0.06) !important;
}

.node-card:hover .node-card-thumb {
  transform: scale(1.05) !important;
}

/* Colored product variants simulated via CSS filters */
.t-magsafe {
  background-image: url('../magsafe-stand.jpg') !important;
}
.t-magsafe-blue {
  background-image: url('../magsafe-stand.jpg') !important;
  filter: hue-rotate(190deg) saturate(1.3) brightness(0.9) !important;
}
.t-magsafe-green {
  background-image: url('../magsafe-stand.jpg') !important;
  filter: hue-rotate(95deg) saturate(1.1) brightness(0.9) !important;
}
.t-magsafe-purple {
  background-image: url('../magsafe-stand.jpg') !important;
  filter: hue-rotate(240deg) saturate(1.25) brightness(0.9) !important;
}
.t-magsafe-pink {
  background-image: url('../magsafe-stand.jpg') !important;
  filter: hue-rotate(300deg) saturate(1.35) brightness(0.92) !important;
}
.t-magsafe-gold {
  background-image: url('../magsafe-stand.jpg') !important;
  filter: sepia(0.5) hue-rotate(-15deg) saturate(1.7) brightness(0.92) !important;
}

.node-supplier-name {
  display: block !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}

[data-theme="light"] .node-supplier-name {
  color: rgba(0, 0, 0, 0.5) !important;
}

/* Card 4 shortlist items thumb */
.item-thumb {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.01) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .item-thumb {
  border-color: rgba(9, 9, 11, 0.05) !important;
  background: rgba(9, 9, 11, 0.02) !important;
}



/* ==========================================================================
   Bento Card 1: Side-by-Side Sourcing Dashboard Overhaul Styling
   ========================================================================== */

/* Abstract Sourcing Container Split Layout */
.abstract-scanner-container {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 24px !important;
  margin-top: 16px !important;
}

/* Left Pane: Switcher and Vision Frame */
.scanner-left-pane {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 16px !important;
  flex: 1 1 0% !important;
  width: 100% !important;
}

.scanner-left-pane .bento-scanner-tabs {
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  margin-bottom: 4px !important;
  width: 100% !important;
  max-width: 300px !important;
  display: flex !important;
  background: rgba(15, 15, 20, 0.65) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 10px !important;
  padding: 3px !important;
  gap: 4px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

[data-theme="light"] .scanner-left-pane .bento-scanner-tabs {
  background: rgba(240, 240, 245, 0.8) !important;
  border-color: rgba(9, 9, 11, 0.06) !important;
  box-shadow: 0 4px 12px rgba(9, 9, 11, 0.03) !important;
}

.scanner-left-pane .bento-scanner-tab {
  flex: 1 !important;
  justify-content: center !important;
  padding: 5px 8px !important;
  font-size: 10px !important;
  border-radius: 7px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .scanner-left-pane .bento-scanner-tab {
  color: rgba(9, 9, 11, 0.5) !important;
}

.scanner-left-pane .bento-scanner-tab.active {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) !important;
}

[data-theme="light"] .scanner-left-pane .bento-scanner-tab.active {
  background: #ffffff !important;
  color: #09090b !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
}

/* Enlarged Scan Box Frame as Mock Browser Window */
.scanner-left-pane .vision-scan-box {
  width: 180px !important;
  height: 180px !important;
  border-radius: 12px !important;
  background: #0d0d11 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  overflow: hidden !important;
  position: relative !important;
  padding-top: 24px !important; /* Space for browser header */
}

[data-theme="light"] .scanner-left-pane .vision-scan-box {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 20px 40px rgba(9, 9, 11, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* Mock Browser Header inside Scan Box */
.mock-browser-header {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 24px !important;
  background: rgba(18, 18, 24, 0.9) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 10px !important;
  z-index: 10 !important;
}

[data-theme="light"] .mock-browser-header {
  background: rgba(244, 244, 245, 0.95) !important;
  border-color: rgba(9, 9, 11, 0.06) !important;
}

.mock-browser-dots {
  display: flex !important;
  gap: 4px !important;
}

.mock-browser-dots .dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="light"] .mock-browser-dots .dot {
  background: rgba(9, 9, 11, 0.2) !important;
}

.mock-browser-url {
  font-size: 8px !important;
  font-family: var(--font-mono), SFMono-Regular, monospace !important;
  color: rgba(255, 255, 255, 0.35) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  padding: 2px 10px !important;
  border-radius: 99px !important;
  margin-left: 8px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  max-width: 95px !important;
}

[data-theme="light"] .mock-browser-url {
  color: rgba(9, 9, 11, 0.45) !important;
  background: rgba(9, 9, 11, 0.05) !important;
}

.scanner-left-pane .scanner-product-image {
  position: absolute !important;
  top: 24px !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-image: url('../magsafe-stand.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 1 !important;
}

.vision-scan-box.mode-crop .scanner-product-image {
  transform: scale(1.1) !important;
}

/* Premium Figma-style Crop Overlay */
.vision-scan-box .scanner-crop-overlay {
  position: absolute !important;
  top: 31.6% !important;
  left: 15% !important;
  width: 70% !important;
  height: 50% !important;
  border: 1px dashed rgba(59, 130, 246, 0.8) !important;
  box-shadow: 0 0 0 9999px rgba(8, 8, 14, 0.55) !important; /* Dims area outside crop */
  opacity: 0 !important;
  transition: opacity 0.25s ease !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

[data-theme="light"] .vision-scan-box .scanner-crop-overlay {
  box-shadow: 0 0 0 9999px rgba(255, 255, 255, 0.55) !important;
  border-color: rgba(59, 130, 246, 0.9) !important;
}

.crop-corner {
  position: absolute !important;
  width: 12px !important;
  height: 12px !important;
  border: 2px solid #3b82f6 !important;
}

.crop-corner.top-left { top: -2px !important; left: -2px !important; border-right: none !important; border-bottom: none !important; }
.crop-corner.top-right { top: -2px !important; right: -2px !important; border-left: none !important; border-bottom: none !important; }
.crop-corner.bottom-left { bottom: -2px !important; left: -2px !important; border-right: none !important; border-top: none !important; }
.crop-corner.bottom-right { bottom: -2px !important; right: -2px !important; border-left: none !important; border-top: none !important; }

/* Hide mid-handles for cleaner look */
.crop-handle {
  display: none !important;
}

/* Upload Overlay */
.scanner-upload-overlay {
  background: rgba(13, 13, 17, 0.88) !important;
}

[data-theme="light"] .scanner-upload-overlay {
  background: rgba(255, 255, 255, 0.9) !important;
}

/* Results Feed Panel */
.matched-sourcing-nodes-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  flex: 1.3 1 0% !important;
  width: 100% !important;
}

.results-header-bento {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  padding-bottom: 8px !important;
  margin-bottom: 2px !important;
}

[data-theme="light"] .results-header-bento {
  border-color: rgba(9, 9, 11, 0.06) !important;
}

.search-icon-center {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: var(--accent) !important;
  border: none !important;
  box-shadow: 0 0 10px var(--accent) !important;
  z-index: 3 !important;
  animation: radarIconPulse 1.8s infinite ease-in-out alternate !important;
}

[data-theme="light"] .search-icon-center {
  background: #2563eb !important;
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.5) !important;
}

@keyframes radarIconPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 0 14px var(--accent);
  }
}

.results-title-bento {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: rgba(255, 255, 255, 0.45) !important;
}

[data-theme="light"] .results-title-bento {
  color: rgba(9, 9, 11, 0.45) !important;
}

.results-count-bento {
  font-size: 9px !important;
  font-weight: 700 !important;
  color: #10b981 !important; /* Active Emerald color */
  background: rgba(16, 185, 129, 0.08) !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
  padding: 2.5px 8px !important;
  border-radius: 99px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
}

/* Glassmorphism Supplier Nodes List */
.matched-sourcing-nodes {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  max-height: none !important;
  overflow: visible !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.matched-sourcing-nodes .node-card {
  display: flex !important;
  align-items: center !important;
  padding: 10px 14px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.005) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-top-color: rgba(255, 255, 255, 0.07) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.02) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  box-sizing: border-box !important;
  gap: 12px !important;
}

[data-theme="light"] .matched-sourcing-nodes .node-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%) !important;
  border-color: rgba(0, 0, 0, 0.05) !important;
  border-top-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

/* Glossy highlight sweep effect on hover */
.matched-sourcing-nodes .node-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -150% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent) !important;
  transition: none !important;
  pointer-events: none !important;
}

[data-theme="light"] .matched-sourcing-nodes .node-card::before {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent) !important;
}

.matched-sourcing-nodes .node-card:hover::before {
  left: 150% !important;
  transition: all 0.8s ease-in-out !important;
}

.matched-sourcing-nodes .node-card:hover {
  transform: translateY(-2px) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
  border-color: rgba(59, 130, 246, 0.25) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 0 1px 1px rgba(59, 130, 246, 0.1) !important;
}

[data-theme="light"] .matched-sourcing-nodes .node-card:hover {
  background: #ffffff !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.06), 0 0 1px 1px rgba(59, 130, 246, 0.05) !important;
}

/* Card layout details */
.node-card-meta {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  flex: 1 !important;
  min-width: 0 !important;
}

.node-card-title-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 8px !important;
}

.badge-source {
  font-size: 8.5px !important;
  padding: 2px 6px !important;
  border-radius: 5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  background: rgba(255, 107, 0, 0.06) !important;
  color: #ff6b00 !important;
  border: 1px solid rgba(255, 107, 0, 0.18) !important;
}

.node-rating {
  font-size: 8.5px !important;
  color: #fbbf24 !important;
  font-weight: 600 !important;
  background: rgba(251, 191, 36, 0.05) !important;
  border: 1px solid rgba(251, 191, 36, 0.15) !important;
  padding: 2px 6px !important;
  border-radius: 5px !important;
}

.node-supplier-name {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--font-sans), system-ui !important;
  margin: 1px 0 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

[data-theme="light"] .node-supplier-name {
  color: rgba(9, 9, 11, 0.85) !important;
}

/* Pricing Grid Style */
.price-match {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
  font-family: var(--font-mono), SFMono-Regular, Consolas, Courier, monospace !important;
  display: flex !important;
  align-items: baseline !important;
  line-height: 1 !important;
  margin-top: 1px !important;
}

[data-theme="light"] .price-match {
  color: #2563eb !important;
}

.price-match .usd-price {
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-left: 6px !important;
  font-family: var(--font-sans), system-ui !important;
}

[data-theme="light"] .price-match .usd-price {
  color: rgba(9, 9, 11, 0.45) !important;
}

/* Thumbnail */
.node-card-thumb {
  width: 42px !important;
  height: 42px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background-color: #121215 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
  background-size: cover !important;
  background-position: center !important;
  flex-shrink: 0 !important;
}

[data-theme="light"] .node-card-thumb {
  border-color: rgba(9, 9, 11, 0.08) !important;
  background-color: #f4f4f6 !important;
  box-shadow: 0 2px 6px rgba(9, 9, 11, 0.04) !important;
}

/* Expanded footer indicators */
.more-results-indicator {
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.45) !important;
  border-radius: 10px !important;
  padding: 10px 16px !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
}
.more-results-indicator:hover {
  background: rgba(255, 255, 255, 0.035) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}
[data-theme="light"] .more-results-indicator {
  background: rgba(0, 0, 0, 0.015) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  color: rgba(9, 9, 11, 0.5) !important;
}
[data-theme="light"] .more-results-indicator:hover {
  background: rgba(0, 0, 0, 0.03) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: #09090b !important;
}

[data-theme="light"] .more-results-indicator {
  background: rgba(9, 9, 11, 0.005) !important;
  border-color: rgba(9, 9, 11, 0.06) !important;
  color: rgba(9, 9, 11, 0.5) !important;
}

.more-results-indicator:hover {
  background: rgba(59, 130, 246, 0.04) !important;
  border-color: rgba(59, 130, 246, 0.25) !important;
  color: #60a5fa !important;
}

[data-theme="light"] .more-results-indicator:hover {
  background: rgba(37, 99, 235, 0.03) !important;
  border-color: rgba(37, 99, 235, 0.2) !important;
  color: #2563eb !important;
}

/* Middle Flow Columns */
.scanner-middle-flow {
  width: 60px !important;
  height: 180px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

/* Animated SVG Horizontal Flow Lines */
.connection-path-glow {
  stroke: rgba(96, 165, 250, 0.12) !important;
  stroke-width: 1.5px !important;
  stroke-linecap: round !important;
}

[data-theme="light"] .connection-path-glow {
  stroke: rgba(96, 165, 250, 0.22) !important;
}

.connection-path-pulse {
  stroke: var(--accent) !important;
  stroke-width: 2px !important;
  stroke-linecap: round !important;
  stroke-dasharray: 12 60 !important;
  animation: horizConnectionPulse 2.5s infinite linear !important;
}

.connection-path-pulse.pulse-1 { animation-delay: 0s !important; }
.connection-path-pulse.pulse-2 { animation-delay: 0.8s !important; stroke: var(--cyan) !important; }
.connection-path-pulse.pulse-3 { animation-delay: 1.6s !important; stroke: var(--accent-2) !important; }

@keyframes horizConnectionPulse {
  0% { stroke-dashoffset: 72; }
  100% { stroke-dashoffset: 0; }
}

/* Animated pulse end nodes */
.ping-node {
  animation: nodePulseGlow 1.8s infinite ease-in-out alternate !important;
}
.ping-node.node-1 { animation-delay: 0.5s !important; }
.ping-node.node-2 { animation-delay: 1.0s !important; }
.ping-node.node-3 { animation-delay: 1.5s !important; }

@keyframes nodePulseGlow {
  0% { r: 2.2px; opacity: 0.5; filter: drop-shadow(0 0 2px rgba(96,165,250,0.4)); }
  100% { r: 4px; opacity: 1; filter: drop-shadow(0 0 6px rgba(96,165,250,0.8)); }
}

/* Responsiveness media overrides */
@media (max-width: 768px) {
  /* scanner container: column layout, MUST be height:auto to remove 200px cap */
  .abstract-scanner-container {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
    height: auto !important;       /* critical: overrides height:200px from base CSS */
    min-height: 0 !important;
    overflow: visible !important;
    width: 100% !important;
  }
  /* left pane: full width in column */
  .scanner-left-pane {
    flex: none !important;
    width: 100% !important;
  }
  /* hide the SVG connector flow on mobile */
  .scanner-middle-flow {
    display: none !important;
  }
  /* right pane: full width, show all node cards */
  .matched-sourcing-nodes-wrapper {
    flex: none !important;
    width: 100% !important;
    display: block !important;
  }
  /* bento-card-visual: default to centered layout on mobile */
  .bento-card-visual {
    height: auto !important;
    min-height: 0 !important;
    align-items: center !important;
    justify-content: center !important;
  }
  /* Only stretch layout for scanner card */
  .bento-card--scanner .bento-card-visual {
    align-items: stretch !important;
    justify-content: flex-start !important;
  }
  /* bento-card itself: overflow:visible so content is never clipped */
  .bento-card {
    overflow: visible !important;
  }
}


/* ==========================================================================
   Custom Search Radar & Sourcing Circle Nodes Overrides
   ========================================================================== */

/* Left side: Minimalist Radar animation overrides */
.scanner-left-pane .scanner-product-image {
  position: absolute !important;
  top: 24px !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: radial-gradient(circle at center, #0a0a0d 0%, #050507 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.vision-scan-box.mode-capture .scanner-product-image {
  background-image: none !important;
}

.vision-scan-box.mode-crop .scanner-product-image {
  background-image: none !important;
}

.vision-scan-box.mode-crop .scanner-product-image::after {
  content: '' !important;
  position: absolute !important;
  width: 72px !important;
  height: 72px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(59, 130, 246, 0.5) !important;
  background: rgba(59, 130, 246, 0.08) !important;
  box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.15) !important;
  z-index: 2 !important;
  top: calc(50% - 36px) !important;
  left: calc(50% - 36px) !important;
  transition: all 0.3s ease !important;
}

[data-theme="light"] .vision-scan-box.mode-crop .scanner-product-image::after {
  border-color: rgba(37, 99, 235, 0.45) !important;
  background: rgba(37, 99, 235, 0.06) !important;
  box-shadow: inset 0 0 10px rgba(37, 99, 235, 0.1) !important;
}

.vision-scan-box.mode-crop .search-radar-container,
.vision-scan-box.mode-upload .search-radar-container {
  display: none !important;
}

[data-theme="light"] .scanner-left-pane .scanner-product-image {
  background: radial-gradient(circle at center, #ffffff 0%, #f4f4f7 100%) !important;
}

.search-radar-container {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2 !important;
}

.radar-circle {
  position: absolute !important;
  border-radius: 50% !important;
  border: 1px solid rgba(59, 130, 246, 0.25) !important;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.02) 0%, transparent 70%) !important;
  opacity: 0 !important;
  width: 20px !important;
  height: 20px !important;
  pointer-events: none !important;
}

.radar-circle.circle-1 {
  animation: radarPulse 3s infinite linear !important;
}

.radar-circle.circle-2 {
  animation: radarPulse 3s infinite linear !important;
  animation-delay: 1s !important;
}

.radar-circle.circle-3 {
  animation: radarPulse 3s infinite linear !important;
  animation-delay: 2s !important;
}

@keyframes radarPulse {
  0% {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    border-color: rgba(59, 130, 246, 0.35);
  }
  50% {
    opacity: 0.2;
    border-color: rgba(6, 182, 212, 0.2);
  }
  100% {
    width: 170px;
    height: 170px;
    opacity: 0;
    border-color: rgba(99, 102, 241, 0);
  }
}






/* Card 4 Custom Thumbs (Tee & Jeans) */
.t-tee {
  background: linear-gradient(135deg, #10b981, #059669) !important;
  position: relative !important;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.25) !important;
}
.t-tee::after {
  content: '👕' !important;
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
}
[data-theme="light"] .t-tee {
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.15) !important;
}

.t-jeans {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
  position: relative !important;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.25) !important;
}
.t-jeans::after {
  content: '👖' !important;
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
}
[data-theme="light"] .t-jeans {
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.15) !important;
}

/* Middle converter node styles and animations */
.send-node-icon {
  transform: rotate(-15deg) translate(0.5px, -0.5px) !important;
  color: var(--accent) !important;
  animation: planeFloat 2.2s infinite ease-in-out alternate !important;
  transition: color 0.3s ease !important;
}
@keyframes planeFloat {
  0% { transform: rotate(-15deg) translate(0px, 0px) !important; }
  100% { transform: rotate(-8deg) translate(1.5px, -1.5px) !important; }
}

.moving-laser-line {
  stroke-dasharray: 8 30 !important;
  animation: bridgePulseFlow 1.6s infinite linear !important;
  filter: drop-shadow(0 0 3px var(--accent)) !important;
}
.moving-laser-line.pulse-2 {
  animation-delay: 0.8s !important;
  filter: drop-shadow(0 0 3px var(--accent-2)) !important;
}
@keyframes bridgePulseFlow {
  0% { stroke-dashoffset: 38; }
  100% { stroke-dashoffset: 0; }
}

/* Right WhatsApp high fidelity layout */
.wa-avatar-wrap {
  position: relative !important;
  width: 26px !important;
  height: 26px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}
.wa-avatar-icon-bg {
  width: 26px !important;
  height: 26px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  overflow: hidden !important;
}
[data-theme="light"] .wa-avatar-icon-bg {
  background: rgba(9, 9, 11, 0.02) !important;
  border-color: rgba(9, 9, 11, 0.08) !important;
}
.wa-logo-img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}
.wa-status-dot {
  position: absolute !important;
  right: 0px !important;
  bottom: 0px !important;
  width: 6.5px !important;
  height: 6.5px !important;
  border-radius: 50% !important;
  background: #10b981 !important;
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6) !important;
  border: 1.5px solid #1a2235 !important;
}
[data-theme="light"] .wa-status-dot {
  border-color: #ffffff !important;
}
.wa-header-meta {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  flex-grow: 1 !important;
  gap: 1px !important;
}
.wa-contact-name {
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  color: #e9edef !important;
  line-height: 1.15 !important;
}
[data-theme="light"] .wa-contact-name {
  color: #111b21 !important;
}
.wa-status-text {
  font-size: 0.5rem !important;
  font-weight: 400 !important;
  color: #8696a0 !important;
  line-height: 1 !important;
}
.wa-header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #8696a0 !important;
  margin-left: auto !important;
}
[data-theme="light"] .wa-header-actions {
  color: #54656f !important;
}
.wa-body-bg {
  background: transparent !important;
  background-image: none !important;
  padding: 2px !important;
  min-height: auto !important;
}
[data-theme="light"] .wa-body-bg {
  background: transparent !important;
  background-image: none !important;
}

.wa-bubble-content {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}
.wa-msg-title {
  font-weight: 700 !important;
  color: #53bdeb !important; /* Light blue accent for links/headers in WA */
  font-size: 0.7rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}
[data-theme="light"] .wa-msg-title {
  color: #027eb5 !important;
}
.wa-msg-divider {
  height: 1px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  margin: 2px 0 !important;
}
[data-theme="light"] .wa-msg-divider {
  background: rgba(0, 0, 0, 0.06) !important;
}
.wa-msg-item {
  font-size: 0.65rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  color: #e9edef !important;
  width: 100% !important;
}
[data-theme="light"] .wa-msg-item {
  color: #111b21 !important;
}
.wa-item-name-wrap {
  flex: 0 0 48% !important;
  width: 48% !important;
  max-width: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.wa-msg-badge {
  flex: 0 0 28% !important;
  width: 28% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 4px !important;
  padding: 1px 4px !important;
  font-size: 0.58rem !important;
  color: #8696a0 !important;
  font-weight: 500 !important;
  display: inline-flex !important;
  justify-content: flex-start !important;
}
[data-theme="light"] .wa-msg-badge {
  background: rgba(0, 0, 0, 0.05) !important;
  color: #667781 !important;
}
.wa-msg-price {
  flex: 0 0 24% !important;
  width: 24% !important;
  font-weight: 600 !important;
  font-family: var(--font-mono, monospace) !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-align: right !important;
}
[data-theme="light"] .wa-msg-price {
  color: rgba(0, 0, 0, 0.5) !important;
}
.wa-msg-footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: 4px !important;
  font-size: 0.58rem !important;
}
.wa-msg-shipping {
  color: #8696a0 !important;
  font-weight: 500 !important;
}
[data-theme="light"] .wa-msg-shipping {
  color: #667781 !important;
}
.wa-msg-time {
  color: rgba(255, 255, 255, 0.3) !important;
  margin-left: auto !important;
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
}
[data-theme="light"] .wa-msg-time {
  color: rgba(0, 0, 0, 0.35) !important;
}
.wa-ticks {
  color: #53bdeb !important; /* Blue double ticks */
  font-weight: 700 !important;
}

/* Beautiful Action CSV Export Button */
.csv-export-button {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 8px !important;
  padding: 8px 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: #a1a1aa !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  width: 100% !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  margin-top: 16px !important;
}
.csv-export-button:hover {
  background: rgba(16, 185, 129, 0.08) !important;
  border-color: rgba(16, 185, 129, 0.25) !important;
  color: #34d399 !important;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08) !important;
}
[data-theme="light"] .csv-export-button {
  background: #ffffff !important;
  border-color: rgba(9, 9, 11, 0.06) !important;
  color: #27272a !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02) !important;
}
[data-theme="light"] .csv-export-button:hover {
  background: rgba(16, 185, 129, 0.05) !important;
  border-color: rgba(16, 185, 129, 0.2) !important;
  color: #059669 !important;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.04) !important;
}
.csv-icon {
  flex-shrink: 0 !important;
  transition: transform 0.3s ease !important;
}
.csv-export-button:hover .csv-icon {
  transform: translateY(1px) !important;
}

/* WhatsApp Item Name wrapping & ellipsis styling */
.wa-item-name-wrap {
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

/* Premium Geometric Shapes Icons inside left thumbnails */
.geom-svg {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0 !important;
  transition: all 0.3s ease !important;
}

.geom-svg.color-amber { color: #f59e0b !important; filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.4)) !important; }
.geom-svg.color-purple { color: #818cf8 !important; filter: drop-shadow(0 0 5px rgba(129, 140, 248, 0.4)) !important; }
.geom-svg.color-emerald { color: #10b981 !important; filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.4)) !important; }
.geom-svg.color-blue { color: #3b82f6 !important; filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.4)) !important; }

/* Small Geometric Shapes Icons inside WhatsApp message bubble */
.wa-geom-icon {
  width: 6px !important;
  height: 6px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
}
.wa-geom-icon.color-amber { color: #f59e0b !important; }
.wa-geom-icon.color-purple { color: #818cf8 !important; }
.wa-geom-icon.color-emerald { color: #10b981 !important; }
.wa-geom-icon.color-blue { color: #3b82f6 !important; }

/* Continuous Horizontal Flow Laser Line */
.pulse-bridge-arrow-long {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
}

.moving-laser-line-long {
  stroke-dasharray: 10 40 !important;
  animation: bridgePulseFlowLong 1.8s infinite linear !important;
  filter: drop-shadow(0 0 3px var(--accent)) !important;
}

@keyframes bridgePulseFlowLong {
  0% { stroke-dashoffset: 50; }
  100% { stroke-dashoffset: 0; }
}

/* Bento Card 4 Column Width Adjustments (Widen right preview column) */
/* Bento Card 4 Column Flex Proportions (Ultra-balanced SaaS Grid) */
.source-items-column {
  flex: 1 1 240px !important;
  max-width: 330px !important;
  width: auto !important;
}
.flow-bridge-column {
  flex: 0 0 50px !important;
  width: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.output-previews-column {
  flex: 1 1 240px !important;
  max-width: 330px !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}
.whatsapp-preview-card {
  max-width: 240px !important;
  width: 100% !important;
}
.csv-export-button {
  max-width: 240px !important;
  width: 100% !important;
}

/* WhatsApp bubble layout optimization */
.wa-bubble {
  margin: 10px !important;
}
.wa-msg-badge {
  white-space: nowrap !important;
}
.wa-msg-item {
  white-space: nowrap !important;
}

/* Premium circular select checkboxes on cards */
.source-item-checkbox {
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: transparent !important;
  background: transparent !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  flex-shrink: 0 !important;
}

[data-theme="light"] .source-item-checkbox {
  border-color: rgba(9, 9, 11, 0.2) !important;
}

.source-item-checkbox svg {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  transform: scale(0.5) !important;
}

/* Color-coded checked states */
.card-amber .source-item-checkbox.checked {
  background: #f59e0b !important;
  border-color: #f59e0b !important;
  color: #ffffff !important;
}
.card-purple .source-item-checkbox.checked {
  background: #818cf8 !important;
  border-color: #818cf8 !important;
  color: #ffffff !important;
}
.card-emerald .source-item-checkbox.checked {
  background: #10b981 !important;
  border-color: #10b981 !important;
  color: #ffffff !important;
}
.card-blue .source-item-checkbox.checked {
  background: #3b82f6 !important;
  border-color: #3b82f6 !important;
  color: #ffffff !important;
}

.source-item-checkbox.checked svg {
  transform: scale(1) !important;
}

/* Color-coded custom SaaS tags */
.qty-badge.s-badge-amber {
  background: rgba(245, 158, 11, 0.08) !important;
  color: #f59e0b !important;
  border: 1px solid rgba(245, 158, 11, 0.15) !important;
}
.qty-badge.s-badge-purple {
  background: rgba(129, 140, 248, 0.08) !important;
  color: #a5b4fc !important;
  border: 1px solid rgba(129, 140, 248, 0.15) !important;
}
.qty-badge.s-badge-emerald {
  background: rgba(16, 185, 129, 0.08) !important;
  color: #34d399 !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
}
.qty-badge.s-badge-blue {
  background: rgba(59, 130, 246, 0.08) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(59, 130, 246, 0.15) !important;
}

[data-theme="light"] .qty-badge.s-badge-amber { background: rgba(245, 158, 11, 0.05) !important; }
[data-theme="light"] .qty-badge.s-badge-purple { background: rgba(129, 140, 248, 0.05) !important; }
[data-theme="light"] .qty-badge.s-badge-emerald { background: rgba(16, 185, 129, 0.05) !important; }
[data-theme="light"] .qty-badge.s-badge-blue { background: rgba(59, 130, 246, 0.05) !important; }

/* Hide green WhatsApp ticks to keep template preview clean */
.wa-ticks {
  display: none !important;
}

/* Disable hover pauses and interactions for live sourcing activity ticker */
.sourcing-ticker-container,
.sourcing-ticker-track,
.sourcing-ticker-track .ticker-item {
  pointer-events: none !important;
}

.sourcing-ticker-track:hover {
  animation-play-state: running !important;
}

/* Disable hover pauses and interactions for logo ticker (prevent shakes and shifts) */
.logo-ticker-container,
.logo-ticker-track,
.logo-ticker-track .ticker-item {
  pointer-events: none !important;
}

.logo-ticker-container:hover .logo-ticker-track {
  animation-play-state: running !important;
}

/* Remove top and bottom horizontal divider lines on logo ticker wrap */
.logo-ticker-wrap::before,
.logo-ticker-wrap::after {
  display: none !important;
  content: none !important;
}

/* Multi-row layout structure for premium logo cloud */
.logo-ticker-wrap {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important; /* Premium spacing between top and bottom scrolling rows */
}

/* Row 2 scrolling to the right (reverse direction) */
.logo-ticker-container.row-reverse .logo-ticker-track {
  animation-direction: reverse !important;
}

/* Premium Shipping Option Card Refinements */
.carrier-price {
  font-size: 13px !important;
  font-family: var(--font-mono, monospace) !important;
  font-weight: 700 !important;
  color: #60a5fa !important; /* Sky blue pricing highlight */
  letter-spacing: -0.01em !important;
  text-align: right !important;
  display: block !important;
  line-height: 1.2 !important;
}

[data-theme="light"] .carrier-price {
  color: #2563eb !important;
}

.carrier-badge {
  margin-top: 4px !important; /* Space between the price and the badge */
}

/* Blue dot indicator for Standard shipping badge to match the green dot in Priority */
.dot-indicator.blue {
  background: #3b82f6 !important;
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.6) !important;
  width: 4px !important;
  height: 4px !important;
  border-radius: 50% !important;
  display: inline-block !important;
  margin-right: 5px !important;
}

.carrier-badge.standard {
  background: rgba(59, 130, 246, 0.05) !important;
  border: 1px solid rgba(59, 130, 246, 0.12) !important;
  color: #60a5fa !important;
}

[data-theme="light"] .carrier-badge.standard {
  background: rgba(59, 130, 246, 0.03) !important;
  border-color: rgba(59, 130, 246, 0.15) !important;
  color: #2563eb !important;
}

/* ── Help Center Design Optimizations ── */

/* Premium Search Bar Upgrades */
.help-search-box {
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.01), 0 4px 20px rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .help-search-box {
  background: rgba(0, 0, 0, 0.01) !important;
  border-color: rgba(9, 9, 11, 0.08) !important;
  box-shadow: 0 4px 20px rgba(9, 9, 11, 0.03) !important;
}

.help-search-box:focus-within {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.18) !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

[data-theme="light"] .help-search-box:focus-within {
  border-color: #2563eb !important;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.1) !important;
  background: rgba(0, 0, 0, 0.015) !important;
}

/* Category Card Icon Bookmark Micro-Animation */
@keyframes bookmarkSlide {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(3px); }
}

.help-card:hover .book-bookmark {
  animation: bookmarkSlide 0.75s ease-in-out !important;
}

/* Color-coded Category Badges for Help Center FAQ Accordions */
.help-articles-section .faq-q .category-tag {
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  padding: 3px 8px !important;
  border-radius: 99px !important;
  text-transform: none !important; /* Keep original casing */
  letter-spacing: 0 !important;
  transition: all 0.25s ease !important;
}

/* Category 1: Getting Started (Blue) */
.help-articles-section .faq-q .category-tag.tag-cat1 {
  background: rgba(59, 130, 246, 0.08) !important;
  color: #60a5fa !important;
  border: 1px solid rgba(59, 130, 246, 0.15) !important;
}
[data-theme="light"] .help-articles-section .faq-q .category-tag.tag-cat1 {
  background: rgba(59, 130, 246, 0.04) !important;
  color: #2563eb !important;
  border-color: rgba(59, 130, 246, 0.12) !important;
}

/* Category 2: Using GP Sourcing (Purple) */
.help-articles-section .faq-q .category-tag.tag-cat2 {
  background: rgba(139, 92, 246, 0.08) !important;
  color: #a78bfa !important;
  border: 1px solid rgba(139, 92, 246, 0.15) !important;
}
[data-theme="light"] .help-articles-section .faq-q .category-tag.tag-cat2 {
  background: rgba(139, 92, 246, 0.04) !important;
  color: #6d28d9 !important;
  border-color: rgba(139, 92, 246, 0.12) !important;
}

/* Category 3: Tips & Best Practices (Amber) */
.help-articles-section .faq-q .category-tag.tag-cat3 {
  background: rgba(245, 158, 11, 0.08) !important;
  color: #fbbf24 !important;
  border: 1px solid rgba(245, 158, 11, 0.15) !important;
}
[data-theme="light"] .help-articles-section .faq-q .category-tag.tag-cat3 {
  background: rgba(245, 158, 11, 0.04) !important;
  color: #b45309 !important;
  border-color: rgba(245, 158, 11, 0.12) !important;
}

/* Category 4: Data & Privacy (Emerald) */
.help-articles-section .faq-q .category-tag.tag-cat4 {
  background: rgba(16, 185, 129, 0.08) !important;
  color: #34d399 !important;
  border: 1px solid rgba(16, 185, 129, 0.15) !important;
}
[data-theme="light"] .help-articles-section .faq-q .category-tag.tag-cat4 {
  background: rgba(16, 185, 129, 0.04) !important;
  color: #047857 !important;
  border-color: rgba(16, 185, 129, 0.12) !important;
}

/* Disable hover pause and card interaction on testimonials marquee to prevent all flickering and layout jumps */
.testimonials-marquee-wrap,
.testimonials-marquee-track,
.testimonial-card {
  pointer-events: none !important;
}

.testimonials-marquee-wrap:hover .testimonials-marquee-track {
  animation-play-state: running !important;
}

/* Fix Help Center search box layout bug: remove conflicting inner background/borders from global input styles */
.help-search-box input,
.help-search-box input:focus {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  outline: none !important;
}

/* Fix header controls layout, alignment, and centering to prevent shifting and wrapping */
@media (min-width: 1101px) {
  .btn-chrome {
    width: 154px !important;
    min-width: 154px !important;
    height: 36px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important;
    text-decoration: none !important;
  }
}

@media (max-width: 1100px) {
  .btn-chrome {
    display: none !important;
  }
}

.btn-chrome svg {
  margin-right: 6px !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.btn-chrome span {
  font-size: 13px !important;
  font-weight: 600 !important;
  line-height: 1 !important; /* Prevent line-height baseline shifting */
  display: inline-block !important;
  vertical-align: middle !important;
}

.lang-toggle {
  width: 112px !important;
  height: 36px !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
}

.lang-option {
  width: 54px !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

.lang-option span {
  font-size: 12px !important;
  line-height: 1 !important;
  display: inline-block !important;
}

.lang-toggle[data-lang="en"] .lang-option[data-lang-opt="en"] span,
.lang-toggle[data-lang="zh"] .lang-option[data-lang-opt="zh"] span {
  font-weight: 700 !important;
}

/* ══════════════════════════════════════════════════════════════
   📱 MOBILE TYPOGRAPHY SYSTEM  (max-width 768px)
   Base font: 15px · Scale from large → small by role
   ══════════════════════════════════════════════════════════════
   SCALE (mobile, base 15px = 1rem):
     Display / Hero title  : 28–40px  (clamp)
     Section h2            : 21–30px  (clamp)
     Sub-heading h3        : 16–22px  (clamp)
     Hero subtitle         : 16px  ≈ 1.07rem
     Card titles           : 15px  = 1rem
     Body / Descriptions   : 14px  ≈ 0.93rem
     FAQ questions         : 14px  ≈ 0.93rem
     Secondary body        : 13px  ≈ 0.87rem
     Captions / tags       : 12px  = 0.8rem
     Eyebrow labels        : 11px  ≈ 0.73rem
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-py: 30px !important;
  }

  /* ── Eyebrow / section labels  (11px) ── */
  .label {
    font-size: 0.73rem !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 10px !important;
  }

  /* ── Section Header Spacings ── */
  .bento-header,
  .comparison-header,
  .testimonial-header,
  .section-header,
  .help-header {
    margin-bottom: 24px !important;
  }

  /* ── Hero Steps Section Padding Alignment ── */
  .hero-steps-section {
    padding: 0 16px !important;
  }
  .hero-step {
    flex-direction: column !important;
    padding: 20px 16px !important;
    gap: 10px !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .hero-step-body {
    align-items: center !important;
    text-align: center !important;
  }
  /* Step number: decorative, slightly bigger than body */
  .hero-step-num {
    font-size: 1.6rem !important;
    line-height: 1 !important;
  }
  /* Step title: clear, readable label */
  .hero-step-title {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
  }
  /* Step description: secondary */
  .hero-step-desc {
    font-size: 0.8rem !important;
    line-height: 1.45 !important;
  }

  /* ── Logo Ticker ── */
  .logo-ticker-wrap {
    margin-top: 32px !important;
    padding: 24px 0 !important;
  }
  .logo-ticker-title {
    font-size: 0.73rem !important;   /* same as label — small uppercase */
    letter-spacing: 0.14em !important;
    margin-bottom: 16px !important;
  }

  /* ── Hero title  (28–40px) ── */
  .hero-title,
  .text-hero {
    font-size: clamp(28px, 9vw, 40px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.025em !important;
  }

  /* ── Hero eyebrow badge ── */
  .hero-eyebrow {
    font-size: 0.73rem !important;
    letter-spacing: 0.08em !important;
  }

  /* ── Hero subtitle  (≈16px) ── */
  .hero-sub,
  .text-body-lg {
    font-size: 1.0rem !important;
    line-height: 1.6 !important;
  }

  /* ── Section h2  (21–30px) ── */
  .text-h2 {
    font-size: clamp(21px, 5.8vw, 30px) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.015em !important;
  }

  /* ── Sub-headings h3  (16–22px) ── */
  .text-h3 {
    font-size: clamp(16px, 4vw, 22px) !important;
    line-height: 1.3 !important;
  }

  /* ── Body copy  (≈14px) ── */
  .text-body {
    font-size: 0.93rem !important;
    line-height: 1.6 !important;
  }

  /* ── Small / caption text  (≈12px) ── */
  .text-sm {
    font-size: 0.8rem !important;
    line-height: 1.5 !important;
  }

  /* ── Bento Section Header ── */
  .bento-header {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .bento-header h2 {
    font-size: clamp(21px, 5.8vw, 28px) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.015em !important;
  }
  .bento-header p {
    font-size: 0.93rem !important;  /* body-level: readable */
    line-height: 1.55 !important;
    margin-top: 8px !important;
  }

  /* ── Bento Cards ── */
  .bento-card {
    padding: 20px !important;
  }
  .bento-card-tag {
    font-size: 0.68rem !important;  /* tiny tag — fine small */
  }
  .bento-card-title {
    font-size: 1.07rem !important;  /* slightly above body to lead the card */
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
  }
  .bento-card-desc {
    font-size: 0.87rem !important;  /* secondary body — clearly smaller than title */
    line-height: 1.55 !important;
  }

  /* ── Pricing / CTA headings ── */
  .pricing-title,
  .cta-title {
    font-size: clamp(22px, 6vw, 34px) !important;
    letter-spacing: -0.02em !important;
    line-height: 1.2 !important;
  }

  /* ── FAQ ── */
  .faq-q {
    font-size: 0.93rem !important;  /* same as body — questions are primary reading */
    font-weight: 600 !important;
    line-height: 1.45 !important;
  }
  .faq-body-inner {
    font-size: 0.85rem !important;  /* answer text, slightly smaller */
    line-height: 1.6 !important;
  }

  /* ── Comparison cards ── */
  .comparison-card-title {
    font-size: 1.0rem !important;   /* card title: same level as bento title */
    letter-spacing: -0.01em !important;
    line-height: 1.25 !important;
  }
  .comparison-card-subtitle {
    font-size: 0.78rem !important;  /* sub-caption */
  }

  /* ── Footer ── */
  .footer-brand-name {
    font-size: 1.0rem !important;
  }
  .footer-brand-tagline {
    font-size: 0.85rem !important;  /* readable tagline */
    line-height: 1.5 !important;
  }
  .footer-col-title {
    font-size: 0.68rem !important;  /* column label — small uppercase OK */
    letter-spacing: 0.12em !important;
  }
  .footer-link {
    font-size: 0.87rem !important;  /* links should be easily tappable/readable */
    line-height: 1.7 !important;
  }
}

/* 📱 Premium Mobile Adaptations & Centering Overrides */

/* 1. Header Inner Mobile Spacing Refinement */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px !important; /* Scale down padding to prevent crowding on mobile */
  }
}

/* 2. Enterprise Data Security Section Centering & Padding Scale */
@media (max-width: 768px) {
  .compliance-left {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .compliance-left .label {
    justify-content: center !important;
  }
}
@media (max-width: 480px) {
  .compliance-box {
    padding: 24px 16px !important; /* Scale down padding on very small screens to prevent clipping */
  }
}

/* 3. Bento Card 1 Scanner Height Auto-Scale Fix */
@media (max-width: 768px) {
  .abstract-scanner-container {
    height: auto !important;
    min-height: 280px !important;
  }
}

/* 4. Footer Bottom Center-Alignment & Vertical Stacking */
@media (max-width: 760px) {
  .footer-bottom {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
  }
  .footer-legal {
    justify-content: center !important;
  }
}

/* 📱 5. Hero UI Scanner Card - Vertical Stack Layout for Mobile */
@media (max-width: 768px) {
  .hero-ui-frame {
    transform: none !important;
    border-radius: 12px !important;
  }
  /* Center the scanning animation vertically and horizontally on mobile */
  .hero-ui-frame .product-image-box.is-scanning-mode {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px 16px !important;
    height: 100% !important;
    box-sizing: border-box !important;
    min-height: 260px !important;
    position: relative !important;
  }
  
  /* Keep status badge absolutely positioned in the top-left corner on mobile */
  .hero-ui-frame .scan-status-overlay {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    bottom: auto !important;
    right: auto !important;
    transform: none !important;
    margin: 0 !important;
    width: auto !important;
    z-index: 10 !important;
  }
  
  /* Scale down diamond/circle scanning shape in the center */
  .hero-ui-frame .shape-display-wrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 110px !important;
    height: 110px !important;
    margin: 8px auto !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Adjust inner radar scanning rings to match container size */
  .hero-ui-frame .radar-c1 {
    width: 110px !important;
    height: 110px !important;
  }
  .hero-ui-frame .radar-c2 {
    width: 80px !important;
    height: 80px !important;
  }
  
  /* Relatively position action button at the bottom - hidden on mobile */
  .hero-ui-frame .hover-action-badge {
    display: none !important;
  }
}

@keyframes hoverBadgePulseMobile {
  0%, 100% { transform: translateY(0); box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5); }
  50%       { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(59, 130, 246, 0.7); }
}

/* 📱 6. Global Layout Horizontal Overflow Prevention Guard & Hero Sizing Isolation */
html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

#hero {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
  overflow-x: hidden !important;
}

.hero-inner {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  box-sizing: border-box !important;
}

/* 📱 7. Hero Section Strict Sizing & Wrapping Safeguards */
@media (max-width: 1200px) {
  .hero-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .hero-title {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(28px, 4.5vw, 42px) !important; /* Scale down font size dynamically on tablet/mobile */
    text-wrap: wrap !important;
    white-space: normal !important;
    word-break: break-word !important;
    line-height: 1.25 !important;
  }
  .hero-sub {
    width: 100% !important;
    max-width: 580px !important;
    font-size: 0.95rem !important;
    text-wrap: wrap !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
  .hero-trust-line {
    width: 100% !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 8px !important;
  }
}

/* 📱 8. Tablet Fluid Sizing & Layout Scaling Refinements (769px - 1100px) */
@media (max-width: 1100px) and (min-width: 769px) {
  /* Scale down hero mockup visual proportionally to fit smaller screens */
  .hero-mockup-wrapper {
    transform: scale(0.9) !important;
    transform-origin: top center !important;
    margin-bottom: -45px !important;
  }
  
  /* Scale down hero steps padding and typography to prevent wrapping */
  .hero-step {
    padding: 16px 12px !important;
  }
  .hero-step-title {
    font-size: 0.8rem !important;
  }
  .hero-step-desc {
    font-size: 0.68rem !important;
  }
  
  /* Scale down bento cards padding for compact spacing */
  .bento-card {
    padding: 24px !important;
  }
  
  /* Scale down integrations grid spacing */
  .integrations-grid {
    gap: 16px !important;
  }
  .integration-item {
    padding: 20px !important;
  }
}

@media (max-width: 920px) and (min-width: 769px) {
  /* Scale down hero mockup visual further on narrower tablet sizes */
  .hero-mockup-wrapper {
    transform: scale(0.8) !important;
    transform-origin: top center !important;
    margin-bottom: -90px !important;
  }
  
  /* Scale down hero steps padding further */
  .hero-step {
    padding: 12px 8px !important;
    gap: 8px !important;
  }
  .hero-step-num {
    font-size: 1.5rem !important;
  }
}

/* 📱 9. Hero Install Button Responsive Toggle (Visible only on tablets 769px - 1100px) */
@media (min-width: 1101px) {
  .hero-cta-wrap {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hero-cta-wrap {
    display: none !important;
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .hero-cta-wrap {
    display: flex !important;
    justify-content: center !important;
    margin-top: 24px !important;
    margin-bottom: 8px !important;
    width: 100% !important;
  }
  .btn-hero-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 28px !important;
    font-size: 0.95rem !important;
    background: var(--primary) !important;
    color: white !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25) !important;
    transition: all 0.25s ease !important;
    text-shadow: none !important;
  }
  .btn-hero-cta:hover {
    background: var(--primary-hover) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.35) !important;
  }
}

/* 📱 10. Bento Feature Grid Responsive Overrides */
@media (max-width: 768px) {
  /* Card 4 Inquiry Pipeline Mobile Stack */
  .inquiry-pipeline-container {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
    min-height: auto !important;
    width: 100% !important;
  }
  .source-items-column {
    width: 100% !important;
    max-width: none !important;
  }
  .flow-bridge-column {
    width: auto !important;
    height: 40px !important;
    margin: 8px 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex: none !important;
  }
  .pulse-bridge-arrow-long {
    width: 50px !important;
    transform: rotate(90deg) !important;
  }
  .output-previews-column {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .whatsapp-preview-card {
    width: 100% !important;
    max-width: none !important;
  }
  .csv-export-button {
    width: 100% !important;
    max-width: none !important;
  }
  
  /* Comparison Section & Cost Chart Mobile Overrides */
  .comparison-card {
    padding: 16px !important;
  }
  .comparison-card.gp-sourcing-glow,
  .comparison-card.gp-sourcing-glow:hover {
    transform: none !important;
  }
  .comparison-list {
    gap: 0 !important;
  }
  .comparison-list li {
    padding: 8px 0 !important;
    font-size: 0.8rem !important;
  }
  .cost-chart-container {
    padding: 16px !important;
    margin-top: 24px !important;
    border-radius: 16px !important;
  }
  .chart-flex-layout {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: stretch !important;
  }
  .chart-info-col {
    min-width: 0 !important;
    width: 100% !important;
    flex: none !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
  .chart-info-col .chart-title,
  .chart-info-col h3 {
    font-size: 1.15rem !important;
    line-height: 1.35 !important;
    margin-bottom: 8px !important;
  }
  .chart-info-col p {
    font-size: 0.82rem !important;
    margin-bottom: 0 !important;
    line-height: 1.5 !important;
  }
  .chart-graph-col {
    min-width: 0 !important;
    width: 100% !important;
    flex: none !important;
  }
  .chart-bar-legend {
    justify-content: flex-start !important;
    padding-right: 0 !important;
    flex-wrap: wrap !important;
    gap: 6px 12px !important;
    margin-bottom: 8px !important;
    font-size: 0.72rem !important;
  }
  .line-chart-wrapper {
    height: 180px !important;
    margin-top: 0 !important;
  }
  
  /* Footer Mobile Grid Optimization */
  .footer-inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 16px !important;
  }
  .footer-brand {
    grid-column: span 2 !important;
  }
}

@media (max-width: 480px) {
  /* Reduce bento card padding on very small screens to avoid overflow */
  .bento-card {
    padding: 16px !important;
  }
}

/* 📱 11. Bento Grid Columns Span Override (Fixes horizontal stretching) */
@media (max-width: 900px) {
  .bento-card--large, .bento-card--medium {
    grid-column: span 1 !important; /* Force to span 1 column in 1-column layout */
  }
}

/* 📱 12. Help Center Card Grid — Mobile 2-Column Compact Layout */
@media (max-width: 768px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin: 24px auto 0 !important;
  }
  .help-card {
    padding: 16px 14px !important;
    border-radius: 14px !important;
    gap: 8px !important;
  }
  .help-card-icon {
    width: 36px !important;
    height: 36px !important;
  }
  .help-card-icon svg {
    width: 36px !important;
    height: 36px !important;
  }
  .help-card-title {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
  }
  .help-card-desc {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }
}

/* ==========================================================================
   Support Page Enhancements
   ========================================================================== */
.support-card {
  background: rgba(255, 255, 255, 0.012) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 18px !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.15), 
    inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[data-theme="light"] .support-card {
  background: #ffffff !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.02), 
    inset 0 1px 0 #ffffff !important;
}

/* Hover effects with color borders matching the SVG icons */
.support-card:nth-child(1):hover {
  border-color: rgba(59, 130, 246, 0.28) !important;
  box-shadow: 
    0 16px 40px rgba(59, 130, 246, 0.06), 
    0 0 0 1px rgba(59, 130, 246, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-4px) !important;
}
.support-card:nth-child(2):hover {
  border-color: rgba(239, 68, 68, 0.28) !important;
  box-shadow: 
    0 16px 40px rgba(239, 68, 68, 0.06), 
    0 0 0 1px rgba(239, 68, 68, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-4px) !important;
}
.support-card:nth-child(3):hover {
  border-color: rgba(96, 165, 250, 0.28) !important;
  box-shadow: 
    0 16px 40px rgba(96, 165, 250, 0.06), 
    0 0 0 1px rgba(96, 165, 250, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-4px) !important;
}
.support-card:nth-child(4):hover {
  border-color: rgba(16, 185, 129, 0.28) !important;
  box-shadow: 
    0 16px 40px rgba(16, 185, 129, 0.06), 
    0 0 0 1px rgba(16, 185, 129, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  transform: translateY(-4px) !important;
}

/* Light mode hover adjustments */
[data-theme="light"] .support-card:nth-child(1):hover {
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.05), 0 0 0 1px rgba(59, 130, 246, 0.04) !important;
}
[data-theme="light"] .support-card:nth-child(2):hover {
  box-shadow: 0 12px 28px rgba(239, 68, 68, 0.05), 0 0 0 1px rgba(239, 68, 68, 0.04) !important;
}
[data-theme="light"] .support-card:nth-child(3):hover {
  box-shadow: 0 12px 28px rgba(96, 165, 250, 0.05), 0 0 0 1px rgba(96, 165, 250, 0.04) !important;
}
[data-theme="light"] .support-card:nth-child(4):hover {
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.05), 0 0 0 1px rgba(16, 185, 129, 0.04) !important;
}

/* Make icons look like glowing badges */
.support-card svg {
  padding: 8px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 10px !important;
  width: 36px !important;
  height: 36px !important;
  box-sizing: border-box !important;
  margin-bottom: 16px !important;
}

[data-theme="light"] .support-card svg {
  background: rgba(9, 9, 11, 0.015) !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
}

/* Button refinements inside support cards */
.support-card .btn-secondary {
  border-radius: var(--r-full) !important;
  padding: 8px 16px !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  transition: all 0.25s ease !important;
}

/* 📱 Mobile Layout Scroll Height & Background Fixes */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    position: relative !important;
    height: auto !important;
    min-height: 100% !important;
  }

  /* Prevent fixed mesh background from leaking scroll height on mobile browsers */
  .superhuman-mesh-bg {
    position: fixed !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
    z-index: -2 !important;
  }
}

/* ══════════════════════════════════════════════════════════════════
   📱 COMPREHENSIVE MOBILE OVERHAUL  (max-width 768px)
   Fixes every section that looks strange on phone screens
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  #hero {
    padding-bottom: 0 !important;
  }
  .hero-inner {
    padding-bottom: 20px !important;
  }

  /* Hero title & text responsive alignment overrides */
  .hero-title {
    font-size: clamp(21px, 6.8vw, 27px) !important;
    line-height: 1.35 !important;
    letter-spacing: -0.015em !important;
    text-align: center !important;
  }
  .hero-sub {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    color: var(--muted) !important;
    margin-top: 14px !important;
    margin-bottom: 24px !important;
    text-align: center !important;
  }
  .hero-trust-line {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 0.72rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .trust-bullet {
    display: none !important;
  }

  /* ── 1. HERO — Simplify mockup ──────────────────────────────── */
  /* On mobile, hide the full 2-panel browser mock; keep only the
     product-scan side. The sidebar (extension panel) is too dense
     to read on a small screen and makes the hero absurdly tall.    */
  .sourcing-ticker-container {
    margin: 32px 0 32px 0 !important;
    padding: 10px 0 !important;
  }
  .hero-mockup-wrapper {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 16px !important;
  }
  .hero-ui-frame {
    transform: none !important;
    border-radius: 14px !important;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.06),
      0 20px 60px rgba(0,0,0,0.5) !important;
  }
  .hero-ui-frame:hover {
    transform: none !important;
  }
  /* Stack both panels vertically on mobile */
  .hero-ui-frame .browser-viewport {
    grid-template-columns: 1fr !important;
    height: auto !important;
  }
  /* Left panel: scanning animation */
  .hero-ui-frame .mock-shopify-page {
    height: 260px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  }
  /* Right panel: show 1688 matches grid below */
  .hero-ui-frame .mock-gp-sidebar {
    display: flex !important;
    height: auto !important;
    min-height: 220px !important;
    border-left: none !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    padding: 0 !important;
  }
  [data-theme="light"] .hero-ui-frame .mock-gp-sidebar {
    border-top-color: rgba(9,9,11,0.06) !important;
  }
  /* Scale down the scanning shapes to fit */
  .hero-ui-frame .shape-display-wrap {
    width: 100px !important;
    height: 100px !important;
  }
  .hero-ui-frame .radar-c1 { width: 100px !important; height: 100px !important; }
  .hero-ui-frame .radar-c2 { width:  72px !important; height:  72px !important; }
  /* Ambient glow behind the frame */
  .hero-ui-frame::before {
    inset: -30px !important;
  }
  /* Hide hover-only button on touch devices */
  .hover-action-badge {
    display: none !important;
  }


  /* ── 2. HERO STEPS — Clean vertical stack ──────────────────── */
  .hero-steps-section {
    padding: 0 16px !important;
    margin-bottom: 32px !important;
    overflow: visible !important;
  }
  .hero-steps-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    overflow: visible !important;
    padding: 0 !important;
  }
  .hero-step {
    flex: none !important;
    width: 100% !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 16px 0 !important;
    gap: 14px !important;
    justify-content: flex-start !important;
    border-bottom: 1px solid var(--border) !important;
    border-right: none !important;
  }
  .hero-step:last-child {
    border-bottom: none !important;
  }
  .hero-step-body {
    align-items: flex-start !important;
    text-align: left !important;
    flex: 1 !important;
    min-width: 0 !important;
  }
  .hero-step-sep {
    display: none !important;
  }
  .hero-step-num {
    font-size: 1.3rem !important;
    margin-bottom: 0 !important;
    flex-shrink: 0 !important;
    width: 36px !important;
    text-align: right !important;
  }

  /* ── 3. LOGO TICKER ─────────────────────────────────────────── */
  .logo-ticker-wrap {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    padding: 0 16px !important;
    gap: 24px !important;
    box-sizing: border-box !important;
  }
  .logo-ticker-container {
    padding: 0 !important;
  }
  /* .logo-ticker-title font size set in main typography block above */

  #features-bento {
    padding-top: 0 !important;
  }
  /* ── 4. BENTO SCANNER CARD (Card 1) ─────────────────────────── */
  /* Stack vertically on mobile; ensure node cards are fully visible.
     Root cause: .abstract-scanner-container has height:200px (desktop)
     and .bento-card has overflow:hidden — both clip the node cards.   */
  .bento-card--scanner .bento-card-title {
    font-size: 1.07rem !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
    margin-top: 10px !important;
    margin-bottom: 8px !important;
  }
  .bento-card--scanner .bento-card-desc {
    font-size: 0.87rem !important;
    line-height: 1.55 !important;
  }
  .bento-card--scanner {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;  /* Let node cards show below card boundary */
  }
  .bento-card--scanner .bento-card-content {
    height: auto !important;
    overflow: visible !important;
  }
  /* bento-card-visual: strip centering so column content flows top-down */
  .bento-card--scanner .bento-card-visual {
    height: auto !important;
    min-height: 0 !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    flex-direction: column !important;
  }
  /* Container: column layout, auto height to fit all children */
  .abstract-scanner-container {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    height: auto !important;       /* overrides fixed height: 200px */
    min-height: 0 !important;
    overflow: visible !important;
    width: 100% !important;
  }
  .abstract-connection-lines {
    display: none !important;
  }
  /* Scanner box: full-width, reasonable height on mobile */
  .vision-scan-box {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 140px !important;
  }
  /* Scanner left pane: full width */
  .scanner-left-pane {
    width: 100% !important;
    flex-direction: column !important;
    margin-bottom: 20px !important;
  }
  /* Node cards: full width column */
  .matched-sourcing-nodes {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }
  .node-card {
    padding: 10px 12px !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .node-supplier-name {
    font-size: 0.78rem !important;
  }
  .price-match {
    font-size: 0.75rem !important;
  }
  .more-results-indicator {
    font-size: 0.73rem !important;
    margin-top: 6px !important;
  }
  .bento-scanner-tabs {
    gap: 4px !important;
    flex-wrap: wrap !important;
    margin-bottom: 8px !important;
  }
  .bento-scanner-tab {
    font-size: 0.73rem !important;
    padding: 5px 10px !important;
  }

  /* ── 5. BENTO CARD — DDP Shipping Quote (Card 2) ─────────────── */
  .calculator-display {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }
  .calc-result-row {
    flex-direction: column !important;
    gap: 8px !important;
  }

  /* ── 6. COMPARISON SECTION ───────────────────────────────────── */
  /* Already stacks to 1 column; clean up spacing */
  .comparison-grid {
    gap: 12px !important;
  }
  .comparison-card {
    padding: 18px 16px !important;
  }
  .comparison-card-header {
    margin-bottom: 14px !important;
    padding-bottom: 12px !important;
  }
  .comparison-list li {
    font-size: 0.8rem !important;
    gap: 10px !important;
    padding: 9px 0 !important;
  }
  .comparison-icon {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
  }
  .comp-icon-svg {
    width: 9px !important;
    height: 9px !important;
  }

  /* ── 7. PRICING SECTION ─────────────────────────────────────── */
  .pricing-grid {
    gap: 12px !important;
  }
  .pricing-card {
    padding: 24px 20px !important;
  }
  .pricing-badge {
    font-size: 0.6rem !important;
  }

  /* ── 8. TESTIMONIALS ────────────────────────────────────────── */
  .testimonial-grid {
    gap: 12px !important;
  }
  .testimonials-marquee-wrap {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }
  .testimonial-card {
    padding: 20px 16px !important;
  }
  .testimonial-text {
    font-size: 0.85rem !important;
    line-height: 1.55 !important;
  }

  /* ── 9. WORKFLOW / HOW IT WORKS ─────────────────────────────── */
  .workflow-steps {
    gap: 16px !important;
  }
  .workflow-step {
    flex-direction: column !important;
    gap: 12px !important;
    padding: 16px !important;
  }

  /* ── 10. INTEGRATIONS ───────────────────────────────────────── */
  .integrations-grid {
    gap: 10px !important;
  }
  .integration-item {
    padding: 16px 12px !important;
  }
  .integration-name {
    font-size: 0.78rem !important;
  }

  /* ── 11. HELP CENTER ────────────────────────────────────────── */
  .help-section-title,
  .help-header h2 {
    font-size: clamp(18px, 5.5vw, 28px) !important;
  }

  /* ── 12. FOOTER REFINEMENTS ─────────────────────────────────── */
  .footer-brand-name {
    font-size: 1rem !important;
  }
  .footer-brand-tagline {
    font-size: 0.75rem !important;
    line-height: 1.5 !important;
  }
  .footer-inner {
    gap: 28px 12px !important;
  }

  /* ── 13. GENERAL SECTION SPACING & OVERFLOW GUARD ───────────── */
  section, .section {
    overflow-x: hidden !important;
  }
  .container, .section-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* Remove heavy desktop shadows that look harsh on mobile */
  .bento-card {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
  }
  /* Ensure no element bleeds outside the viewport */
  img, video, iframe, svg {
    max-width: 100% !important;
  }
}

/* ── Extra small phones (≤ 390px) ──────────────────────────── */
@media (max-width: 390px) {
  .hero-title, .text-hero {
    font-size: clamp(20px, 6.8vw, 25px) !important;
  }
  .hero-step {
    flex: 0 0 200px !important;
    padding: 14px 12px !important;
  }
  .bento-card {
    padding: 14px !important;
  }
  .comparison-card {
    padding: 14px !important;
  }
  

}


/* ══════════════════════════════════════════════════════════════
   PREMIUM SHORTLIST CARDS (SaaS Redesign - color-coded & row aligned)
   ══════════════════════════════════════════════════════════════ */
.source-item-card {
  padding: 12px 14px !important;
  gap: 12px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  transition: all 0.3s ease !important;
}

[data-theme="light"] .source-item-card {
  background: rgba(0, 0, 0, 0.015) !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
  box-shadow: 0 4px 12px rgba(9, 9, 11, 0.02) !important;
}

/* Color-coded Left Status Border (Linear style indicator) */
.card-amber { border-left: 3.5px solid #f59e0b !important; }
.card-purple { border-left: 3.5px solid #818cf8 !important; }
.card-emerald { border-left: 3.5px solid #10b981 !important; }
.card-blue { border-left: 3.5px solid #3b82f6 !important; }

/* 3D-like Glowing Shape Thumbnail Box */
.item-thumb {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid transparent !important;
  transition: all 0.3s ease !important;
}

.card-amber .item-thumb {
  border-color: rgba(245, 158, 11, 0.25) !important;
  background: rgba(245, 158, 11, 0.06) !important;
  color: #f59e0b !important;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.1) !important;
}
.card-purple .item-thumb {
  border-color: rgba(129, 140, 248, 0.25) !important;
  background: rgba(129, 140, 248, 0.06) !important;
  color: #a5b4fc !important;
  box-shadow: 0 0 12px rgba(129, 140, 248, 0.1) !important;
}
.card-emerald .item-thumb {
  border-color: rgba(16, 185, 129, 0.25) !important;
  background: rgba(16, 185, 129, 0.06) !important;
  color: #34d399 !important;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.1) !important;
}
.card-blue .item-thumb {
  border-color: rgba(59, 130, 246, 0.25) !important;
  background: rgba(59, 130, 246, 0.06) !important;
  color: #60a5fa !important;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.1) !important;
}

/* Grid layout change: Flex row align for clean look on both desktop and mobile */
.item-info {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-grow: 1 !important;
  gap: 12px !important;
}

.item-name {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  /* No fixed max-width: takes all available space naturally */
}

.item-meta {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-shrink: 0 !important; /* Guarantees badges and prices never wrap or shrink */
}

.qty-badge {
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  padding: 2px 8px !important;
  border-radius: 6px !important;
  white-space: nowrap !important; /* Prevents number and unit from wrapping */
}

.price-badge {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

[data-theme="light"] .price-badge {
  color: #09090b !important;
}




/* English-specific mobile typography overrides to prevent awkward text wrapping and preserve premium SaaS layout */
@media (max-width: 768px) {
  html[lang="en"] .hero-title {
    font-size: clamp(19px, 5.8vw, 24px) !important;
    line-height: 1.3 !important;
    letter-spacing: -0.015em !important;
  }
  html[lang="en"] .hero-sub {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    color: var(--muted) !important;
    margin-top: 14px !important;
    margin-bottom: 24px !important;
  }
}


/* ── World-Class SaaS Redesign for Matched Suppliers List ── */
.matched-sourcing-nodes {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}

.matched-sourcing-nodes .node-card {
  display: flex !important;
  align-items: center !important;
  padding: 12px 16px !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, rgba(255, 255, 255, 0.005) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-top-color: rgba(255, 255, 255, 0.09) !important;
  border-radius: 14px !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02), 0 4px 20px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  gap: 14px !important;
}

.matched-sourcing-nodes .node-card::before {
  display: none !important; /* Remove any left accent line */
}

.matched-sourcing-nodes .node-card:hover {
  transform: translateY(-2px) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
  border-color: rgba(59, 130, 246, 0.25) !important;
  border-top-color: rgba(96, 165, 250, 0.35) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 12px rgba(59, 130, 246, 0.12) !important;
}

/* Beautiful Geometric Outline Indicators matching scanner loop elements */
.matched-sourcing-nodes .node-card-thumb {
  width: 24px !important;
  height: 24px !important;
  border-radius: 0 !important;
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  flex-shrink: 0 !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  filter: none !important; /* Remove any parent variant filters */
}

.matched-sourcing-nodes .node-card:hover .node-card-thumb {
  transform: scale(1.08) !important;
  filter: drop-shadow(0 0 4px currentColor) !important;
}

/* SVG Outline Shapes - Circle, Square, Triangle */
.supplier-node-1 .node-card-thumb {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='2' fill='%233b82f6'/%3E%3C/svg%3E") !important;
  color: #3b82f6 !important;
}

.supplier-node-2 .node-card-thumb {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300f2fe' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='2.5'/%3E%3Ccircle cx='12' cy='12' r='2' fill='%2300f2fe'/%3E%3C/svg%3E") !important;
  color: #00f2fe !important;
}

.supplier-node-3 .node-card-thumb {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff4757' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3L2 21h20L12 3z'/%3E%3Ccircle cx='12' cy='13.5' r='2' fill='%23ff4757'/%3E%3C/svg%3E") !important;
  color: #ff4757 !important;
}

/* Badges styling */
.matched-sourcing-nodes .node-card .badge-source {
  font-size: 8.5px !important;
  padding: 2px 6px !important;
  border-radius: 5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  background: rgba(255, 107, 0, 0.06) !important;
  color: #ff6b00 !important;
  border: 1px solid rgba(255, 107, 0, 0.18) !important;
  font-family: var(--font-sans), system-ui !important;
}

.matched-sourcing-nodes .node-card .node-rating {
  font-size: 8.5px !important;
  color: #fbbf24 !important;
  font-weight: 600 !important;
  background: rgba(251, 191, 36, 0.05) !important;
  border: 1px solid rgba(251, 191, 36, 0.15) !important;
  padding: 2px 6px !important;
  border-radius: 5px !important;
}

/* Typography styles */
.matched-sourcing-nodes .node-card .node-supplier-name {
  font-size: 12.5px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  font-family: var(--font-sans), system-ui !important;
  margin: 1px 0 !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.matched-sourcing-nodes .node-card .price-match {
  font-size: 13.5px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  font-family: var(--font-sans), system-ui !important;
  display: flex !important;
  align-items: baseline !important;
  line-height: 1 !important;
  margin-top: 2px !important;
}

.matched-sourcing-nodes .node-card .price-match .usd-price {
  font-size: 11px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.4) !important;
  margin-left: 6px !important;
  font-family: var(--font-sans), system-ui !important;
}

/* Light mode support */
[data-theme="light"] .matched-sourcing-nodes .node-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.65) 100%) !important;
  border-color: rgba(9, 9, 11, 0.05) !important;
  border-top-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
}

[data-theme="light"] .matched-sourcing-nodes .node-card:hover {
  background: #ffffff !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.06), 0 0 1px 1px rgba(59, 130, 246, 0.05) !important;
}

[data-theme="light"] .matched-sourcing-nodes .node-card .node-supplier-name {
  color: rgba(9, 9, 11, 0.85) !important;
}

[data-theme="light"] .matched-sourcing-nodes .node-card .price-match {
  color: #09090b !important;
}

[data-theme="light"] .matched-sourcing-nodes .node-card .price-match .usd-price {
  color: rgba(9, 9, 11, 0.45) !important;
}
