/* Shared Radiant Home styles for the companion plugin */

:root {
  --rh-background: #ffffff;
  --rh-foreground: #161a1f;
  --rh-card: #ffffff;
  --rh-primary: #21c45d;
  --rh-primary-hover: #16a34a;
  --rh-primary-foreground: #ffffff;
  --rh-secondary: #f8fafc;
  --rh-muted-foreground: #586173;
  --rh-accent: #fbcf1b;
  --rh-border: #eff2f5;
  --rh-dark: #0e1b10;
  --rh-radius-button: 999px;
  --rh-radius-card: 24px;
  --rh-radius-image: 24px;
  --rh-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --rh-shadow-medium: 0 18px 50px rgba(15, 23, 42, 0.10);
}

.rh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(33, 196, 93, 0.1);
  color: var(--rh-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.rh-pill-button .et_pb_button,
.rh-pill-button.et_pb_button,
.rh-pill-button .et_pb_button:visited {
  background: var(--rh-primary);
  color: var(--rh-primary-foreground) !important;
  border: 1px solid var(--rh-primary);
  border-radius: var(--rh-radius-button);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.rh-pill-button .et_pb_button:hover,
.rh-pill-button.et_pb_button:hover {
  background: var(--rh-primary-hover) !important;
  border-color: var(--rh-primary-hover) !important;
  transform: scale(1.03);
}

.rh-button-outline-light .et_pb_button,
.rh-button-outline-light.et_pb_button,
.rh-button-outline-light .et_pb_button:visited {
  background: transparent;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--rh-radius-button);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.rh-stat {
  text-align: center;
}

.rh-stat-number {
  color: var(--rh-foreground);
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.rh-stat-label {
  margin-top: 10px;
  color: var(--rh-muted-foreground);
  font-size: 16px;
  font-weight: 500;
}

.rh-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.rh-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--rh-foreground);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.rh-checklist li + li {
  margin-top: 12px;
}

.rh-checklist li::before {
  content: "";
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
  background: rgba(33, 196, 93, 0.1);
}