/* se-dakota-card-styles-f4357b.css */
@keyframes seDakotaRingPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.65); }
    50%      { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  }
  @keyframes seDakotaCardGlow {
    0%, 100% { box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(220,38,38,0.45), 0 0 24px 4px rgba(220,38,38,0.22); }
    50%      { box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(220,38,38,0.75), 0 0 38px 10px rgba(220,38,38,0.45); }
  }
  .dakota-card {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 60;
    width: 320px;
    max-width: calc(100vw - 32px);
    background: linear-gradient(160deg, #1a1a1a 0%, #0e0e0e 100%);
    border-radius: 18px;
    padding: 16px 16px 14px;
    animation: seDakotaCardGlow 2.6s ease-in-out infinite;
  }
  .dakota-card[hidden] { display: none; }
  .dakota-card__close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: transparent;
    border: 0;
    color: rgba(255,255,255,0.5);
    font-size: 22px;
    line-height: 1;
    width: 28px;
    height: 28px;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
  }
  .dakota-card__close:hover { color: #fff; background: rgba(255,255,255,0.08); }
  .dakota-card__inner { display: flex; align-items: flex-start; gap: 12px; }
  .dakota-card__avatar {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
  }
  .dakota-card__avatar-letter {
    color: #fff;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.04em;
  }
  .dakota-card__status {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #1a1a1a;
    animation: seDakotaRingPulse 1.5s ease-in-out infinite;
  }
  .dakota-card__body { flex: 1 1 auto; min-width: 0; }
  .dakota-card__name {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
  }
  .dakota-card__name strong {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .dakota-card__status-text {
    color: #22c55e;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .dakota-card__msg {
    color: #d4d4d8;
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .dakota-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .dakota-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
    border: 0;
  }
  .dakota-card__btn--voice { background: #dc2626; color: #fff; }
  .dakota-card__btn--voice:hover { background: #ef4444; transform: translateY(-1px); }
  .dakota-card__btn--text {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
  }
  .dakota-card__btn--text:hover { background: rgba(255,255,255,0.14); transform: translateY(-1px); }
  .dakota-reopen {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 60;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #fff;
    font-size: 26px;
    border: 0;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(220,38,38,0.5), 0 0 24px 4px rgba(220,38,38,0.3);
    animation: seDakotaCardGlow 2.6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .dakota-reopen[hidden] { display: none; }
  .dakota-reopen__dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #991b1b;
    animation: seDakotaRingPulse 1.5s ease-in-out infinite;
  }
  @media (max-width: 480px) {
    .dakota-card {
      right: 12px;
      bottom: 12px;
      width: calc(100vw - 24px);
    }
    .dakota-card__msg { font-size: 12.5px; }
  }

/* se-dakota-mobile-defer-css-207f28.css */
/* Reserve bottom space so a permanently-visible fixed card never
     blocks a CTA. Mirrors the safe-area-inset iOS pattern. */
  @media (max-width: 640px) {
    body { padding-bottom: 96px; }
  }
