/* ============================================================
   rc-product-v2.css
   Scope: .prdv2-* — Product page v2 surface
   Inherits v2 design system (S68 §2): light counterweight,
   workspace composition, synchronized hover. Part 1 of 2.
   ============================================================ */

.prdv2-hero,
.prdv2-band {
    --pv-bg-dark:       #0F1235;
    --pv-bg-light:      #F7F8FC;
    --pv-card:          #FFFFFF;
    --pv-receipt:       #FAFBFE;
    --pv-ink:           #0F1235;
    --pv-ink-2:         #2A2F5C;
    --pv-muted:         #6B7390;
    --pv-muted-2:       #8A91AE;
    --pv-hairline:      rgba(15, 18, 53, 0.08);
    --pv-hairline-2:    rgba(15, 18, 53, 0.12);
    --pv-aurora:        #3A43D1;
    --pv-aurora-hi:     #4A53E0;
    --pv-aurora-soft:   rgba(58, 67, 209, 0.10);
    --pv-mint:          #5BE6C9;
    --pv-mint-soft:     #E6FBF6;
    --pv-mint-ink:      #0E8F73;
    --pv-amber:         #F59E0B;
    --pv-pos:           #16a34a;
    --pv-pos-soft:      rgba(22, 163, 74, 0.10);
    --pv-pending-bg:    #FFE4E4;
    --pv-pending-ink:   #B42318;
    --pv-neutral-soft:  rgba(15, 18, 53, 0.06);
    --pv-ease:          cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── EYEBROW PILL ─────────────────────────────────────────── */
.prdv2-eyebrow {
    display: inline-block;
    background: var(--pv-mint-soft);
    color: var(--pv-mint-ink);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 999px;
}
.prdv2-eyebrow--dark { background: rgba(91, 230, 201, 0.14); color: var(--pv-mint); }

/* ── HERO ─────────────────────────────────────────────────── */
.prdv2-hero {
    background: var(--pv-bg-dark);
    padding: 96px 32px 110px;
    text-align: center;
}
.prdv2-hero__wrap { max-width: 920px; margin: 0 auto; }
.prdv2-hero__eyebrow { margin-bottom: 20px; }
.prdv2-hero__title {
    font-size: clamp(34px, 4.4vw, 52px);
    font-weight: 700; line-height: 1.08;
    letter-spacing: -0.022em; color: #FFFFFF;
    margin: 0 auto 18px; max-width: 820px;
}
.prdv2-hero__sub {
    font-size: 17px; line-height: 1.55;
    color: rgba(255, 255, 255, 0.62);
    max-width: 620px; margin: 0 auto 32px;
}
.prdv2-hero__ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.prdv2-cta {
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 999px; padding: 13px 26px;
    font-size: 14.5px; font-weight: 600;
    letter-spacing: -0.005em; text-decoration: none;
    transition: transform 0.2s var(--pv-ease), background 0.2s var(--pv-ease), border-color 0.2s var(--pv-ease);
}
.prdv2-cta--primary { background: var(--pv-mint); color: var(--pv-bg-dark); }
.prdv2-cta--primary:hover { background: #6FEED1; color: var(--pv-bg-dark); transform: translateY(-1px); text-decoration: none; }
.prdv2-cta--ghost { background: transparent; color: #FFFFFF; border: 1px solid rgba(255, 255, 255, 0.22); }
.prdv2-cta--ghost:hover { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.04); text-decoration: none; }

/* ── BAND ─────────────────────────────────────────────────── */
.prdv2-band { padding: 96px 32px 104px; }
.prdv2-band--light { background: var(--pv-bg-light); }
.prdv2-band__wrap { max-width: 1500px; margin: 0 auto; }
.prdv2-band__head { text-align: center; margin-bottom: 56px; }
.prdv2-band__title {
    font-size: clamp(32px, 4.2vw, 56px);
    font-weight: 700; line-height: 1.06;
    letter-spacing: -0.022em; color: var(--pv-ink);
    margin: 18px auto 28px;
    max-width: 880px;
}
.prdv2-band__title--accent { color: var(--pv-aurora); }

/* feature pills row under H2 */
.prdv2-fpills {
    display: inline-flex; flex-wrap: wrap;
    justify-content: center; gap: 32px;
    margin-top: 8px;
}
.prdv2-fpill {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 15px; font-weight: 600; color: var(--pv-ink);
    letter-spacing: -0.005em;
}
.prdv2-fpill__icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--pv-mint-soft); color: var(--pv-mint-ink);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.prdv2-fpill:nth-child(2) .prdv2-fpill__icon { background: var(--pv-aurora-soft); color: var(--pv-aurora); }

/* ── WORKSPACE GRID ───────────────────────────────────────── */
.prdv2-workspace {
    position: relative;
    display: grid;
    grid-template-columns: 264px 1fr 332px;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 56px;
}
.prdv2-ws__left,
.prdv2-ws__right {
    background: var(--pv-card);
    border: 1px solid var(--pv-hairline);
    border-radius: 20px;
    display: flex; flex-direction: column;
}
.prdv2-ws__left { padding: 22px 18px; }
.prdv2-ws__right { padding: 0; overflow: hidden; }
.prdv2-ws__center { position: relative; min-width: 0; }
.prdv2-panel__title {
    font-size: 14px; font-weight: 700;
    color: var(--pv-ink); margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.prdv2-ws__link {
    margin-top: auto;
    padding-top: 14px; margin-top: 16px;
    text-align: center;
    font-size: 13px; font-weight: 600;
    color: var(--pv-aurora);
    text-decoration: none;
    border-top: 1px solid var(--pv-hairline);
    display: block;
    transition: color 0.2s var(--pv-ease);
}
.prdv2-ws__link:hover { color: var(--pv-aurora-hi); text-decoration: none; }
.prdv2-ws__link i { font-size: 12px; vertical-align: -1px; margin-left: 4px; }

/* ── MINI REVIEW (left aside) ─────────────────────────────── */
.prdv2-mini-rev {
    background: var(--pv-receipt);
    border: 1px solid var(--pv-hairline);
    border-radius: 14px;
    padding: 12px 14px 14px;
    margin-bottom: 12px;
    transition: border-color 0.28s var(--pv-ease), transform 0.28s var(--pv-ease), box-shadow 0.28s var(--pv-ease);
}
.prdv2-mini-rev:hover {
    transform: translateY(-2px);
    border-color: var(--pv-hairline-2);
    box-shadow: 0 12px 28px -16px rgba(15, 18, 53, 0.18);
}
.prdv2-mini-rev:last-of-type { margin-bottom: 0; }
.prdv2-mini-rev__head {
    display: flex; align-items: center; gap: 9px;
    margin-bottom: 6px;
}
.prdv2-mini-rev__name { font-size: 13px; font-weight: 600; color: var(--pv-ink); line-height: 1.2; }
.prdv2-mini-rev__meta { font-size: 11px; color: var(--pv-muted); margin-top: 1px; }
.prdv2-mini-rev .prdv2-stars { margin: 4px 0 6px; }
.prdv2-mini-rev__text {
    font-size: 12.5px; line-height: 1.5;
    color: var(--pv-ink-2); margin: 0 0 8px;
}
.prdv2-stars { display: inline-flex; gap: 1.5px; align-items: center; }
.prdv2-stars-img { height: 18px; width: auto; display: inline-block; vertical-align: middle; }
.prdv2-mini-rev .prdv2-stars-img { height: 20px; margin: 4px 0 6px; }
.prdv2-fpill__star {
    width: 26px; height: 26px;
    display: inline-block; vertical-align: middle;
}

/* ── AVATAR ───────────────────────────────────────────────── */
.prdv2-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--pv-mint-soft);
    color: var(--pv-mint-ink);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; letter-spacing: 0.02em;
    flex-shrink: 0;
}
.prdv2-avatar--xs { width: 26px; height: 26px; font-size: 10px; }

/* ── TAGS (sentiment + status pills) ──────────────────────── */
.prdv2-tag {
    display: inline-flex; align-items: center;
    font-size: 10.5px; font-weight: 700;
    padding: 3px 9px; border-radius: 999px;
    letter-spacing: 0.01em;
}
.prdv2-tag--pending  { background: var(--pv-pending-bg); color: var(--pv-pending-ink); }
.prdv2-tag--ok       { background: var(--pv-mint-soft); color: var(--pv-mint-ink); }
.prdv2-tag--info     { background: var(--pv-aurora-soft); color: var(--pv-aurora); }
.prdv2-tag--positive { background: var(--pv-pos-soft); color: var(--pv-pos); }
.prdv2-tag--negative { background: var(--pv-pending-bg); color: var(--pv-pending-ink); }
.prdv2-tag--neutral  { background: var(--pv-neutral-soft); color: var(--pv-muted); }

/* ── INBOX WINDOW ─────────────────────────────────────────── */
.prdv2-inbox-window {
    background: var(--pv-card);
    border: 1px solid var(--pv-hairline);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 56px 1fr;
    box-shadow: 0 16px 40px -24px rgba(15, 18, 53, 0.12);
}
.prdv2-inbox__rail {
    background: var(--pv-receipt);
    border-right: 1px solid var(--pv-hairline);
    display: flex; flex-direction: column; align-items: center;
    padding: 18px 0; gap: 6px;
}
.prdv2-inbox__rail-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--pv-muted-2); font-size: 16px;
    transition: background 0.2s var(--pv-ease), color 0.2s var(--pv-ease);
}
.prdv2-inbox__rail-icon--active {
    background: var(--pv-aurora-soft);
    color: var(--pv-aurora);
}
.prdv2-inbox__main { display: flex; flex-direction: column; min-width: 0; }
.prdv2-inbox__header {
    display: flex; align-items: center;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--pv-hairline);
}
.prdv2-inbox__title {
    font-size: 22px; font-weight: 700;
    color: var(--pv-ink); letter-spacing: -0.012em;
    margin: 0; line-height: 1;
}
.prdv2-inbox__head-right {
    margin-left: auto;
    display: flex; align-items: center; gap: 12px;
}
.prdv2-inbox__bell {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--pv-receipt);
    border: 1px solid var(--pv-hairline);
    display: flex; align-items: center; justify-content: center;
    color: var(--pv-ink-2); font-size: 13px;
}
.prdv2-inbox__toolbar {
    display: flex; gap: 8px; align-items: center;
    padding: 14px 24px;
    border-bottom: 1px solid var(--pv-hairline);
    flex-wrap: wrap;
}
.prdv2-filter {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--pv-receipt);
    border: 1px solid var(--pv-hairline);
    border-radius: 10px;
    padding: 7px 12px;
    font-size: 12px; font-weight: 500; color: var(--pv-ink-2);
}
.prdv2-filter i { color: var(--pv-muted-2); font-size: 11px; }
.prdv2-search {
    margin-left: auto;
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--pv-receipt);
    border: 1px solid var(--pv-hairline);
    border-radius: 10px;
    padding: 7px 12px;
    font-size: 12px; color: var(--pv-muted-2);
    min-width: 200px;
}
.prdv2-search i { font-size: 12px; }
.prdv2-inbox__list { display: flex; flex-direction: column; }
.prdv2-inbox-row {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--pv-hairline);
    transition: background 0.2s var(--pv-ease);
}
.prdv2-inbox-row:last-child { border-bottom: none; }
.prdv2-inbox-row:hover { background: var(--pv-receipt); }
.prdv2-row-body { flex: 1; min-width: 0; }
.prdv2-row-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 4px; flex-wrap: wrap;
}
.prdv2-row-name { font-size: 13.5px; font-weight: 600; color: var(--pv-ink); }
.prdv2-row-loc  { font-size: 12px; color: var(--pv-muted); }
.prdv2-row-time { font-size: 12px; color: var(--pv-muted-2); margin-left: auto; }
.prdv2-row-text {
    font-size: 13px; color: var(--pv-ink-2);
    margin: 0 0 8px; line-height: 1.45;
}
.prdv2-row-foot { display: flex; align-items: center; gap: 10px; }
.prdv2-status {
    flex-shrink: 0;
    display: inline-flex; align-items: center;
    font-size: 11px; font-weight: 600;
    padding: 5px 11px; border-radius: 8px;
    align-self: flex-start;
    margin-top: 2px;
}
.prdv2-status--pending { background: var(--pv-pending-bg); color: var(--pv-pending-ink); }
.prdv2-status--ok      { background: var(--pv-pos-soft); color: var(--pv-pos); }
.prdv2-status--info    { background: var(--pv-aurora-soft); color: var(--pv-aurora); }
.prdv2-inbox__loadmore {
    text-align: center;
    padding: 14px;
    font-size: 12.5px; font-weight: 500;
    color: var(--pv-muted);
    border-top: 1px solid var(--pv-hairline);
    background: var(--pv-receipt);
}
.prdv2-inbox__loadmore i { font-size: 11px; margin-left: 4px; vertical-align: -1px; }

/* ── AI REPLY POPOVER (overlaps inbox) ────────────────────── */
.prdv2-ai-arrow {
    position: absolute;
    top: 220px; right: 154px;
    pointer-events: none;
    z-index: 6;
}
.prdv2-ai-popover {
    position: absolute;
    top: 240px;
    right: -32px;
    width: 268px;
    background: var(--pv-card);
    border: 1px solid var(--pv-hairline);
    border-radius: 16px;
    box-shadow: 0 28px 56px -20px rgba(15, 18, 53, 0.25);
    z-index: 8;
    overflow: hidden;
}
.prdv2-ai-popover__head {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 16px 10px;
}
.prdv2-ai-popover__icon {
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--pv-aurora-soft); color: var(--pv-aurora);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px;
}
.prdv2-ai-popover__title {
    font-size: 13px; font-weight: 600;
    color: var(--pv-ink); letter-spacing: -0.005em;
}
.prdv2-ai-popover__body {
    padding: 4px 16px 12px;
}
.prdv2-ai-popover__field { margin-bottom: 10px; }
.prdv2-ai-popover__label {
    display: block;
    font-size: 11px; color: var(--pv-muted);
    margin-bottom: 5px;
}
.prdv2-ai-popover__tone {
    display: flex; align-items: center; gap: 8px;
    background: var(--pv-receipt);
    border: 1px solid var(--pv-hairline);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 12.5px;
    color: var(--pv-ink-2);
}
.prdv2-ai-popover__tone > i:first-child { color: var(--pv-amber); font-size: 14px; }
.prdv2-ai-popover__tone-val { font-weight: 600; color: var(--pv-ink); }
.prdv2-ai-popover__chev { margin-left: auto; color: var(--pv-muted-2); font-size: 11px; }
.prdv2-ai-popover__reply {
    font-size: 12.5px; line-height: 1.55;
    color: var(--pv-ink-2);
    margin: 0 0 10px;
    background: var(--pv-receipt);
    border: 1px solid var(--pv-hairline);
    border-radius: 10px;
    padding: 10px 12px;
}
.prdv2-ai-popover__sig {
    font-size: 10.5px; color: var(--pv-muted-2);
    font-style: italic;
}
.prdv2-ai-popover__actions {
    display: flex; gap: 8px;
    padding: 12px 16px 14px;
    border-top: 1px solid var(--pv-hairline);
}
.prdv2-ai-btn {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 11.5px; font-weight: 600;
    letter-spacing: -0.005em;
    white-space: nowrap;
    transition: background 0.2s var(--pv-ease), border-color 0.2s var(--pv-ease);
}
.prdv2-ai-btn--ghost {
    background: var(--pv-card); color: var(--pv-ink);
    border: 1px solid var(--pv-hairline-2);
}
.prdv2-ai-btn--primary {
    background: var(--pv-aurora); color: #fff;
    border: 1px solid var(--pv-aurora);
}

/* ── CUSTOMER MESSAGES (right) ────────────────────────────── */
.prdv2-msg-window {
    display: flex; flex-direction: column;
    height: 100%;
    min-height: 480px;
}
.prdv2-msg-window__head {
    display: flex; align-items: center;
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--pv-hairline);
}
.prdv2-msg-window__head .prdv2-panel__title { margin-bottom: 0; }
.prdv2-live {
    margin-left: auto;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 600;
    color: var(--pv-pos);
}
.prdv2-live__dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--pv-pos);
    animation: prdv2-pulse 2s var(--pv-ease) infinite;
}
@keyframes prdv2-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.prdv2-msg-contact {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--pv-hairline);
    background: var(--pv-receipt);
}
.prdv2-msg-contact__info { flex: 1; min-width: 0; }
.prdv2-msg-contact__via {
    font-size: 11px; color: var(--pv-muted);
    margin-top: 1px;
}
.prdv2-msg-window__body {
    flex: 1;
    padding: 16px 18px;
    display: flex; flex-direction: column;
    gap: 10px;
    background: var(--pv-bg-light);
}
.prdv2-bubble-wrap { display: flex; }
.prdv2-bubble-wrap--in  { justify-content: flex-start; }
.prdv2-bubble-wrap--out { justify-content: flex-end; }
.prdv2-bubble {
    max-width: 80%;
    padding: 9px 13px;
    border-radius: 14px;
    font-size: 12.5px; line-height: 1.45;
}
.prdv2-bubble--in {
    background: var(--pv-card);
    border: 1px solid var(--pv-hairline);
    color: var(--pv-ink-2);
    border-bottom-left-radius: 4px;
}
.prdv2-bubble--out {
    background: var(--pv-mint);
    color: var(--pv-bg-dark);
    border-bottom-right-radius: 4px;
}
.prdv2-bubble--typing {
    background: var(--pv-card);
    border: 1px solid var(--pv-hairline);
    padding: 12px 14px;
    border-bottom-left-radius: 4px;
}
.prdv2-typing-dots {
    display: inline-flex; align-items: center; gap: 4px;
}
.prdv2-typing-dots span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--pv-muted-2);
    animation: prdv2-typing 1.4s var(--pv-ease) infinite;
}
.prdv2-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.prdv2-typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes prdv2-typing {
    0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
    30%           { opacity: 1; transform: translateY(-2px); }
}
.prdv2-msg-window__composer {
    display: flex; align-items: center; gap: 6px;
    padding: 12px 14px;
    border-top: 1px solid var(--pv-hairline);
}
.prdv2-msg-input {
    flex: 1;
    background: var(--pv-receipt);
    border: 1px solid var(--pv-hairline);
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 12.5px; color: var(--pv-muted-2);
}
.prdv2-msg-tool {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--pv-muted-2); font-size: 14px;
}
.prdv2-msg-send {
    width: 32px; height: 32px;
    background: var(--pv-aurora); color: #fff;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: background 0.2s var(--pv-ease);
}
.prdv2-msg-send:hover { background: var(--pv-aurora-hi); }
.prdv2-msg-window__foot {
    display: flex; align-items: center;
    padding: 12px 18px;
    border-top: 1px solid var(--pv-hairline);
    background: var(--pv-receipt);
}
.prdv2-msg-window__meta { font-size: 11.5px; color: var(--pv-muted); }
.prdv2-msg-window__metaval {
    margin-left: auto;
    font-size: 12px; font-weight: 700; color: var(--pv-ink);
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1280px) {
    .prdv2-workspace { grid-template-columns: 240px 1fr 300px; gap: 18px; }
    .prdv2-ai-popover { width: 248px; right: -16px; }
    .prdv2-ai-arrow { right: 138px; }
}
@media (max-width: 1100px) {
    .prdv2-workspace { grid-template-columns: 1fr; gap: 20px; }
    .prdv2-ai-popover {
        position: relative; top: auto; right: auto;
        width: 100%; margin-top: 16px;
    }
    .prdv2-ai-arrow { display: none; }
}
@media (max-width: 900px) {

    .prdv2-hero { padding: 64px 24px 76px; }
    .prdv2-band { padding: 72px 24px 80px; }
    .prdv2-band__head { margin-bottom: 40px; }
    .prdv2-fpills { gap: 18px; }
    .prdv2-fpill { font-size: 13px; }
    .prdv2-inbox-window { grid-template-columns: 48px 1fr; }
    .prdv2-inbox__rail-icon { width: 32px; height: 32px; font-size: 14px; }
    .prdv2-inbox__header,
    .prdv2-inbox__toolbar { padding-left: 16px; padding-right: 16px; }
    .prdv2-inbox-row { padding: 14px 16px; }
    .prdv2-search { display: none; }
}
@media (max-width: 600px) {
    .prdv2-row-time { margin-left: 0; }
}
@media (max-width: 480px) {
    .prdv2-hero__ctas { flex-direction: column; align-items: stretch; }
    .prdv2-cta { width: 100%; }
}

/* ── REDUCED MOTION ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .prdv2-cta, .prdv2-mini-rev, .prdv2-inbox-row,
    .prdv2-ai-btn, .prdv2-msg-send, .prdv2-ws__link,
    .prdv2-inbox__rail-icon {
        transition: none !important;
    }
    .prdv2-cta:hover, .prdv2-mini-rev:hover {
        transform: none !important;
    }
    .prdv2-live__dot, .prdv2-typing-dots span {
        animation: none !important;
    }
}

/* Ratecrest Review Collection Product Section */

/* ─── BAND 2: GET MORE REVIEWS (S70 final) ─── */
.rc-review-tools-section { background:#f7f8fd; padding:80px 20px 96px; overflow:hidden; }
.rc-review-tools-wrap { max-width:1320px; margin:0 auto; text-align:center; }
.rc-tools-kicker { display:inline-block; background:rgba(91,230,201,.30); color:#009b82; font-size:12px; font-weight:800; letter-spacing:1.6px; padding:10px 22px; border-radius:999px; margin-bottom:22px; }
.rc-tools-title { margin:0; color:#080d3f; font-size:clamp(28px,3.2vw,44px); line-height:1.08; font-weight:900; letter-spacing:-1.2px; }
.rc-tools-title span { color:#3A43D1; }
.rc-tools-subtitle { margin:16px auto 32px; max-width:680px; font-size:15px; line-height:1.5; color:#5a6080; }
.rc-tools-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.rc-tool-card { background:#fff; border:1px solid rgba(8,13,63,.06); border-radius:24px; padding:26px 22px 22px; text-align:left; box-shadow:0 22px 60px rgba(21,0,109,.05); display:flex; flex-direction:column; min-height:580px; }
.rc-tool-head { display:flex; gap:14px; align-items:flex-start; margin-bottom:8px; }
.rc-tool-icon { width:44px; height:44px; border-radius:12px; background:rgba(91,230,201,.30); color:#03a486; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.rc-tool-icon i { font-size:20px; line-height:1; }
.rc-tool-head h3 { margin:0 0 6px; color:#080d3f; font-size:22px; font-weight:800; line-height:1.1; }
.rc-tool-head p { margin:0; color:#6c7393; font-size:15px; line-height:1.5; }
.rc-bistro-logo { width:46px; height:46px; border-radius:999px; background:rgba(91,230,201,.40); color:#0E8F73; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.rc-bistro-logo i { font-size:18px; line-height:1; font-style:normal; }

/* CARD 1: STAND */
.rc-qr-stage { flex:1; position:relative; display:flex; align-items:center; justify-content:center; min-height:260px; margin:10px 0 16px; }
.rc-qr-stage::before { content:none; }
.rc-qr-stage::after { content:none; }
.rc-spark-dashes { position:absolute; left:30px; top:36%; transform:translateY(-50%); display:flex; flex-direction:column; gap:7px; z-index:2; }
.rc-spark-dashes span { display:block; width:16px; height:4px; background:#5BE6C9; border-radius:4px; }
.rc-spark-stars { position:absolute; right:28px; top:30%; width:64px; height:100px; z-index:2; }
.rc-spark-stars i { position:absolute; color:#5BE6C9; font-style:normal; }
.rc-spark-stars i:nth-child(1) { top:0; left:30px; font-size:15px; }
.rc-spark-stars i:nth-child(2) { top:32px; left:4px; font-size:10px; }
.rc-spark-stars i:nth-child(3) { top:56px; left:36px; font-size:12px; }
.rc-stand-card { position:relative; z-index:3; width:172px; background:#fff; border-radius:12px; box-shadow:0 16px 28px rgba(21,0,109,0.13),0 4px 8px rgba(21,0,109,0.05); text-align:center; padding:18px 12px 0; overflow:hidden; transform:rotate(-3deg); }
.rc-stand-card .rc-bistro-logo { margin:0 auto 8px; width:36px; height:36px; }
.rc-bistro-name { margin:0; color:#080d3f; font-size:13px; font-weight:800; }
.rc-stand-cta { margin:8px 0 10px; color:#080d3f; font-size:12px; line-height:1.2; font-weight:800; }
.rc-stand-card .rc-qr-img { width:104px; height:104px; margin:0 auto 10px; display:block; }
.rc-stand-thank { margin:0 -12px; padding:8px; background:rgba(91,230,201,0.60); color:#080d3f; font-weight:700; font-size:10.5px; line-height:1; }
.rc-thank-heart { color:#e74c3c; font-size:10px; font-style:normal; margin-left:3px; }

/* CARD 2: CHAT (NO phone bezel — just chat window per mock) */
.rc-chat-stage { flex:1; position:relative; margin:16px 0 24px; display:flex; align-items:center; justify-content:center; }
.rc-chat-window { position:relative; width:100%; max-width:340px; background:#f8f7ff; border:1px solid rgba(58,67,209,0.18); border-radius:24px; padding:20px 14px 16px; box-shadow:0 20px 44px rgba(21,0,109,0.08); }
.rc-chat-window::before { content:""; position:absolute; top:7px; left:50%; transform:translateX(-50%); width:54px; height:4px; border-radius:4px; background:rgba(8,13,63,0.08); }
.rc-chat-head { display:flex; align-items:center; gap:9px; padding-bottom:12px; margin-bottom:12px; border-bottom:1px solid rgba(8,13,63,0.05); }
.rc-chev-back { color:#69708f; font-size:14px; }
.rc-chat-head .rc-bistro-logo { width:30px; height:30px; }
.rc-chat-head .rc-bistro-logo i { font-size:12px; }
.rc-chat-id { flex:1; min-width:0; }
.rc-chat-id strong { display:inline-flex; align-items:center; gap:4px; font-size:13px; color:#080d3f; font-weight:800; }
.rc-chat-id .bi-patch-check { color:#3A43D1; font-size:11px; }
.rc-chat-id small { display:block; color:#69708f; font-size:10.5px; margin-top:1px; }
.rc-chat-actions { display:flex; gap:10px; color:#69708f; font-size:13px; }
.rc-bubble { max-width:85%; padding:10px 12px; border-radius:14px; font-size:12.5px; line-height:1.45; color:#080d3f; box-shadow:0 6px 14px rgba(21,0,109,0.05); position:relative; }
.rc-bubble.left { background:#fff; margin:0 auto 16px 0; }
.rc-bubble.right { background:rgba(91,230,201,0.40); margin:0 0 0 auto; }
.rc-bubble-emoji { color:#d97706; font-size:12px; font-style:normal; vertical-align:-1px; }
.rc-bubble u { color:#3A43D1; font-weight:700; text-decoration:underline; }
.rc-msg-time { display:block; margin-top:4px; font-size:10px; color:#69708f; text-align:right; }
.rc-msg-time .bi-check2-all { color:#3A43D1; margin-left:3px; font-size:11px; }
.rc-link-card { margin-top:9px; background:#fff; border:1px solid rgba(91,230,201,0.55); border-radius:10px; padding:8px; display:flex; gap:9px; align-items:center; position:relative; }
.rc-link-card .rc-bistro-logo { width:26px; height:26px; }
.rc-link-card .rc-bistro-logo i { font-size:10px; }
.rc-link-text { flex:1; min-width:0; text-align:left; }
.rc-link-card strong { display:block; font-size:11.5px; color:#080d3f; font-weight:800; }
.rc-link-sub { display:block; font-size:10.5px; color:#69708f; line-height:1.3; }
.rc-link-domain { display:block; font-size:9.5px; color:#9aa0bb; margin-top:1px; }
.rc-link-arrow { color:#69708f; font-size:11px; flex-shrink:0; }
.rc-arrow-curve { position:absolute; left:-22px; top:58%; width:50px; height:100px; z-index:1; pointer-events:none; }

/* CARD 3: STACK */
.rc-cards-stage { flex:1; position:relative; margin:10px 0 16px; display:flex; align-items:center; justify-content:center; min-height:240px; }
.rc-cards-stage .rc-spark-dashes { left:14px; }
.rc-cards-stage .rc-spark-stars { right:14px; top:24%; }
.rc-cards-stack { position:relative; width:280px; height:320px; }
.rc-print-card { position:absolute; width:160px; height:240px; border-radius:14px; box-shadow:0 16px 36px rgba(21,0,109,0.14); overflow:hidden; }
.rc-card-mint { top:38px; right:16px; background:rgba(91,230,201,0.60); transform:rotate(14deg); z-index:1; }
.rc-card-white { top:26px; right:60px; background:#fff; transform:rotate(7deg); z-index:2; }
.rc-card-front { top:10px; left:30px; background:#232fd0; color:#fff; transform:rotate(-3deg); z-index:3; }
.rc-card-inner { padding:18px 14px 0; text-align:center; height:100%; display:flex; flex-direction:column; align-items:center; }
.rc-card-front .rc-bistro-logo { width:34px; height:34px; background:transparent; border:1px solid rgba(91,230,201,0.80); color:#fff; margin-bottom:8px; }
.rc-card-front .rc-bistro-logo i { font-size:13px; }
.rc-cf-name { margin:0 0 2px; font-size:14px; font-weight:800; color:#fff; }
.rc-cf-sub { margin:0 0 10px; font-size:10.5px; color:rgba(255,255,255,0.85); line-height:1.3; }
.rc-card-front .rc-qr-img { width:82px; height:82px; background:#fff; padding:4px; border-radius:4px; }
.rc-cf-scan { margin:8px 0 0; font-size:8.5px; color:rgba(255,255,255,0.82); font-weight:600; line-height:1.3; }
.rc-cf-thank { margin-top:auto; align-self:stretch; padding:8px; background:rgba(91,230,201,0.75); color:#080d3f; font-weight:800; font-size:10px; letter-spacing:1px; }

/* STATS */
.rc-tool-stats { background:rgba(247,247,253,0.7); border:1px solid rgba(8,13,63,0.05); border-radius:16px; padding:16px 18px; display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.rc-tool-stats.single { grid-template-columns:1fr; }
.rc-stat { display:flex; align-items:center; gap:12px; }
.rc-stat-text strong { display:block; color:#080d3f; font-size:22px; font-weight:800; line-height:1; }
.rc-stat-text span { display:block; margin-top:3px; color:#6c7393; font-size:11.5px; line-height:1.3; }
.rc-stat-ico { width:34px; height:34px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; font-size:15px; flex-shrink:0; font-style:normal; }
.rc-stat-ico--qr { background:rgba(99,102,241,0.16); color:#6366f1; }
.rc-stat-ico--star { background:rgba(91,230,201,0.30); color:#0E8F73; }
.rc-stat-ico--whatsapp { background:rgba(37,211,102,0.18); color:#25d366; }
.rc-stat-ico--stack { background:rgba(99,102,241,0.16); color:#6366f1; }

@media (max-width:1100px) { .rc-tools-grid { grid-template-columns:1fr; } .rc-tool-card { min-height:auto; } }
@media (max-width:640px) { .rc-review-tools-section { padding:56px 14px; } .rc-tools-title { letter-spacing:-1px; } .rc-tools-subtitle { font-size:15px; } .rc-tool-card { padding:28px 22px; } }

/* === S70 card-3 tcard variants === */
.rc-cards-stack {
    position: relative;
    width: 248px;
    height: 188px;
    margin: 0 auto;
}
.rc-tcard {
    position: absolute;
    width: 108px;
    height: 165px;
    border-radius: 10px;
    padding: 10px 8px;
    box-shadow: 0 10px 22px rgba(21,0,109,0.15);
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
.rc-tcard--aurora { background: #232fd0; color: #fff; top: 18px; left: 0;   transform: rotate(-4deg); z-index: 3; }
.rc-tcard--white  { background: #fff;    color: #080d3f; top: 10px; left: 64px; transform: rotate(5deg);  z-index: 2; }
.rc-tcard--mint   { background: rgba(91,230,201,0.55); color: #080d3f; top: 2px; left: 128px; transform: rotate(13deg); z-index: 1; }

.rc-tcard-logo {
    width: 26px; height: 26px;
    border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 5px;
    flex-shrink: 0;
}
.rc-tcard-logo i { font-size: 10px; font-style: normal; line-height: 1; }
.rc-tcard--aurora .rc-tcard-logo { background: transparent; border: 1px solid rgba(91,230,201,0.85); color: #fff; }
.rc-tcard--white  .rc-tcard-logo { background: rgba(91,230,201,0.40); color: #0E8F73; }
.rc-tcard--mint   .rc-tcard-logo { background: rgba(255,255,255,0.55); color: #0E8F73; }

.rc-tcard-name { margin: 0; font-size: 9.5px; font-weight: 800; line-height: 1.1; }
.rc-tcard-msg  { margin: 2px 0 4px; font-size: 7.5px; line-height: 1.25; font-weight: 500; opacity: 0.90; }

.rc-tcard .rc-qr-img { width: 48px; height: 48px; background: #fff; padding: 2px; border-radius: 3px; margin: 0; flex-shrink: 0; }

.rc-tcard-scan { margin: 4px 0 0; font-size: 6.5px; line-height: 1.25; font-weight: 600; opacity: 0.85; }

.rc-tcard-thank {
    margin-top: auto;
    margin-left: -8px;
    margin-right: -8px;
    padding: 5px 6px;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.5px;
    align-self: stretch;
}
.rc-tcard--aurora .rc-tcard-thank { background: rgba(91,230,201,0.72); color: #080d3f; }
.rc-tcard--white  .rc-tcard-thank { background: rgba(91,230,201,0.50); color: #080d3f; }
.rc-tcard--mint   .rc-tcard-thank { background: rgba(255,255,255,0.55); color: #080d3f; }

/* ─── BAND 3: BUILD YOUR REPUTATION (S70 v2) ─── */
.rc-band3-section { background:#f7f8fd; padding:78px 20px 92px; overflow:hidden; }
.rc-band3-wrap { max-width:1440px; margin:0 auto; text-align:center; }
.rc-band3-kicker { display:inline-block; background:rgba(91,230,201,.30); color:#009b82; font-size:12px; font-weight:800; letter-spacing:1.6px; padding:10px 22px; border-radius:999px; margin-bottom:22px; }
.rc-band3-title { margin:0; color:#080d3f; font-size:clamp(28px,3.2vw,44px); line-height:1.08; font-weight:900; letter-spacing:-1.2px; }
.rc-band3-title span { color:#3A43D1; }
.rc-band3-subtitle { margin:16px auto 32px; max-width:680px; font-size:15px; line-height:1.5; color:#5a6080; }

.rc-band3-grid { display:grid; grid-template-columns:1fr 2fr 1fr; gap:22px; align-items:stretch; }

.rc-b3-card { background:#fff; border:1px solid rgba(8,13,63,.06); border-radius:24px; padding:26px 22px 22px; text-align:left; box-shadow:0 22px 60px rgba(21,0,109,.05); display:flex; flex-direction:column; min-height:660px; }
.rc-b3-head { display:flex; gap:14px; align-items:flex-start; margin-bottom:8px; }
.rc-b3-head-text { flex:1; min-width:0; }
.rc-b3-icon { width:44px; height:44px; border-radius:12px; background:rgba(91,230,201,.30); color:#03a486; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.rc-b3-icon i { font-size:20px; line-height:1; }
.rc-b3-head h3 { margin:0 0 6px; color:#080d3f; font-size:18px; font-weight:800; line-height:1.2; display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.rc-b3-head p { margin:0; color:#6c7393; font-size:13.5px; line-height:1.5; }
.rc-b3-stage { flex:1; position:relative; display:flex; align-items:center; justify-content:center; min-height:280px; margin:14px 0 16px; }
.rc-b3-card--side .rc-b3-stage { flex-direction:column; align-items:stretch; gap:14px; padding:0 4px; }

.rc-pill { display:inline-flex; align-items:center; gap:4px; padding:3px 9px; border-radius:999px; font-size:10px; font-weight:800; letter-spacing:0.3px; }
.rc-pill--live, .rc-pill--active { background:rgba(22,163,74,0.14); color:#16a34a; }
.rc-pill-dot { width:5px; height:5px; border-radius:999px; background:currentColor; animation:rcDot 1.6s ease-in-out infinite; }
@keyframes rcDot { 0%,100% { opacity:1; } 50% { opacity:0.35; } }

/* CARD 1: BROWSER + WIDGET VARIANTS */
.rc-browser { position:relative; width:100%; background:#fff; border:1px solid rgba(8,13,63,0.10); border-radius:10px; box-shadow:0 18px 40px rgba(21,0,109,0.10); overflow:hidden; }
.rc-browser-chrome { display:flex; align-items:center; gap:6px; padding:8px 10px; background:#f1f2f6; border-bottom:1px solid rgba(8,13,63,0.06); }
.rc-bc-dot { width:8px; height:8px; border-radius:999px; flex-shrink:0; }
.rc-bc-dot--r { background:#ff5f57; }
.rc-bc-dot--y { background:#febc2e; }
.rc-bc-dot--g { background:#28c840; }
.rc-bc-url { flex:1; margin-left:6px; background:#fff; border-radius:5px; padding:3px 8px; font-size:10px; color:#5a6080; display:flex; align-items:center; gap:5px; }
.rc-bc-url i { font-size:9px; color:#0E8F73; }
.rc-browser-body { padding:12px 14px 14px; }
.rc-bb-line { height:6px; background:rgba(8,13,63,0.08); border-radius:3px; margin-bottom:6px; }
.rc-bb-line--lg { height:9px; width:60%; background:rgba(8,13,63,0.14); }
.rc-bb-line--sm { width:75%; }

.rc-wg-vert { margin-top:10px; background:#fff; border:1px solid rgba(8,13,63,0.10); border-radius:10px; padding:10px; box-shadow:0 10px 22px rgba(21,0,109,0.10); text-align:center; }
.rc-wg-vert-logo { width:32px; height:32px; border-radius:8px; object-fit:cover; display:block; margin:0 auto 6px; background:#f1f2f6; }
.rc-wg-vert-name { font-size:11px; font-weight:800; color:#080d3f; margin-bottom:4px; }
.rc-wg-vert-stars { display:block; height:11px; width:auto; margin:0 auto 4px; }
.rc-wg-vert-rating { font-size:10px; color:#5a6080; }
.rc-wg-vert-rating strong { color:#080d3f; font-size:12px; font-weight:800; }
.rc-wg-vert-foot { margin-top:7px; padding-top:6px; border-top:1px solid rgba(8,13,63,0.08); font-size:8px; color:#9aa0bb; display:flex; align-items:center; justify-content:center; gap:5px; }
.rc-wf-rmark { display:inline-flex; align-items:center; justify-content:center; width:13px; height:13px; border-radius:3px; background:#3A43D1; color:#fff; font-size:7.5px; font-weight:900; }

.rc-wg-strip { margin-top:8px; background:#fff; border:1px solid rgba(8,13,63,0.10); border-radius:8px; padding:7px 9px; box-shadow:0 6px 14px rgba(21,0,109,0.06); display:flex; align-items:center; gap:8px; }
.rc-wg-strip-logo { width:26px; height:26px; border-radius:6px; object-fit:cover; background:#f1f2f6; flex-shrink:0; }
.rc-wg-strip-mid { flex:1; display:flex; align-items:center; gap:5px; flex-wrap:wrap; }
.rc-wg-strip-mid strong { font-size:13px; font-weight:800; color:#080d3f; line-height:1; }
.rc-wg-strip-stars { height:10px; width:auto; }
.rc-wg-strip-mid span { font-size:9.5px; color:#6c7393; }
.rc-wg-strip-r { width:18px; height:18px; border-radius:4px; background:#3A43D1; color:#fff; font-size:10px; font-weight:900; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }

.rc-b3-works { display:flex; align-items:center; gap:12px; padding:14px 0 16px; }
.rc-b3-works-label { font-size:12.5px; color:#6c7393; font-weight:600; }
.rc-b3-works-ico { width:40px; height:40px; border-radius:10px; background:#f1f2f6; color:#5a6080; display:inline-flex; align-items:center; justify-content:center; font-size:20px; }

/* CARD 2: PUBLIC PROFILE */
.rc-b3-stage--hero { margin:14px 0 16px; min-height:480px; }
.rc-pp-browser { width:100%; background:#fff; border:1px solid rgba(8,13,63,0.10); border-radius:14px; box-shadow:0 22px 50px rgba(21,0,109,0.12); overflow:hidden; }
.rc-pp-browser .rc-browser-chrome { padding:10px 12px; }

.rc-pp-hero { background:#fff; padding:22px; display:grid; grid-template-columns:auto 1fr; gap:18px; align-items:flex-start; border-bottom:1px solid rgba(8,13,63,0.06); }
.rc-pp-logo-wrap { flex-shrink:0; }
.rc-pp-logo { width:88px; height:88px; border-radius:12px; object-fit:cover; background:#fff; border:1px solid rgba(8,13,63,0.06); display:block; }
.rc-pp-logo--ph { display:flex; align-items:center; justify-content:center; background:rgba(91,230,201,0.40); color:#0E8F73; }
.rc-pp-logo--ph i { font-size:30px; }
.rc-pp-info { min-width:0; display:flex; flex-direction:column; gap:5px; }
.rc-pp-name-row { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.rc-pp-name { margin:0; font-size:22px; font-weight:800; color:#080d3f; line-height:1.15; }
.rc-pp-trust { display:inline-flex; align-items:center; justify-content:center; color:#3A43D1; }
.rc-pp-trust svg { width:18px; height:18px; }
.rc-pp-meta-row { font-size:12.5px; color:#5a6080; display:flex; align-items:center; gap:6px; }
.rc-pp-meta-item { display:inline-flex; align-items:center; gap:5px; }
.rc-pp-meta-item .bi-geo-alt { color:#3A43D1; font-size:12px; }
.rc-pp-rating-row { display:flex; align-items:center; gap:9px; margin-top:2px; }
.rc-pp-avg { font-size:22px; font-weight:900; color:#1d4ed8; line-height:1; }
.rc-pp-stars-img { height:18px; width:auto; }
.rc-pp-label-row { display:flex; align-items:center; gap:6px; }
.rc-pp-rating-pill { display:inline-block; background:rgba(91,230,201,0.30); color:#0E8F73; font-size:10.5px; font-weight:800; letter-spacing:0.3px; padding:3px 10px; border-radius:999px; }
.rc-pp-rating-info { font-size:11px; color:#9aa0bb; }
.rc-pp-rated-row { font-size:12px; color:#5a6080; display:inline-flex; align-items:center; gap:5px; }
.rc-pp-rated-row .bi-people { color:#5a6080; font-size:12px; }
.rc-pp-rated-row strong { font-weight:800; color:#080d3f; }

.rc-pp-tabs { display:flex; gap:22px; padding:0 20px; border-bottom:1px solid rgba(8,13,63,0.08); }
.rc-pp-tab { font-size:12px; font-weight:700; color:#6c7393; padding:11px 0; display:inline-flex; align-items:center; gap:5px; }
.rc-pp-tab em { background:rgba(8,13,63,0.08); color:#5a6080; font-size:10px; font-style:normal; padding:1px 6px; border-radius:999px; }
.rc-pp-tab--active { color:#3A43D1; border-bottom:2px solid #3A43D1; }

.rc-pp-body { display:grid; grid-template-columns:1.4fr 1fr; gap:14px; padding:14px 20px 20px; }
.rc-pp-left, .rc-pp-right { border:1px solid rgba(8,13,63,0.06); border-radius:10px; padding:12px; background:#fafbfd; }
.rc-pp-panel-title { font-size:13px; font-weight:800; color:#080d3f; }
.rc-pp-panel-sub { font-size:10.5px; color:#6c7393; margin-top:1px; margin-bottom:10px; }
.rc-pp-tags { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:10px; }
.rc-pp-tag { background:rgba(91,230,201,0.30); color:#0E8F73; font-size:10px; font-weight:700; padding:3px 8px; border-radius:999px; }
.rc-pp-rev { padding-top:8px; border-top:1px solid rgba(8,13,63,0.06); }
.rc-pp-rev-head { display:flex; align-items:center; gap:6px; margin-bottom:4px; flex-wrap:wrap; }
.rc-pp-avatar { width:22px; height:22px; border-radius:999px; background:#3A43D1; color:#fff; font-size:9px; font-weight:800; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.rc-pp-rev-head strong { font-size:11px; font-weight:800; color:#080d3f; }
.rc-pp-rev-stars { height:10px; width:auto; }
.rc-pp-rev-head em { font-size:10px; color:#9aa0bb; font-style:normal; margin-left:auto; }
.rc-pp-rev-title { font-size:11.5px; font-weight:800; color:#080d3f; margin:2px 0 3px; }
.rc-pp-rev p { margin:0; font-size:11px; line-height:1.45; color:#5a6080; }
.rc-pp-link { display:inline-block; margin-top:10px; font-size:11px; color:#3A43D1; font-weight:700; text-decoration:none; }

.rc-pp-insight { display:flex; align-items:center; gap:10px; padding:9px 0; }
.rc-pp-insight + .rc-pp-insight { border-top:1px solid rgba(8,13,63,0.06); }
.rc-pp-ins-ico { width:30px; height:30px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; font-size:13px; flex-shrink:0; }
.rc-pp-ins-ico--check { background:rgba(91,230,201,0.30); color:#0E8F73; }
.rc-pp-ins-ico--clock { background:rgba(58,67,209,0.16); color:#3A43D1; }
.rc-pp-ins-ico--thumb { background:rgba(245,158,11,0.18); color:#d97706; }
.rc-pp-insight strong { display:block; font-size:11.5px; font-weight:800; color:#080d3f; line-height:1.2; }
.rc-pp-insight small { display:block; font-size:10.5px; color:#6c7393; margin-top:1px; }

/* CARD 3: AD PREVIEW + HEATMAP */
.rc-ad-preview { background:#fff; border:1px solid rgba(8,13,63,0.08); border-radius:12px; padding:12px; box-shadow:0 10px 22px rgba(21,0,109,0.06); }
.rc-adp-top { display:flex; justify-content:space-between; align-items:center; font-size:10px; color:#6c7393; margin-bottom:8px; }
.rc-adp-row { display:flex; gap:10px; align-items:flex-start; }
.rc-adp-thumb { width:60px; height:60px; border-radius:8px; background:linear-gradient(135deg,#5BE6C9,#3A43D1); flex-shrink:0; }
.rc-adp-thumb-img { width:60px; height:60px; border-radius:8px; object-fit:cover; background:#fff; flex-shrink:0; }
.rc-adp-text { flex:1; min-width:0; }
.rc-adp-text strong { display:block; font-size:13px; font-weight:800; color:#3A43D1; }
.rc-adp-text em { display:block; font-size:11px; font-style:normal; color:#3A43D1; font-weight:700; margin:1px 0 4px; line-height:1.3; }
.rc-adp-stars { height:9px; width:auto; vertical-align:middle; margin-right:5px; }
.rc-adp-rating { font-size:10px; color:#6c7393; }
.rc-adp-url { display:flex; align-items:center; gap:5px; margin-top:8px; font-size:10.5px; color:#3A43D1; background:rgba(58,67,209,0.06); padding:5px 8px; border-radius:6px; }

.rc-ad-perf { background:#fff; border:1px solid rgba(8,13,63,0.08); border-radius:12px; padding:12px; box-shadow:0 10px 22px rgba(21,0,109,0.06); }
.rc-ad-perf-head { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:10px; }
.rc-ad-perf-head strong { display:block; font-size:12px; font-weight:800; color:#080d3f; }
.rc-ad-perf-head small { display:block; font-size:10px; color:#6c7393; margin-top:1px; }

.rc-ad-heatmap-wrap { margin-bottom:10px; }
.rc-ad-heatmap { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; margin-bottom:5px; }
.rc-hm { aspect-ratio:1; border-radius:3px; display:block; }
.rc-hm--0 { background:rgba(58,67,209,0.06); }
.rc-hm--1 { background:rgba(58,67,209,0.20); }
.rc-hm--2 { background:rgba(58,67,209,0.40); }
.rc-hm--3 { background:rgba(58,67,209,0.65); }
.rc-hm--4 { background:#3A43D1; }
.rc-ad-heatmap-axis { display:grid; grid-template-columns:repeat(7,1fr); gap:4px; font-size:8.5px; color:#9aa0bb; text-align:center; font-weight:700; }

.rc-ad-perf-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:4px; padding-top:8px; border-top:1px solid rgba(8,13,63,0.06); }
.rc-ad-perf-stats > div { text-align:center; }
.rc-ad-perf-stats strong { display:block; font-size:14px; font-weight:800; color:#080d3f; line-height:1; }
.rc-ad-perf-stats span { display:block; font-size:8.5px; color:#6c7393; margin-top:3px; }

@media (max-width:1100px) {
    .rc-band3-grid { grid-template-columns:1fr; }
    .rc-b3-card { min-height:auto; }
}
@media (max-width:640px) {
    .rc-band3-section { padding:56px 14px; }
    .rc-band3-title { letter-spacing:-1px; }
    .rc-band3-subtitle { font-size:15px; }
    .rc-b3-card { padding:22px 18px; }
    .rc-pp-hero { grid-template-columns:auto 1fr; }
    .rc-pp-cta-btn { grid-column:1/-1; }
    .rc-pp-body { grid-template-columns:1fr; }
}

/* ─── BAND 4: TURN REVIEWS INTO DECISIONS (S70) ─── */
.rc-band4-section { background:#ffffff; padding:78px 20px 92px; overflow:hidden; }
.rc-band4-wrap { max-width:1440px; margin:0 auto; text-align:center; }
.rc-band4-kicker { display:inline-block; background:rgba(91,230,201,.30); color:#009b82; font-size:12px; font-weight:800; letter-spacing:1.6px; padding:10px 22px; border-radius:999px; margin-bottom:22px; }
.rc-band4-title { margin:0; color:#080d3f; font-size:clamp(28px,3.2vw,44px); line-height:1.08; font-weight:900; letter-spacing:-1.2px; }
.rc-band4-title span { color:#3A43D1; }
.rc-band4-subtitle { margin:16px auto 32px; max-width:680px; font-size:15px; line-height:1.5; color:#5a6080; }

.rc-band4-grid { display:grid; grid-template-columns:1fr 2fr 1fr; gap:22px; align-items:stretch; }

.rc-b4-card { background:#f7f8fd; border:1px solid rgba(8,13,63,.06); border-radius:24px; padding:26px 22px 22px; text-align:left; box-shadow:0 22px 60px rgba(21,0,109,.05); display:flex; flex-direction:column; min-height:680px; }
.rc-b4-head { display:flex; gap:14px; align-items:flex-start; margin-bottom:8px; }
.rc-b4-head-text { flex:1; min-width:0; }
.rc-b4-icon { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.rc-b4-icon i { font-size:20px; line-height:1; }
.rc-b4-icon--teal   { background:rgba(91,230,201,0.30); color:#0E8F73; }
.rc-b4-icon--purple { background:rgba(124,58,237,0.16); color:#7c3aed; }
.rc-b4-head h3 { margin:0 0 6px; color:#080d3f; font-size:18px; font-weight:800; line-height:1.2; }
.rc-b4-head p { margin:0; color:#6c7393; font-size:13.5px; line-height:1.5; }
.rc-b4-stage { flex:1; display:flex; flex-direction:column; gap:14px; padding:0; margin:14px 0 16px; }
.rc-b4-card--side .rc-b4-stage > * { background:#fff; border:1px solid rgba(8,13,63,0.05); border-radius:12px; padding:12px 14px; }

/* CARD 1: SENTIMENT ANALYSIS */
.rc-sa-stat-head { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px; }
.rc-sa-stat-label { font-size:11px; font-weight:700; color:#6c7393; letter-spacing:0.4px; text-transform:uppercase; }
.rc-sa-stat-val { font-size:24px; font-weight:900; line-height:1; }
.rc-sa-gradient { position:relative; height:7px; background:linear-gradient(to right,#ef4444,#eab308 50%,#22c55e); border-radius:99px; margin-bottom:5px; }
.rc-sa-gradient-dot { position:absolute; top:50%; transform:translate(-50%,-50%); width:13px; height:13px; border-radius:50%; background:#16a34a; border:2.5px solid #fff; box-shadow:0 1px 4px rgba(0,0,0,0.18); }
.rc-sa-gradient-axis { display:flex; justify-content:space-between; font-size:9.5px; color:#9aa0bb; }

.rc-sa-dist-label { font-size:11px; font-weight:700; color:#6c7393; letter-spacing:0.4px; text-transform:uppercase; margin-bottom:7px; }
.rc-sa-dist-bar { display:flex; height:9px; border-radius:99px; overflow:hidden; background:#e5e7eb; margin-bottom:8px; }
.rc-sa-seg { display:block; height:100%; }
.rc-sa-seg--pos { background:#16a34a; }
.rc-sa-seg--neu { background:#d97706; }
.rc-sa-seg--neg { background:#dc2626; }
.rc-sa-dist-legend { display:flex; flex-wrap:wrap; gap:10px; font-size:11px; color:#5a6080; }
.rc-sa-dist-legend span { display:inline-flex; align-items:center; gap:5px; }
.rc-dot { display:inline-block; width:8px; height:8px; border-radius:50%; }
.rc-dot--pos { background:#16a34a; }
.rc-dot--neu { background:#d97706; }
.rc-dot--neg { background:#dc2626; }

.rc-sa-aspects-title { font-size:11px; font-weight:700; color:#6c7393; letter-spacing:0.4px; text-transform:uppercase; margin-bottom:10px; }
.rc-sa-asp-row { display:grid; grid-template-columns:62px 1fr 28px; gap:9px; align-items:center; margin-bottom:7px; }
.rc-sa-asp-row:last-child { margin-bottom:0; }
.rc-sa-asp-name { font-size:11.5px; color:#080d3f; font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.rc-sa-asp-bar { height:7px; background:rgba(8,13,63,0.06); border-radius:99px; overflow:hidden; }
.rc-sa-asp-fill { display:block; height:100%; border-radius:99px; }
.rc-sa-asp-score { font-size:11.5px; font-weight:800; text-align:right; }

/* CARD 2: COMPETITOR BENCHMARKING */
.rc-b4-stage--hero { margin:14px 0 16px; }
.rc-cb-board { background:#fff; border:1px solid rgba(8,13,63,0.08); border-radius:14px; box-shadow:0 22px 50px rgba(21,0,109,0.10); overflow:hidden; }
.rc-cb-board .rc-browser-chrome { padding:10px 14px; }
.rc-cb-board .rc-bc-url { font-size:11px; }

.rc-cb-stat-row { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(8,13,63,0.06); }
.rc-cb-stat { background:#fff; padding:14px 16px; }
.rc-cb-stat-label { font-size:10.5px; font-weight:700; color:#6c7393; letter-spacing:0.4px; text-transform:uppercase; margin-bottom:5px; }
.rc-cb-stat-val { font-size:22px; font-weight:900; color:#080d3f; line-height:1; display:flex; align-items:baseline; gap:6px; }
.rc-cb-stat-val em { font-size:11px; font-weight:600; color:#9aa0bb; font-style:normal; }
.rc-cb-stat-val--pos { color:#16a34a; }
.rc-cb-delta-down { color:#dc2626 !important; }

.rc-cb-table { padding:16px 18px 18px; }
.rc-cb-thead { display:grid; grid-template-columns:40px 2fr 70px 80px 1.4fr; gap:10px; padding:8px 0; border-bottom:1px solid rgba(8,13,63,0.08); font-size:10.5px; font-weight:700; color:#6c7393; letter-spacing:0.4px; text-transform:uppercase; }
.rc-cb-trow { display:grid; grid-template-columns:40px 2fr 70px 80px 1.4fr; gap:10px; padding:10px 0; align-items:center; border-bottom:1px solid rgba(8,13,63,0.05); font-size:12px; color:#080d3f; }
.rc-cb-trow:last-child { border-bottom:none; }
.rc-cb-rank { font-weight:800; color:#9aa0bb; font-size:12px; }
.rc-cb-biz { font-weight:600; display:inline-flex; align-items:center; gap:8px; }
.rc-cb-dot { width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.rc-cb-trow--you { background:rgba(91,230,201,0.10); border-radius:8px; padding-left:6px; padding-right:6px; }
.rc-cb-trow--you .rc-cb-rank { color:#0E8F73; }
.rc-cb-you { display:inline-block; background:rgba(91,230,201,0.45); color:#0E8F73; font-size:9.5px; font-weight:800; padding:1px 7px; border-radius:99px; font-style:normal; margin-left:4px; letter-spacing:0.3px; }
.rc-cb-trow strong { font-weight:800; }
.rc-cb-mini-bar { display:inline-block; vertical-align:middle; width:80px; height:6px; background:rgba(8,13,63,0.06); border-radius:99px; overflow:hidden; margin-right:7px; }
.rc-cb-mini-fill { display:block; height:100%; border-radius:99px; }
.rc-cb-trow em { font-size:11px; font-weight:700; color:#080d3f; font-style:normal; }

/* CARD 3: REGIONAL HEATMAP */
.rc-rh-board-head { margin-bottom:10px; }
.rc-rh-board-head strong { display:block; font-size:12px; color:#080d3f; font-weight:800; }
.rc-rh-board-head small { display:block; font-size:10.5px; color:#6c7393; margin-top:1px; }
.rc-rh-list { display:flex; flex-direction:column; gap:8px; }
.rc-rh-row { display:grid; grid-template-columns:78px 1fr 28px; gap:9px; align-items:center; }
.rc-rh-state { font-size:11.5px; color:#080d3f; font-weight:600; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.rc-rh-bar { display:block; height:7px; background:rgba(8,13,63,0.06); border-radius:99px; overflow:hidden; }
.rc-rh-fill { display:block; height:100%; border-radius:99px; }
.rc-rh-fill--0 { background:#E6FBF6; }
.rc-rh-fill--1 { background:#5BE6C9; }
.rc-rh-fill--2 { background:#5DC6E0; }
.rc-rh-fill--3 { background:#4D7AE0; }
.rc-rh-fill--4 { background:#3A43D1; }
.rc-rh-count { font-size:11.5px; font-weight:800; color:#080d3f; text-align:right; }

.rc-rh-hotspot { display:flex; flex-direction:column; gap:6px; }
.rc-rh-hot-head { display:flex; align-items:center; gap:8px; }
.rc-rh-hot-pill { display:inline-flex; align-items:center; gap:4px; background:rgba(220,38,38,0.12); color:#dc2626; font-size:9.5px; font-weight:800; padding:3px 8px; border-radius:99px; letter-spacing:0.3px; }
.rc-rh-hot-head strong { font-size:13px; font-weight:800; color:#080d3f; }
.rc-rh-hot-meta { display:flex; gap:14px; font-size:11px; color:#6c7393; }
.rc-rh-hot-meta strong { color:#080d3f; font-weight:800; font-size:12px; margin-right:4px; }

@media (max-width:1100px) {
    .rc-band4-grid { grid-template-columns:1fr; }
    .rc-b4-card { min-height:auto; }
    .rc-cb-stat-row { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px) {
    .rc-band4-section { padding:56px 14px; }
    .rc-band4-title { letter-spacing:-1px; }
    .rc-band4-subtitle { font-size:15px; }
    .rc-b4-card { padding:22px 18px; }
    .rc-cb-thead, .rc-cb-trow { grid-template-columns:30px 1.5fr 50px 60px; }
    .rc-cb-thead > :nth-child(5), .rc-cb-trow > :nth-child(5) { display:none; }
}

/* ─── BAND 5: RUN YOUR BUSINESS (S70) ─── */
.rc-band5-section { background:#f7f8fd; padding:78px 20px 92px; overflow:hidden; }
.rc-band5-wrap { max-width:1440px; margin:0 auto; text-align:center; }
.rc-band5-kicker { display:inline-block; background:rgba(91,230,201,.30); color:#009b82; font-size:12px; font-weight:800; letter-spacing:1.6px; padding:10px 22px; border-radius:999px; margin-bottom:22px; }
.rc-band5-title { margin:0; color:#080d3f; font-size:clamp(28px,3.2vw,44px); line-height:1.08; font-weight:900; letter-spacing:-1.2px; }
.rc-band5-title span { color:#3A43D1; }
.rc-band5-subtitle { margin:16px auto 32px; max-width:700px; font-size:15px; line-height:1.5; color:#5a6080; }

.rc-band5-grid { display:grid; grid-template-columns:1fr 2fr 1fr; gap:22px; align-items:stretch; }

.rc-b5-card { background:#fff; border:1px solid rgba(8,13,63,.06); border-radius:24px; padding:26px 22px 22px; text-align:left; box-shadow:0 22px 60px rgba(21,0,109,.05); display:flex; flex-direction:column; min-height:680px; }
.rc-b5-head { display:flex; gap:14px; align-items:flex-start; margin-bottom:8px; }
.rc-b5-head-text { flex:1; min-width:0; }
.rc-b5-icon { width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.rc-b5-icon i { font-size:20px; line-height:1; }
.rc-b5-icon--teal   { background:rgba(91,230,201,0.30); color:#0E8F73; }
.rc-b5-icon--purple { background:rgba(124,58,237,0.16); color:#7c3aed; }
.rc-b5-head h3 { margin:0 0 6px; color:#080d3f; font-size:18px; font-weight:800; line-height:1.2; }
.rc-b5-head p { margin:0; color:#6c7393; font-size:13.5px; line-height:1.5; }
.rc-b5-stage { flex:1; display:flex; flex-direction:column; gap:12px; margin:14px 0 16px; }

/* CARD 1: LOCATIONS */
.rc-loc-list { display:flex; flex-direction:column; gap:8px; }
.rc-loc-row { display:grid; grid-template-columns:32px 1fr auto 10px; gap:10px; align-items:center; padding:10px 12px; background:#fafbfd; border:1px solid rgba(8,13,63,0.05); border-radius:10px; }
.rc-loc-bullet { width:30px; height:30px; border-radius:8px; background:rgba(58,67,209,0.10); color:#3A43D1; display:inline-flex; align-items:center; justify-content:center; font-size:14px; }
.rc-loc-text strong { display:block; font-size:12px; font-weight:800; color:#080d3f; line-height:1.2; }
.rc-loc-text small { display:block; font-size:10.5px; color:#6c7393; margin-top:1px; }
.rc-loc-rating { display:flex; flex-direction:column; align-items:flex-end; gap:2px; }
.rc-loc-rating img { height:10px; width:auto; }
.rc-loc-rating span { font-size:10px; color:#6c7393; font-weight:600; }
.rc-loc-dot { width:8px; height:8px; border-radius:50%; }
.rc-loc-dot--open { background:#16a34a; box-shadow:0 0 0 3px rgba(22,163,74,0.18); }
.rc-loc-dot--closed { background:#9aa0bb; }
.rc-loc-add { display:flex; align-items:center; justify-content:center; gap:7px; padding:11px; border:1.5px dashed rgba(58,67,209,0.30); border-radius:10px; color:#3A43D1; font-size:12px; font-weight:700; background:rgba(58,67,209,0.04); }
.rc-loc-add i { font-size:14px; }

/* CARD 2: TEAM BOARD */
.rc-b5-stage--hero { margin:14px 0 16px; position:relative; }
.rc-team-board { background:#fff; border:1px solid rgba(8,13,63,0.08); border-radius:14px; box-shadow:0 22px 50px rgba(21,0,109,0.10); overflow:visible; position:relative; }
.rc-team-board .rc-browser-chrome { padding:10px 14px; border-top-left-radius:14px; border-top-right-radius:14px; }
.rc-team-head { display:flex; align-items:center; justify-content:space-between; padding:14px 18px; border-bottom:1px solid rgba(8,13,63,0.06); }
.rc-team-head strong { display:block; font-size:14px; font-weight:800; color:#080d3f; }
.rc-team-head small { display:block; font-size:11px; color:#6c7393; margin-top:1px; }
.rc-team-invite-btn { display:inline-flex; align-items:center; gap:6px; background:#3A43D1; color:#fff; font-size:11.5px; font-weight:700; padding:7px 12px; border-radius:8px; }
.rc-team-invite-btn i { font-size:12px; }

.rc-team-table { padding:6px 18px 18px; }
.rc-team-thead { display:grid; grid-template-columns:2.2fr 100px 1.2fr 100px; gap:10px; padding:10px 0; border-bottom:1px solid rgba(8,13,63,0.06); font-size:10.5px; font-weight:700; color:#6c7393; letter-spacing:0.4px; text-transform:uppercase; }
.rc-team-row { display:grid; grid-template-columns:2.2fr 100px 1.2fr 100px; gap:10px; padding:11px 0; align-items:center; border-bottom:1px solid rgba(8,13,63,0.04); font-size:12px; color:#080d3f; }
.rc-team-row:last-child { border-bottom:none; }
.rc-team-mem { display:inline-flex; align-items:center; gap:9px; }
.rc-team-avatar { width:30px; height:30px; border-radius:50%; color:#fff; font-size:10.5px; font-weight:800; display:inline-flex; align-items:center; justify-content:center; flex-shrink:0; }
.rc-team-id { min-width:0; }
.rc-team-id strong { display:block; font-size:12px; font-weight:800; color:#080d3f; line-height:1.15; }
.rc-team-id em { display:block; font-size:10.5px; color:#9aa0bb; font-style:normal; }
.rc-team-role { display:inline-block; font-size:10.5px; font-weight:800; padding:3px 9px; border-radius:99px; letter-spacing:0.2px; width:fit-content; }
.rc-team-role--owner    { background:rgba(58,67,209,0.14);  color:#3A43D1; }
.rc-team-role--manager  { background:rgba(91,230,201,0.30); color:#0E8F73; }
.rc-team-role--reviewer { background:rgba(124,58,237,0.14); color:#7c3aed; }
.rc-team-branch { font-size:11.5px; color:#5a6080; }
.rc-team-when   { font-size:11px; color:#9aa0bb; }

/* CARD 2: FLOATING INVITE MODAL */
.rc-invite-modal { position:absolute; right:-14px; bottom:-30px; width:260px; background:#fff; border:1px solid rgba(8,13,63,0.08); border-radius:14px; box-shadow:0 26px 52px rgba(21,0,109,0.20); padding:14px; z-index:5; }
.rc-invite-head { display:flex; gap:10px; align-items:flex-start; padding-bottom:10px; border-bottom:1px solid rgba(8,13,63,0.06); margin-bottom:10px; }
.rc-invite-ico { width:30px; height:30px; border-radius:8px; background:rgba(58,67,209,0.14); color:#3A43D1; display:inline-flex; align-items:center; justify-content:center; font-size:13px; flex-shrink:0; }
.rc-invite-head strong { display:block; font-size:12px; font-weight:800; color:#080d3f; }
.rc-invite-head small  { display:block; font-size:10px; color:#6c7393; margin-top:1px; line-height:1.3; }
.rc-invite-row { margin-bottom:8px; }
.rc-invite-label { display:block; font-size:9.5px; font-weight:700; color:#6c7393; letter-spacing:0.4px; text-transform:uppercase; margin-bottom:3px; }
.rc-invite-field { background:#fafbfd; border:1px solid rgba(8,13,63,0.08); border-radius:7px; padding:6px 9px; font-size:11px; color:#080d3f; display:flex; align-items:center; justify-content:space-between; }
.rc-invite-field--select i { color:#9aa0bb; font-size:10px; }
.rc-invite-actions { display:flex; gap:6px; margin-top:12px; }
.rc-invite-btn { flex:1; padding:7px 10px; border-radius:7px; font-size:11px; font-weight:700; text-align:center; }
.rc-invite-btn--ghost { background:#fafbfd; border:1px solid rgba(8,13,63,0.10); color:#5a6080; }
.rc-invite-btn--primary { background:#3A43D1; color:#fff; }

/* CARD 3: AUTOMATION RULES */
.rc-rule-card { background:#fafbfd; border:1px solid rgba(8,13,63,0.05); border-radius:10px; padding:11px 12px; }
.rc-rule-card--on { background:#fff; border-color:rgba(91,230,201,0.45); box-shadow:0 6px 14px rgba(91,230,201,0.10); }
.rc-rule-row { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-bottom:5px; }
.rc-rule-trigger { display:inline-flex; align-items:center; gap:7px; font-size:11.5px; color:#080d3f; line-height:1.3; }
.rc-rule-trigger i { color:#3A43D1; font-size:13px; }
.rc-rule-trigger strong { font-weight:800; }
.rc-rule-toggle { width:30px; height:18px; border-radius:99px; background:rgba(8,13,63,0.12); position:relative; flex-shrink:0; transition:background 0.2s; }
.rc-rule-toggle-dot { position:absolute; top:2px; left:2px; width:14px; height:14px; border-radius:50%; background:#fff; box-shadow:0 1px 3px rgba(0,0,0,0.18); transition:left 0.2s; }
.rc-rule-card--on .rc-rule-toggle { background:#16a34a; }
.rc-rule-card--on .rc-rule-toggle-dot { left:14px; }
.rc-rule-then { font-size:11px; color:#5a6080; line-height:1.4; padding-left:20px; margin-bottom:7px; }
.rc-rule-then i { color:#9aa0bb; margin-right:4px; font-size:10px; }
.rc-rule-foot { display:flex; align-items:center; justify-content:space-between; padding-top:7px; border-top:1px solid rgba(8,13,63,0.05); }
.rc-rule-runs { font-size:10.5px; color:#6c7393; font-weight:600; }
.rc-rule-status { display:inline-flex; align-items:center; gap:4px; font-size:9.5px; font-weight:800; color:#16a34a; padding:3px 8px; border-radius:99px; background:rgba(22,163,74,0.14); letter-spacing:0.3px; }
.rc-rule-status--off { background:rgba(8,13,63,0.06); color:#9aa0bb; }
.rc-rule-status--off .rc-pill-dot { display:none; }

@media (max-width:1100px) {
    .rc-band5-grid { grid-template-columns:1fr; }
    .rc-b5-card { min-height:auto; }
    .rc-invite-modal { position:static; width:auto; margin-top:14px; box-shadow:none; }
}
@media (max-width:640px) {
    .rc-band5-section { padding:56px 14px; }
    .rc-band5-title { letter-spacing:-1px; }
    .rc-band5-subtitle { font-size:15px; }
    .rc-b5-card { padding:22px 18px; }
    .rc-team-thead, .rc-team-row { grid-template-columns:2fr 80px 80px; }
    .rc-team-thead > :nth-child(3), .rc-team-row > :nth-child(3) { display:none; }
}

/* ─── BAND 6: CTA CLOSER (S70) ─── */
.rc-band6-section { position:relative; background:#0F1235; color:#fff; padding:96px 32px 110px; overflow:hidden; }
.rc-band6-glow { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:780px; height:420px; pointer-events:none; background:radial-gradient(ellipse at center, rgba(58,67,209,0.55), rgba(58,67,209,0.18) 35%, transparent 70%); z-index:0; }
.rc-band6-wrap { position:relative; z-index:1; max-width:780px; margin:0 auto; text-align:center; }
.rc-band6-kicker { display:inline-block; background:rgba(91,230,201,0.16); color:#5BE6C9; font-size:11px; font-weight:800; letter-spacing:1.8px; padding:9px 20px; border-radius:999px; margin-bottom:22px; }
.rc-band6-title { margin:0; font-size:clamp(36px,4.5vw,58px); line-height:1.05; font-weight:900; letter-spacing:-1.8px; color:#fff; }
.rc-band6-title span { color:#5BE6C9; }
.rc-band6-subtitle { margin:20px auto 36px; font-size:17px; line-height:1.55; color:rgba(255,255,255,0.66); max-width:520px; }

.rc-band6-ctas { display:inline-flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:36px; }
.rc-band6-cta { display:inline-flex; align-items:center; justify-content:center; padding:14px 28px; border-radius:999px; font-size:15px; font-weight:700; letter-spacing:-0.005em; text-decoration:none; transition:transform 0.2s ease, background 0.2s ease, border-color 0.2s ease; }
.rc-band6-cta--primary { background:#5BE6C9; color:#0F1235; }
.rc-band6-cta--primary:hover { background:#6FEED1; color:#0F1235; transform:translateY(-2px); text-decoration:none; }
.rc-band6-cta--ghost { background:transparent; color:#fff; border:1px solid rgba(255,255,255,0.22); }
.rc-band6-cta--ghost:hover { color:#fff; border-color:rgba(255,255,255,0.50); background:rgba(255,255,255,0.04); transform:translateY(-2px); text-decoration:none; }

.rc-band6-trust { display:inline-flex; flex-wrap:wrap; align-items:center; justify-content:center; gap:14px; font-size:13px; color:rgba(255,255,255,0.55); }
.rc-band6-trust span:not(.rc-band6-trust-dot) { display:inline-flex; align-items:center; gap:6px; }
.rc-band6-trust i { color:#5BE6C9; font-size:14px; }
.rc-band6-trust-dot { width:4px; height:4px; border-radius:50%; background:rgba(255,255,255,0.25); }

@media (max-width:640px) {
    .rc-band6-section { padding:72px 18px 88px; }
    .rc-band6-title { letter-spacing:-1px; }
    .rc-band6-subtitle { font-size:15px; }
    .rc-band6-ctas { flex-direction:column; align-items:stretch; width:100%; }
    .rc-band6-cta { width:100%; }
    .rc-band6-trust { font-size:12px; gap:10px; }
}

/* ─── S70 REVEAL + MOTION ─── */
.rc-rv, .rc-rv-left, .rc-rv-right, .rc-rv-pop {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
                transform 0.8s cubic-bezier(0.22,1,0.36,1),
                filter 0.8s cubic-bezier(0.22,1,0.36,1);
    will-change: opacity, transform;
}
.rc-rv        { transform: translateY(26px); }
.rc-rv-left   { transform: translateX(-48px) translateY(10px); }
.rc-rv-right  { transform: translateX(48px) translateY(10px); }
.rc-rv-pop    { transform: scale(0.92) translateY(20px); }

.rc-rv.is-in, .rc-rv-left.is-in, .rc-rv-right.is-in, .rc-rv-pop.is-in {
    opacity: 1;
    transform: none;
    filter: none;
}
.rc-rv[data-d="1"], .rc-rv-left[data-d="1"], .rc-rv-right[data-d="1"], .rc-rv-pop[data-d="1"] { transition-delay: 0.08s; }
.rc-rv[data-d="2"], .rc-rv-left[data-d="2"], .rc-rv-right[data-d="2"], .rc-rv-pop[data-d="2"] { transition-delay: 0.14s; }
.rc-rv[data-d="3"], .rc-rv-left[data-d="3"], .rc-rv-right[data-d="3"], .rc-rv-pop[data-d="3"] { transition-delay: 0.20s; }

/* Title blur-sharp */
.rc-tools-title.rc-rv, .rc-band3-title.rc-rv, .rc-band4-title.rc-rv, .rc-band5-title.rc-rv, .rc-band6-title.rc-rv {
    filter: blur(6px);
}
.rc-tools-title.rc-rv.is-in, .rc-band3-title.rc-rv.is-in, .rc-band4-title.rc-rv.is-in, .rc-band5-title.rc-rv.is-in, .rc-band6-title.rc-rv.is-in {
    filter: blur(0) !important;
}

/* Internal: bars fill from 0 */
.rc-an-bar { width: 0 !important; transition: width 0.9s cubic-bezier(0.22,1,0.36,1); }
.rc-an-bar.is-fill { /* width restored inline by JS */ }

/* Internal: rows draw down */
.rc-an-row { opacity: 0; transform: translateY(14px); transition: opacity 0.5s ease, transform 0.5s ease; }
.rc-an-row.is-in { opacity: 1; transform: none; }

/* Internal: gradient dot slides from left */
.rc-an-dot { opacity: 0; transform: translate(-50%,-50%) translateX(-30px); transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.rc-an-dot.is-in { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
    .rc-rv, .rc-rv-left, .rc-rv-right, .rc-rv-pop,
    .rc-an-bar, .rc-an-row, .rc-an-dot {
        opacity: 1 !important; transform: none !important; filter: none !important;
        transition: none !important; width: auto !important;
    }
}

/* ─── S70 SECTION DIVIDERS ─── */
.rc-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 8px auto;
    padding: 0 20px;
}
.rc-divider-line {
    width: 200px;
    height: 2px;
    flex: 0 0 auto;
}
.rc-divider-line:first-child {
    background: linear-gradient(to right, rgba(58,67,209,0) 0%, rgba(58,67,209,0.65) 70%, rgba(91,230,201,0.9) 100%);
}
.rc-divider-line:last-child {
    background: linear-gradient(to left, rgba(58,67,209,0) 0%, rgba(58,67,209,0.65) 70%, rgba(91,230,201,0.9) 100%);
}
.rc-divider-dot {
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    margin: 0 16px;
    border-radius: 999px;
    background: #5BE6C9;
    box-shadow: 0 0 0 5px rgba(91,230,201,0.18);
    position: relative;
    z-index: 1;
}
@media (max-width: 640px) {
    .rc-divider { margin: 0 auto; }
    .rc-divider-line { max-width: 120px; }
}
