/* ============================================================
   VoicePrivate — Legal Edition — Amber Accent Overrides
   Loaded LAST to override parent CSS custom properties
   and hardcoded rgba(14, 165, 233, ...) sky-blue values
   ============================================================ */

:root {
  /* Accent — amber palette */
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --accent-dark: #d97706;
  --accent-gradient: linear-gradient(135deg, #fbbf24, #f59e0b);
  --accent-gradient-hover: linear-gradient(135deg, #fde68a, #fbbf24);

  /* Text */
  --text-accent: #fbbf24;

  /* Glow — amber */
  --glow-accent: 0 0 40px rgba(245, 158, 11, 0.25);
  --glow-accent-strong: 0 0 60px rgba(245, 158, 11, 0.35);
}

/* ============================================================
   Hardcoded rgba(14, 165, 233, ...) overrides
   ============================================================ */

/* base.css — ::selection */
::selection {
  background: rgba(245, 158, 11, 0.3);
}

/* glass.css — .glass--accent */
.glass--accent {
  border-color: rgba(245, 158, 11, 0.3);
}

/* glass.css — .glass--hover:hover */
.glass--hover:hover {
  border-color: rgba(245, 158, 11, 0.4);
}

/* components.css — .badge--accent */
.badge--accent {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--accent-light);
}

/* components.css — .card:hover */
.card:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

/* components.css — .card__icon */
.card__icon {
  background: rgba(245, 158, 11, 0.1);
}

/* components.css — .table highlights */
.table tr:hover td {
  background: rgba(245, 158, 11, 0.03);
}

.table .col-highlight {
  background: rgba(245, 158, 11, 0.05);
}

.table .col-highlight-header {
  background: rgba(245, 158, 11, 0.1);
}

/* components.css — .input:focus */
.input:focus {
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
  border-color: var(--accent);
}

/* home.css — .hero::before radial glow */
.hero::before {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
}

/* home.css — .cta-banner__inner::after */
.cta-banner__inner::after {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

/* features.css — .architecture__node--accent */
.architecture__node--accent {
  border-color: rgba(245, 158, 11, 0.4);
}

/* features.css — .pipeline__step */
.pipeline__step {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* pricing.css — .pricing-card--popular */
.pricing-card--popular {
  border-color: rgba(245, 158, 11, 0.4);
}

/* faq.css — .accordion__item--open */
.accordion__item--open {
  border-color: rgba(245, 158, 11, 0.3);
}

/* privacy.css — .security-item__icon */
.security-item__icon {
  background: rgba(245, 158, 11, 0.1);
}

/* ============================================================
   Recording Pill Component
   ============================================================ */

.recording-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  background: #1e293b;
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(71, 85, 105, 0.3);
  margin: 2rem auto 0;
}

.recording-pill__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
  animation: pill-pulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pill-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(239, 68, 68, 0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 4px rgba(239, 68, 68, 0.3); }
}

.recording-pill__waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
}

.recording-pill__bar {
  width: 4px;
  border-radius: 2px;
  background: var(--accent-light);
  animation: pill-wave 1s ease-in-out infinite;
}

.recording-pill__bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.recording-pill__bar:nth-child(2) { height: 65%; animation-delay: 0.1s; }
.recording-pill__bar:nth-child(3) { height: 85%; animation-delay: 0.2s; }
.recording-pill__bar:nth-child(4) { height: 100%; animation-delay: 0.15s; }
.recording-pill__bar:nth-child(5) { height: 85%; animation-delay: 0.25s; }
.recording-pill__bar:nth-child(6) { height: 65%; animation-delay: 0.3s; }
.recording-pill__bar:nth-child(7) { height: 40%; animation-delay: 0.05s; }

@keyframes pill-wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

.recording-pill__timer {
  font-family: var(--font-mono);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-primary);
  min-width: 2.5rem;
  letter-spacing: 0.02em;
}

/* Static variant used in feature sections (no extra margin) */
.recording-pill--static {
  margin: 0;
}
