/* "Nurture with AI" adviser-widget mock. brand.css must load first.
   Rendered inside a light section on /agents (#adviser). */

  .nw-figure { margin: 0; max-width: 440px; }

  /* Fake client-record strip with the pill button beside it. */
  .nw-context {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid rgba(12, 34, 64, 0.1);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 14px 40px -24px rgba(12, 34, 64, 0.35);
  }
  .nw-client {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(12, 34, 64, 0.55);
  }
  .nw-pill {
    display: inline-flex;
    align-items: center;
    background: var(--signal);
    color: #fff;
    border-radius: 999px;
    padding: 8px 16px;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px -12px rgba(229, 39, 60, 0.7);
    white-space: nowrap;
  }
  .nw-stem {
    width: 2px;
    height: 26px;
    margin: 0 auto;
    background: repeating-linear-gradient(rgba(12, 34, 64, 0.3) 0 5px, transparent 5px 10px);
  }

  /* The widget panel itself. */
  .nw-panel {
    background: #fff;
    border: 1px solid rgba(12, 34, 64, 0.1);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 24px 60px -30px rgba(12, 34, 64, 0.4);
  }
  .nw-field { margin-bottom: 12px; }
  .nw-label {
    display: block;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(12, 34, 64, 0.45);
    margin-bottom: 6px;
  }
  .nw-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border: 1px solid rgba(12, 34, 64, 0.16);
    border-radius: 10px;
    padding: 9px 12px;
    font-family: var(--sans);
    font-size: 13px;
    color: var(--ink);
  }
  .nw-caret { color: rgba(12, 34, 64, 0.4); font-size: 11px; }
  .nw-chips { display: flex; gap: 8px; flex-wrap: wrap; }
  .nw-chip {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 11px;
    color: rgba(12, 34, 64, 0.7);
    border: 1px solid rgba(12, 34, 64, 0.2);
    border-radius: 999px;
    padding: 4px 11px;
  }
  .nw-chip-on {
    background: rgba(229, 39, 60, 0.08);
    border-color: var(--signal);
    color: var(--signal);
    font-weight: 600;
  }
  .nw-chip-off { opacity: 0.4; }

  /* Editable draft box. */
  .nw-draft {
    border: 1px solid rgba(12, 34, 64, 0.12);
    border-radius: 12px;
    background: #F7F5F0;
    padding: 11px 13px;
  }
  .nw-draft-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(12, 34, 64, 0.45);
    margin-bottom: 8px;
  }
  .nw-redraft { color: var(--signal); }
  .nw-draft-text {
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink);
    margin: 0 0 10px;
  }
  .nw-draft-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .nw-segments {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(12, 34, 64, 0.45);
  }
  .nw-send {
    display: inline-flex;
    align-items: center;
    background: var(--signal);
    color: #fff;
    border-radius: 999px;
    padding: 6px 18px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 12px;
  }
  .nw-caption {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute-light);
    margin-top: 12px;
  }
