/* ==========================================================================
   RivalDigest — Landing Page
   Palette: Sky Blue + White + Soft Slate — light, upbeat, trustworthy
   ========================================================================== */

/* --- SCROLL ANIMATIONS --- */
/* GPU-composited: only animates opacity + transform, never triggers layout */
.anim-hidden {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;
}

.anim-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto; /* release after animation completes */
}

/* Pricing card hover via class */
.pricing-card-hover {
  border-color: #94A3B8 !important;
}

/* --- TOKENS --- */
:root {
  --blue:        #2563EB;
  --blue-light:  #EFF6FF;
  --blue-mid:    #DBEAFE;
  --blue-bright: #3B82F6;
  --blue-deep:   #1D4ED8;

  --text-dark:   #0F172A;
  --text-body:   #374151;
  --text-muted:  #6B7280;
  --text-faint:  #9CA3AF;

  --border:      #E5E7EB;
  --border-blue: #BFDBFE;

  --bg:          #FFFFFF;
  --bg-soft:     #F8FAFF;
  --bg-hero:     #EFF6FF;

  --dark-bg:     #0F172A;
  --dark-surface:#1E293B;

  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1 { font-size: clamp(2rem, 6vw, 3.25rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.3; }
p  { color: var(--text-body); }
a  { color: inherit; text-decoration: none; }

/* --- LAYOUT --- */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 80px 0; }

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 56px; }
  .hero-inner { padding: 0 24px; }
  .container { padding: 0 24px; }
  .badge { font-size: 0.62rem; letter-spacing: 0.03em; padding: 4px 10px; max-width: calc(100vw - 40px); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  h1, .hero-headline { font-size: clamp(1.5rem, 7.5vw, 2rem) !important; width: 100%; max-width: 100%; line-height: 1.15; }
  .hero .badge { display: none; }
  .hero-sub, .hero-note { padding: 0 4px; max-width: 100%; word-wrap: break-word; }
  .hero-sub { font-size: 0.875rem; }
  .hero-note { white-space: normal; }
  .hero-sub { font-size: 0.9rem; }
  .hero-note { font-size: 0.75rem; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

/* --- BADGE --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid var(--border-blue);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.badge-light {
  color: #93C5FD;
  background: rgba(147,197,253,0.1);
  border-color: rgba(147,197,253,0.25);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}

.btn-sm  { font-size: 0.85rem; padding: 7px 14px; }
.btn-lg  { font-size: 1rem; padding: 14px 28px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 1px 3px rgba(37,99,235,0.25);
}
.btn-primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: var(--bg);
  color: var(--text-dark);
  border-color: var(--border);
}
.btn-outline:hover { background: var(--bg-soft); border-color: #9CA3AF; }

.btn-ghost {
  background: transparent;
  color: var(--text-body);
  border-color: var(--border);
}
.btn-ghost:hover { color: var(--text-dark); background: var(--bg-soft); }

/* --- NAV --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  /* GPU-composite the nav so blur/shadow never trigger a full repaint */
  will-change: transform;
  transform: translateZ(0);
  /* Shadow transition handled in CSS, toggled by .nav-scrolled class */
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: box-shadow 0.2s ease;
}

.nav-scrolled {
  box-shadow: 0 1px 24px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 80px;
  gap: 8px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { display: block; }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.nav-links a:hover { color: var(--text-dark); background: var(--bg-soft); }

.nav .btn { margin-left: 8px; }

/* Mobile nav hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger:hover { background: var(--bg-soft); }
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.2s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer (slide from right) ── */

/* Backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.nav-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer panel */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 80vw);
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: -8px 0 32px rgba(15, 23, 42, 0.15);
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.nav-mobile.open {
  transform: translateX(0);
  pointer-events: auto;
}

/* Drawer header */
.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.nav-mobile-header .nav-mobile-logo {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.nav-mobile-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 1.3rem;
  transition: background 0.12s, color 0.12s;
  -webkit-tap-highlight-color: transparent;
}
.nav-mobile-close:hover {
  background: var(--bg-soft);
  color: var(--text-dark);
}

/* Drawer links */
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 12px;
  flex: 1;
}
.nav-mobile-links a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 13px 14px;
  border-radius: var(--radius);
  transition: background 0.12s, color 0.12s;
}
.nav-mobile-links a:hover,
.nav-mobile-links a:active {
  background: var(--bg-soft);
  color: var(--text-dark);
}

/* Drawer footer CTA */
.nav-mobile-footer {
  padding: 16px 20px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* Prevent body scroll when drawer is open */
body.drawer-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { justify-content: space-between; }
  .nav-backdrop { display: block; }
}

/* --- HERO --- */
.hero {
  padding: 80px 0 72px;
  background: linear-gradient(160deg, #EFF6FF 0%, #F8FAFF 55%, #FFFFFF 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
  transform: translateZ(0); /* promote to own compositor layer */
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.hero-headline { color: var(--text-dark); margin-bottom: 20px; }
.hero-headline em { font-style: italic; color: var(--blue); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--text-faint);
}

@media (max-width: 480px) {
  .hero { padding: 56px 0 52px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
}

/* --- TRUST BAR --- */

/* --- SECTION HEADER --- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light h2 { color: #F1F5F9; }

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* --- HOW IT WORKS --- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

/* Each step is a card — equal height, equal padding */
.step {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Icon + connector row at top of card */
.step-icon-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-light);
  border: 1px solid var(--border-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Connector line drawn from inside icon-wrap across to the card edge,
   then continues visually into the gap between cards */
.step-connector-h {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  height: 2px;
  margin-left: 8px;
}

.step-connector-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--border-blue), transparent);
}

/* Arrow tip on the right edge */
.step-connector-arrow {
  position: absolute;
  right: -16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #BFDBFE;
  border-top: 2px solid #BFDBFE;
  transform: rotate(45deg);
}

.step-content h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.step-content p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .steps {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
    gap: 16px;
  }

  /* Hide horizontal connectors on mobile — cards stack vertically */
  .step-connector-h { display: none; }

  .step { padding: 24px 20px; }
}

/* --- SAMPLE REPORT --- */
.section-dark {
  background: var(--dark-bg);
  color: #E2E8F0;
}
.section-dark p { color: #94A3B8; }

.report-card {
  background: #0A0F1E;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 24px 56px rgba(0,0,0,0.45);
}

.report-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.025);
}

.report-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.report-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #60A5FA;
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.2);
  padding: 3px 9px;
  border-radius: 999px;
}

.report-date {
  font-size: 0.75rem;
  color: #475569;
  font-family: 'JetBrains Mono', monospace;
}

.report-title-row h3 {
  color: #E2E8F0;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.report-competitors {
  font-size: 0.75rem;
  color: #475569;
  font-family: 'JetBrains Mono', monospace;
}

.report-body {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.report-section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.report-competitor {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 16px 18px;
  margin-bottom: 10px;
}
.report-competitor:last-child { margin-bottom: 0; }

.competitor-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.competitor-name { font-weight: 700; color: #E2E8F0; font-size: 0.9rem; }

.change-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}
.change-badge-alert  { background: rgba(251,191,36,0.1);  color: #FCD34D; border: 1px solid rgba(251,191,36,0.2); }
.change-badge-info   { background: rgba(96,165,250,0.1);  color: #60A5FA; border: 1px solid rgba(96,165,250,0.2); }
.change-badge-neutral{ background: rgba(100,116,139,0.1); color: #64748B; border: 1px solid rgba(100,116,139,0.2); }

.competitor-summary {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.65;
  margin-bottom: 10px;
}
.competitor-summary strong { color: #CBD5E1; }

.key-signals { display: flex; flex-direction: column; gap: 4px; }

.signal {
  font-size: 0.78rem;
  color: #64748B;
  padding-left: 12px;
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.5;
}
.signal::before { content: '→'; position: absolute; left: 0; color: #3B82F6; }

.takeaways { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.takeaways li {
  font-size: 0.85rem;
  color: #94A3B8;
  padding-left: 18px;
  position: relative;
  line-height: 1.65;
}
.takeaways li::before { content: '▸'; position: absolute; left: 0; color: #60A5FA; }
.takeaways li strong { color: #CBD5E1; }
.takeaways li em    { font-style: italic; color: #CBD5E1; }

.report-footer {
  padding: 14px 28px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #334155;
  font-family: 'JetBrains Mono', monospace;
  flex-wrap: wrap;
  gap: 6px;
}

@media (max-width: 580px) {
  .report-body    { padding: 18px; }
  .report-header  { padding: 18px; }
  .report-footer  { padding: 12px 18px; flex-direction: column; }
}

/* --- PRICING --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.pricing-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.07); }

.pricing-card-featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 12px 36px rgba(37,99,235,0.12);
  background: #FAFCFF;
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 10px;
}

.price-amount {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.price-period { font-size: 0.88rem; color: var(--text-faint); }

.pricing-trial-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--text-faint);
  margin-top: 8px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
  min-height: 48px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}

.pricing-features li { font-size: 0.85rem; color: var(--text-body); }

@media (max-width: 820px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* --- SIGNUP --- */
.section-accent {
  background: var(--bg-hero);
  border-top: 1px solid var(--border-blue);
  border-bottom: 1px solid var(--border-blue);
}

.signup-card { max-width: 620px; margin: 0 auto; text-align: center; }
.signup-copy { margin-bottom: 24px; }
.signup-copy h2 { color: var(--text-dark); margin-bottom: 8px; }
.signup-copy p  { font-size: 1rem; color: var(--text-muted); }

.form-row {
  display: flex;
  gap: 8px;
}

.form-input {
  flex: 1;
  min-width: 0;
  font-family: inherit;
  font-size: 1rem;
  padding: 13px 16px;
  border: 1.5px solid var(--border-blue);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-input::placeholder { color: var(--text-faint); }

.form-note {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 10px;
}
.form-note a { color: var(--text-muted); text-decoration: underline; }

@media (max-width: 520px) {
  .form-row { flex-direction: column; }
}

/* --- FAQ --- */
.faq-container { max-width: 680px; }

.faq-list {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: background 0.12s;
  -webkit-tap-highlight-color: transparent;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-faint);
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-q:hover { background: var(--bg-soft); }
details[open] .faq-q { background: var(--bg-soft); }

.faq-a {
  padding: 0 20px 18px;
  background: var(--bg-soft);
}
.faq-a p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* --- FOOTER --- */
.footer {
  background: var(--dark-bg);
  color: #E2E8F0;
  padding: 52px 0 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 0.85rem;
  color: #475569;
  margin-top: 10px;
  max-width: 200px;
}

.footer-links { display: flex; gap: 44px; flex-wrap: wrap; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 2px;
}

.footer-col a { font-size: 0.85rem; color: #64748B; transition: color 0.15s; }
.footer-col a:hover { color: #CBD5E1; }

.footer-bottom {
  padding: 14px 0;
}
.footer-bottom span { font-size: 0.76rem; color: #334155; }

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-links  { gap: 24px; }
}


/* Onboarding pips */
.ob-pip { width:8px; height:8px; border-radius:50%; background:#CBD5E1; transition:background 0.2s; }
.ob-pip-active { background:var(--blue) !important; }
.ob-pip-done { background:#93C5FD; }
