/* ================================================================
   Simple Intelligence design system — canonical CSS
   Import from: shared/design-system/si-theme.css
   Used by: WordPress theme, SimpleTime, SimpleProjects, all products
   Source of truth: see shared/design-system/BASELINE.html
   ================================================================ */

:root {
  /* ── Canonical Simplicity IT brand palette (Brand Guidelines) ── */
  --si-prussian: #182C43;       /* Prussian Blue — primary wordmark */
  --si-night-sky: #112032;       /* Night Sky — darkest background */
  --si-emerald: #46B491;         /* Ocean Green — accent / mark color */
  --si-orange: #DC740E;          /* Orange — CTA accent */

  /* ── Derived surface tones ── */
  --si-navy: #112032;            /* alias: Night Sky for existing refs */
  --si-navy-mid: #162840;        /* mid-tone between Night Sky and Prussian */
  --si-navy-light: #1f365a;      /* lighter Prussian tint for cards */
  --si-emerald-glow: rgba(70, 180, 145, 0.5);
  --si-orange-glow: rgba(220, 116, 14, 0.35);
  --si-azure: #0078D4;           /* Microsoft Azure blue — optional accent */
  --si-azure-glow: rgba(0, 120, 212, 0.4);

  --si-white: #FFFFFF;
  --si-off-white: #F4F6F8;
  --si-text-muted: #8a9ab5;
  --si-text-light: #c0ccdd;
  --si-text-body-dark: #4a5e78;
  --si-text-subtle-dark: #5a6d85;

  --si-radius-sm: 6px;
  --si-radius-md: 8px;
  --si-radius-lg: 16px;
  --si-radius-pill: 100px;

  /* ── Brand typography (self-hosted licensed fonts) ── */
  --si-font-display: 'All Round Gothic', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --si-font-sans: 'Sofia Pro', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --si-font-serif: 'Playfair Display', Georgia, serif;
}

/* ── Licensed brand fonts (Fontspring, self-hosted) ── */
@font-face {
  font-family: 'All Round Gothic';
  src: url('./fonts/allroundgothic-book.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'All Round Gothic';
  src: url('./fonts/allroundgothic-medium.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'All Round Gothic';
  src: url('./fonts/allroundgothic-demi.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'All Round Gothic';
  src: url('./fonts/allroundgothic-bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('./fonts/sofiapro-light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('./fonts/sofiapro-regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('./fonts/sofiapro-regularitalic.otf') format('opentype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('./fonts/sofiapro-medium.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Sofia Pro';
  src: url('./fonts/sofiapro-bold.otf') format('opentype');
  font-weight: 700; font-style: normal; font-display: swap;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.si-theme {
  font-family: var(--si-font-sans);
  background: var(--si-navy);
  color: var(--si-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── HERO ─── */
.si-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.si-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(0, 120, 212, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse at 25% 60%, rgba(70, 180, 145, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, var(--si-night-sky) 0%, var(--si-navy-mid) 45%, var(--si-night-sky) 100%);
  z-index: 0;
}

.si-hero-gradient-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(70, 180, 145, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(0, 120, 212, 0.04) 0%, transparent 40%);
  animation: siMeshDrift 12s ease-in-out infinite alternate;
  z-index: 0;
}

.si-particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.si-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.si-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(70, 180, 145, 0.25);
  border-radius: var(--si-radius-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--si-emerald);
  backdrop-filter: blur(12px);
  background: rgba(70, 180, 145, 0.06);
  margin-bottom: 2rem;
  animation: siFadeUp 1s ease-out 0.3s both;
}

.si-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--si-emerald);
  box-shadow: 0 0 8px var(--si-emerald-glow);
  animation: siPulse 2s ease-in-out infinite;
}

.si-hero h1 {
  font-family: var(--si-font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: siFadeUp 1s ease-out 0.5s both;
}

.si-hero h1 .si-accent {
  background: linear-gradient(135deg, var(--si-emerald) 0%, var(--si-azure) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.si-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--si-text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  animation: siFadeUp 1s ease-out 0.7s both;
}

.si-hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: siFadeUp 1s ease-out 0.9s both;
}

/* ─── BUTTONS ─── */
.si-btn-primary {
  padding: 14px 32px;
  background: var(--si-emerald);
  color: var(--si-navy);
  font-family: var(--si-font-sans);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--si-radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.si-btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.15) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.si-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(70, 180, 145, 0.35); }
.si-btn-primary:hover::after { opacity: 1; }

.si-btn-secondary {
  padding: 14px 32px;
  background: transparent;
  color: var(--si-text-light);
  font-family: var(--si-font-sans);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--si-radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  backdrop-filter: blur(8px);
}
.si-btn-secondary:hover { border-color: rgba(255,255,255,0.3); color: var(--si-white); transform: translateY(-2px); }

/* ─── SCROLL INDICATOR ─── */
.si-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: siFadeUp 1s ease-out 1.2s both;
}
.si-scroll-indicator span { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--si-text-muted); }
.si-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--si-emerald), transparent);
  animation: siScrollPulse 2s ease-in-out infinite;
}

/* ─── LIGHT SECTIONS / TRANSITIONS ─── */
.si-transition-zone {
  height: 200px;
  background: linear-gradient(to bottom, var(--si-navy) 0%, var(--si-off-white) 100%);
  position: relative;
  z-index: 2;
}

.si-light-section {
  background: var(--si-off-white);
  color: var(--si-navy);
  position: relative;
  z-index: 2;
}

.si-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.si-section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--si-emerald);
  margin-bottom: 1rem;
}

.si-section-title {
  font-family: var(--si-font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--si-navy);
  margin-bottom: 1rem;
  max-width: 600px;
}

.si-section-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--si-text-body-dark);
  max-width: 540px;
  margin-bottom: 3rem;
}

/* ─── FEATURE CARDS ─── */
.si-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.si-feature-card {
  background: var(--si-white);
  border: 1px solid rgba(17, 32, 50, 0.08);
  border-radius: var(--si-radius-lg);
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.si-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--si-emerald), var(--si-azure));
  opacity: 0;
  transition: opacity 0.4s;
}
.si-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(17, 32, 50, 0.08);
  border-color: rgba(70, 180, 145, 0.2);
}
.si-feature-card:hover::before { opacity: 1; }

.si-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 22px;
}
.si-feature-icon.emerald { background: rgba(70, 180, 145, 0.1); color: var(--si-emerald); }
.si-feature-icon.azure   { background: rgba(0, 120, 212, 0.1); color: var(--si-azure); }
.si-feature-icon.navy    { background: rgba(17, 32, 50, 0.06); color: var(--si-navy); }

.si-feature-card h3 { font-size: 1.15rem; font-weight: 600; color: var(--si-navy); margin-bottom: 0.6rem; }
.si-feature-card p  { font-size: 0.9rem; line-height: 1.6; color: var(--si-text-subtle-dark); }

/* ─── STATS ─── */
.si-stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 3rem 0;
  border-top: 1px solid rgba(17, 32, 50, 0.08);
  border-bottom: 1px solid rgba(17, 32, 50, 0.08);
  margin-top: 4rem;
}
.si-stat-item { text-align: center; }
.si-stat-number { font-family: var(--si-font-serif); font-size: 2.5rem; font-weight: 600; color: var(--si-navy); line-height: 1; }
.si-stat-number .si-highlight { color: var(--si-emerald); }
.si-stat-label { font-size: 0.85rem; color: var(--si-text-subtle-dark); margin-top: 0.5rem; }

/* ─── CTA / DARK SECTIONS ─── */
.si-cta-section {
  background: var(--si-navy);
  position: relative;
  overflow: hidden;
}
.si-cta-section .si-section-inner { text-align: center; position: relative; z-index: 2; }
.si-cta-section .si-section-title { color: var(--si-white); max-width: 700px; margin: 0 auto 1rem; }
.si-cta-section .si-section-desc  { color: var(--si-text-muted); max-width: 500px; margin: 0 auto 2.5rem; }

.si-cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  z-index: 0;
}
.si-cta-glow.left  { left: -200px; top: -100px; background: var(--si-emerald); }
.si-cta-glow.right { right: -200px; bottom: -100px; background: var(--si-azure); }

/* ─── NAV ─── */
.si-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}
.si-nav.scrolled {
  background: rgba(17, 32, 50, 0.85);
  backdrop-filter: blur(20px);
  padding: 0.8rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.si-nav-logo {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--si-white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.si-logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--si-emerald) 0%, var(--si-azure) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--si-white);
}

.si-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}
.si-nav-links a { color: var(--si-text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.3s; }
.si-nav-links a:hover { color: var(--si-white); }

.si-nav-links .si-btn-nav {
  padding: 8px 20px;
  background: rgba(70, 180, 145, 0.1);
  border: 1px solid rgba(70, 180, 145, 0.25);
  border-radius: var(--si-radius-sm);
  color: var(--si-emerald);
  font-weight: 600;
  transition: all 0.3s;
}
.si-nav-links .si-btn-nav:hover { background: var(--si-emerald); color: var(--si-navy); }

/* ─── ANIMATIONS ─── */
@keyframes siMeshDrift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-20px, 15px) scale(1.05); }
}
@keyframes siPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes siFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes siScrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .si-features-grid { grid-template-columns: 1fr; }
  .si-stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .si-particle-canvas { display: none; }
}

/* ─── MOBILE NAVIGATION ─── */
.si-nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}

.si-nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--si-white, #ffffff);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.si-nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.si-nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.si-nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .si-nav {
    flex-wrap: wrap;
    position: relative;
  }

  .si-nav-hamburger {
    display: flex;
  }

  .si-nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 1.25rem;
    background: rgba(17, 32, 50, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(65, 181, 146, 0.15);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  }

  .si-nav-links.is-open {
    display: flex;
  }

  .si-nav-links li {
    list-style: none;
  }

  .si-nav-links a {
    font-size: 16px;
    padding: 4px 0;
    display: block;
  }

  .si-nav-links .si-btn-nav {
    text-align: center;
    padding: 12px 24px;
    margin-top: 0.25rem;
  }
}

/* ─── SOCIAL PROOF ─── */
.si-social-proof {
  background: #f5f4f0;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(17, 32, 50, 0.08);
  border-bottom: 1px solid rgba(17, 32, 50, 0.08);
}

.si-social-proof-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.si-social-proof-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 32, 50, 0.45);
  margin-bottom: 2rem;
}

.si-logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2.5rem 3rem;
}

.si-logo-strip img {
  height: 28px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.si-logo-strip img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.si-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  text-align: left;
}

.si-testimonial {
  background: #fff;
  border: 1px solid rgba(17, 32, 50, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
}

.si-testimonial p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(17, 32, 50, 0.75);
  margin-bottom: 1rem;
  font-style: italic;
}

.si-testimonial cite {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(17, 32, 50, 0.5);
  font-style: normal;
  letter-spacing: 0.03em;
}

/* ─── FOOTER NAV ─── */
.si-footer {
  background: #0b1929;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4rem 2rem 0;
}

.si-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.si-footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.si-footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.si-footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

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

.si-footer-col a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.si-footer-col a:hover {
  color: var(--si-emerald, #41b592);
}

.si-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.si-footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .si-footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .si-footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .si-footer-bottom {
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* ─── PRODUCT STATUS BADGES ───
   Upgrades the existing tone-based status pills to visually distinct
   weights so buyers can scan shipped vs in-development at a glance.
   Targets the class pattern already rendered by product-card.php and
   product-page.php (.si-product-card-status.si-status-{tone}) plus a
   generic .si-status-badge for any future inline use. */
.si-product-card-status,
.si-hero-badge.si-status-emerald,
.si-hero-badge.si-status-orange,
.si-hero-badge.si-status-muted,
.si-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Shipped / GA / In production — filled emerald, high visibility */
.si-product-card-status.si-status-emerald,
.si-hero-badge.si-status-emerald,
.si-status-badge.shipped,
.si-status-badge.ga,
.si-status-badge[data-status="shipped"],
.si-status-badge[data-status="ga"] {
  background: rgba(65, 181, 146, 0.18);
  color: var(--si-emerald, #41b592);
  border: 1px solid rgba(65, 181, 146, 0.35);
}

.si-product-card-status.si-status-emerald::before,
.si-hero-badge.si-status-emerald::before,
.si-status-badge.shipped::before,
.si-status-badge.ga::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--si-emerald, #41b592);
  box-shadow: 0 0 6px rgba(65, 181, 146, 0.7);
}

/* Nearing GA / Beta / In development — amber */
.si-product-card-status.si-status-orange,
.si-hero-badge.si-status-orange,
.si-status-badge.nearing-ga,
.si-status-badge.in-development,
.si-status-badge[data-status="nearing-ga"],
.si-status-badge[data-status="in-development"] {
  background: rgba(255, 180, 50, 0.12);
  color: #f0a500;
  border: 1px solid rgba(255, 180, 50, 0.25);
}

/* Coming soon / Planned — muted outline only */
.si-product-card-status.si-status-muted,
.si-hero-badge.si-status-muted,
.si-status-badge.planned,
.si-status-badge.coming-soon,
.si-status-badge[data-status="planned"],
.si-status-badge[data-status="coming-soon"] {
  background: transparent;
  color: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* On light-section cards, the muted badge needs a dark-ink variant so
   the outline remains legible on a light background. */
.si-light-section .si-product-card-status.si-status-muted {
  color: rgba(17, 32, 50, 0.4);
  border-color: rgba(17, 32, 50, 0.12);
}
