/* ============================================================
   HIW V2 — "Get started in minutes" section
   Surface: light counterweight to dark hero. Solid #F7F8FC.
   Scope:   all rules under .hiwv2 — cannot leak.
   ============================================================ */

.hiwv2 {
    /* tokens — local to this section */
    --hv-bg:           #F7F8FC;
    --hv-card:         #FFFFFF;
    --hv-ink:          #0F1235;            /* deep navy — matches v2 hero base */
    --hv-ink-2:        #2A2F5C;            /* secondary navy */
    --hv-muted:        #6B7390;            /* meta text */
    --hv-muted-2:      #8A91AE;            /* lighter meta */
    --hv-hairline:     rgba(15, 18, 53, 0.08);
    --hv-hairline-2:   rgba(15, 18, 53, 0.12);
    --hv-aurora:       #3A43D1;
    --hv-aurora-hi:    #4A53E0;
    --hv-mint:         #5BE6C9;
    --hv-mint-soft:    #E6FBF6;
    --hv-amber:        #F59E0B;
    --hv-green:        #16a34a;

    background: var(--hv-bg);
    padding: 96px 0 104px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--hv-ink);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hiwv2__wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ── HEADER ─────────────────────────────────────────────── */

.hiwv2__head {
    text-align: center;
    margin-bottom: 56px;
}

.hiwv2-eyebrow {
    display: inline-block;
    margin: 0 0 22px;
    padding: 10px 22px;
    border-radius: 999px;
    background: rgba(91, 230, 201, 0.30);
    color: #009b82;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.hiwv2-title {
    margin: 0 0 16px;
    color: #080d3f;
    font-size: clamp(28px, 3.6vw, 46px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.2px;
}
.hiwv2-title .hiwv2-title__accent { color: #3A43D1; }

.hiwv2-sub {
    margin: 0 auto;
    max-width: 620px;
    color: var(--hv-muted);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400;
}

/* ── GRID ───────────────────────────────────────────────── */

.hiwv2__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* ── CARD BASE ──────────────────────────────────────────── */

.hiwv2-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--hv-card);
    border: 1px solid rgba(8, 13, 63, 0.06);
    border-radius: 24px;
    padding: 32px 28px 28px;
    box-shadow: 0 22px 60px rgba(21, 0, 109, 0.05);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.2s ease;
}

.hiwv2-card:hover {
    transform: translateY(-4px);
    border-color: var(--hv-hairline-2);
    box-shadow: 0 24px 48px -20px rgba(15, 18, 53, 0.18);
}

.hiwv2-card__top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.hiwv2-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    margin-bottom: 0;
    flex-shrink: 0;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.hiwv2-card:hover .hiwv2-card__icon {
    transform: scale(1.06);
}

.hiwv2-card__content {
    flex: 1;
    min-width: 0;
}

.hiwv2-card__icon--mint {
    background: var(--hv-mint-soft);
    color: #0E8F73;
}

.hiwv2-card__icon--white {
    background: rgba(255, 255, 255, 0.14);
    color: #FFFFFF;
}

.hiwv2-card__step {
    margin: 0 0 8px;
    color: var(--hv-mint);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hiwv2-card__title {
    margin: 0 0 10px;
    color: var(--hv-ink);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.012em;
}

.hiwv2-card__text {
    margin: 0;
    color: var(--hv-muted);
    font-size: 14.5px;
    line-height: 1.55;
}

/* ── CARD: ACCENT (center) ──────────────────────────────── */

.hiwv2-card--accent {
    background: var(--hv-aurora);
    border-color: var(--hv-aurora);
    color: #FFFFFF;
    box-shadow: 0 20px 48px -20px rgba(58, 67, 209, 0.5);
}

.hiwv2-card--accent:hover {
    transform: translateY(-4px);
    border-color: var(--hv-aurora);
    box-shadow: 0 36px 64px -22px rgba(58, 67, 209, 0.6);
}

.hiwv2-card--accent .hiwv2-card__step {
    color: rgba(255, 255, 255, 0.7);
}

.hiwv2-card--accent .hiwv2-card__title {
    color: #FFFFFF;
}

.hiwv2-card--accent .hiwv2-card__text {
    color: rgba(255, 255, 255, 0.78);
}

/* ── CARD: RECEIPT (bottom panel) ───────────────────────── */

.hiwv2-card__receipt {
    margin-top: auto;
    background: #FAFBFE;
    border: 1px solid var(--hv-hairline);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hiwv2-card__receipt--accent {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}

/* ── STEP 01: business identity ─────────────────────────── */

.hiwv2-biz {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hiwv2-biz__logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--hv-ink);
    flex-shrink: 0;
}

.hiwv2-biz__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hiwv2-biz__body {
    flex: 1;
    min-width: 0;
}

.hiwv2-biz__row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.hiwv2-biz__name {
    color: var(--hv-ink);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -0.005em;
}

.hiwv2-biz__verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--hv-aurora);
    font-size: 12px;
    font-weight: 600;
}

.hiwv2-biz__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hv-muted);
    font-size: 12px;
}

.hiwv2-biz__loc {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hiwv2-biz__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--hv-muted-2);
}

.hiwv2-biz__locs {
    color: var(--hv-muted);
}

.hiwv2-biz__status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid var(--hv-hairline);
}

.hiwv2-biz__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--hv-mint);
    flex-shrink: 0;
}

.hiwv2-biz__status-body {
    flex: 1;
    min-width: 0;
}

.hiwv2-biz__status-title {
    margin: 0 0 1px;
    color: var(--hv-ink);
    font-size: 13px;
    font-weight: 600;
}

.hiwv2-biz__status-sub {
    margin: 0;
    color: var(--hv-muted);
    font-size: 11.5px;
}

.hiwv2-biz__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hv-muted-2);
    flex-shrink: 0;
    transition: color 0.15s ease, transform 0.15s ease;
}

.hiwv2-card:hover .hiwv2-biz__chevron {
    color: var(--hv-ink);
    transform: translateX(2px);
}

/* ── STEP 02: QR + invite stats ─────────────────────────── */

.hiwv2-invite {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 16px;
    align-items: stretch;
}

.hiwv2-invite__qr {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.hiwv2-card--accent:hover .hiwv2-invite__qr {
    transform: scale(1.04);
}

.hiwv2-invite__qr svg {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1 / 1;
}

.hiwv2-invite__qr-label {
    color: var(--hv-ink);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hiwv2-invite__data {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #FFFFFF;
}

.hiwv2-invite__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.hiwv2-invite__head-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.hiwv2-invite__live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px 3px 7px;
    border-radius: 999px;
    background: rgba(91, 230, 201, 0.16);
    color: var(--hv-mint);
    font-size: 10.5px;
    font-weight: 600;
}

.hiwv2-invite__live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hv-mint);
    box-shadow: 0 0 0 0 rgba(91, 230, 201, 0.6);
    animation: hiwv2-pulse 1.8s ease-in-out infinite;
}

@keyframes hiwv2-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(91, 230, 201, 0.6); }
    50%      { box-shadow: 0 0 0 5px rgba(91, 230, 201, 0); }
}

.hiwv2-invite__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hiwv2-invite__stat {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hiwv2-invite__stat-num {
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.018em;
}

.hiwv2-invite__stat-lbl {
    color: rgba(255, 255, 255, 0.62);
    font-size: 10.5px;
    font-weight: 500;
}

.hiwv2-invite__customers {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hiwv2-invite__dots {
    display: flex;
    align-items: center;
}

.hiwv2-invite__dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--hv-aurora);
    margin-left: -6px;
    flex-shrink: 0;
}

.hiwv2-invite__dot:first-child {
    margin-left: 0;
}

.hiwv2-invite__dot--more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 28px;
    height: 22px;
    padding: 0 7px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.16) !important;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    margin-left: -6px;
}

.hiwv2-invite__customers-lbl {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 500;
}

/* ── STEP 03: rating + sparkline ────────────────────────── */

.hiwv2-rating {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: center;
}

.hiwv2-rating__left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hiwv2-rating__lbl {
    color: var(--hv-muted);
    font-size: 11.5px;
    font-weight: 500;
}

.hiwv2-rating__val {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hiwv2-rating__num {
    color: var(--hv-ink);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hiwv2-rating__val .hiwv2-istar {
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hiwv2-card:hover .hiwv2-rating__val .hiwv2-istar {
    transform: scale(1.12) rotate(-8deg);
}

.hiwv2-rating__delta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.hiwv2-rating__delta-num {
    color: var(--hv-green);
    font-size: 11.5px;
    font-weight: 700;
}

.hiwv2-rating__delta-lbl {
    color: var(--hv-muted);
    font-size: 11px;
}

.hiwv2-rating__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 80px;
    overflow: visible;
}

.hiwv2-rating__right svg {
    width: 100%;
    max-width: 180px;
    overflow: visible;
}

.hiwv2-branch {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: var(--hv-mint-soft);
    border: 1px solid rgba(91, 230, 201, 0.35);
}

.hiwv2-branch__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: rgba(58, 67, 209, 0.10);
    flex-shrink: 0;
}

.hiwv2-branch__body {
    flex: 1;
    min-width: 0;
}

.hiwv2-branch__title {
    margin: 0 0 1px;
    color: var(--hv-ink);
    font-size: 13px;
    font-weight: 600;
}

.hiwv2-branch__sub {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--hv-green);
    font-size: 11.5px;
    font-weight: 600;
}

/* ── CONNECTOR ARROWS (desktop only) ────────────────────── */

.hiwv2-connect {
    position: absolute;
    top: 44%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 3px 8px rgba(15, 18, 53, 0.14));
}

/* Connectors 62px wide, circle centered at cx=31.
   Gap centers: gap1 = 33.333% - 4px, gap2 = 66.666% + 4px.
   left = gap_center - 31. */
.hiwv2-connect--1 {
    left: calc(33.333% - 35px);
}

.hiwv2-connect--2 {
    left: calc(66.666% - 27px);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1100px) {
    .hiwv2-card {
        padding: 28px 22px 22px;
    }
    .hiwv2-card__title {
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .hiwv2 {
        padding: 72px 0 80px;
    }
    .hiwv2__wrap {
        padding: 0 20px;
    }
    .hiwv2__head {
        margin-bottom: 40px;
    }
    .hiwv2__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hiwv2-connect {
        display: none;
    }
    .hiwv2-card--accent {
        order: 0; /* keep natural reading order on mobile */
    }
}

@media (max-width: 480px) {
    .hiwv2 {
        padding: 56px 0 64px;
    }
    .hiwv2-title {
        font-size: 30px;
    }
    .hiwv2-sub {
        font-size: 15.5px;
    }
    .hiwv2-card {
        padding: 24px 20px 20px;
        border-radius: 18px;
    }
    .hiwv2-invite {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }
    .hiwv2-invite__stat-num {
        font-size: 20px;
    }
}

/* ── REDUCED MOTION ─────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
    .hiwv2-card,
    .hiwv2-card:hover,
    .hiwv2-card__icon,
    .hiwv2-card:hover .hiwv2-card__icon,
    .hiwv2-rating__val .hiwv2-istar,
    .hiwv2-card:hover .hiwv2-rating__val .hiwv2-istar,
    .hiwv2-invite__qr,
    .hiwv2-card--accent:hover .hiwv2-invite__qr {
        transition: none;
        transform: none;
    }
    .hiwv2-invite__live-dot {
        animation: none;
    }
}

/* ── RECEIPT CHROME (real-tool framing) ─────────────────── */
.hiwv2-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: -16px -16px 4px;
    padding: 9px 12px;
    background: #F1F2F6;
    border-bottom: 1px solid var(--hv-hairline);
    border-radius: 14px 14px 0 0;
}
.hiwv2-chrome__dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.hiwv2-chrome__dot--r { background: #ff5f57; }
.hiwv2-chrome__dot--y { background: #febc2e; }
.hiwv2-chrome__dot--g { background: #28c840; }
.hiwv2-chrome__url {
    flex: 1;
    margin-left: 6px;
    padding: 3px 9px;
    background: #fff;
    border-radius: 5px;
    font-size: 10px;
    color: #5a6080;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hiwv2-chrome--accent {
    background: rgba(255,255,255,0.10);
    border-bottom-color: rgba(255,255,255,0.14);
}
.hiwv2-chrome--accent .hiwv2-chrome__url {
    background: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.82);
}

/* ── HIWV2 APP SCREENS ── */
.hiwv2-app { padding: 0; overflow: hidden; }
.hiwv2-app .hiwv2-chrome { margin: 0; border-radius: 14px 14px 0 0; }
.hiwv2-app__body { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.hiwv2-app__label { font-size: 10.5px; font-weight: 700; color: var(--hv-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.hiwv2-search { display: flex; align-items: center; gap: 8px; padding: 9px 11px; background: #fff; border: 1px solid var(--hv-hairline); border-radius: 9px; color: var(--hv-muted-2); font-size: 12.5px; }
.hiwv2-search span:not(.hiwv2-search__caret) { color: var(--hv-ink); font-weight: 500; }
.hiwv2-search__caret { width: 1.5px; height: 14px; background: var(--hv-aurora); margin-left: -2px; animation: hiwv2-blink 1.1s step-end infinite; }
@keyframes hiwv2-blink { 50% { opacity: 0; } }
.hiwv2-result { display: flex; align-items: center; gap: 11px; padding: 11px; background: #fff; border: 1px solid rgba(58,67,209,0.22); border-radius: 10px; box-shadow: 0 6px 16px rgba(21,0,109,0.05); }
.hiwv2-result__logo { width: 38px; height: 38px; border-radius: 9px; overflow: hidden; background: var(--hv-ink); flex-shrink: 0; }
.hiwv2-result__logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hiwv2-result__body { flex: 1; min-width: 0; }
.hiwv2-result__row { display: flex; align-items: center; gap: 7px; margin-bottom: 2px; }
.hiwv2-result__name { font-size: 13.5px; font-weight: 700; color: var(--hv-ink); }
.hiwv2-result__badge { display: inline-flex; align-items: center; gap: 3px; font-size: 10px; font-weight: 700; color: var(--hv-aurora); background: rgba(58,67,209,0.10); padding: 2px 7px; border-radius: 999px; }
.hiwv2-result__meta { font-size: 11px; color: var(--hv-muted); }
.hiwv2-app__cta { width: 100%; margin-top: 2px; padding: 11px; border: none; border-radius: 9px; background: var(--hv-aurora); color: #fff; font-size: 12.5px; font-weight: 700; text-align: center; cursor: default; }
.hiwv2-app__hint { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--hv-muted); }
.hiwv2-app__check { display: inline-flex; align-items: center; justify-content: center; width: 17px; height: 17px; border-radius: 50%; background: rgba(91,230,201,0.30); flex-shrink: 0; }

/* ── HIWV2 STEP02 INVITE ── */
.hiwv2-app--dark .hiwv2-app__body { gap: 11px; }
.hiwv2-inv__tabs { display: flex; gap: 6px; }
.hiwv2-inv__tab { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 5px; padding: 7px 4px; border-radius: 8px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
.hiwv2-inv__tab--on { color: #0F1235; background: var(--hv-mint); }
.hiwv2-inv__rows { display: flex; flex-direction: column; gap: 7px; }
.hiwv2-inv__row { display: flex; align-items: center; gap: 9px; padding: 8px 10px; background: rgba(255,255,255,0.06); border-radius: 9px; }
.hiwv2-inv__avatar { width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; color: #fff; flex-shrink: 0; }
.hiwv2-inv__id { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.hiwv2-inv__id strong { font-size: 12px; font-weight: 600; color: #fff; }
.hiwv2-inv__id em { font-size: 10.5px; font-style: normal; color: rgba(255,255,255,0.55); }
.hiwv2-inv__status { font-size: 9.5px; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: 0.02em; flex-shrink: 0; }
.hiwv2-inv__status--opened { background: rgba(91,230,201,0.18); color: var(--hv-mint); }
.hiwv2-inv__status--sent { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }
.hiwv2-inv__bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 11px; border-top: 1px solid rgba(255,255,255,0.12); }
.hiwv2-inv__bar-meta { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.7); }
.hiwv2-inv__send { font-size: 11.5px; font-weight: 700; color: #0F1235; background: var(--hv-mint); padding: 7px 14px; border-radius: 8px; }

/* ── HIWV2 STEP03 MONITOR ── */
.hiwv2-mon__top { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: center; }
.hiwv2-mon__metric { display: flex; flex-direction: column; gap: 3px; }
.hiwv2-mon__lbl { font-size: 11px; font-weight: 500; color: var(--hv-muted); }
.hiwv2-mon__val { display: inline-flex; align-items: center; gap: 6px; font-size: 28px; font-weight: 800; color: var(--hv-ink); line-height: 1; letter-spacing: -0.02em; }
.hiwv2-mon__delta { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; color: var(--hv-green); margin-top: 2px; }
.hiwv2-mon__chart { height: 64px; display: flex; align-items: center; }
.hiwv2-mon__chart svg { width: 100%; }
.hiwv2-mon__rows { display: flex; flex-direction: column; gap: 7px; padding-top: 12px; border-top: 1px solid var(--hv-hairline); }
.hiwv2-mon__row { display: flex; align-items: center; gap: 10px; }
.hiwv2-mon__row-ico { width: 28px; height: 28px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hiwv2-mon__row-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.hiwv2-mon__row-body strong { font-size: 12.5px; font-weight: 700; color: var(--hv-ink); }
.hiwv2-mon__row-body em { font-size: 11px; font-style: normal; color: var(--hv-muted); }
.hiwv2-mon__row-delta { font-size: 12px; font-weight: 800; flex-shrink: 0; }
.hiwv2-mon__row-delta--up { color: var(--hv-green); }

/* ── HIWV2 STEP03 SENTIMENT ── */
.hiwv2-mon__live { display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0; margin-left: 8px; padding: 3px 9px; border-radius: 999px; background: rgba(22,163,74,0.12); color: var(--hv-green); font-size: 10px; font-weight: 700; }
.hiwv2-mon__live .hiwv2-invite__live-dot { background: var(--hv-green); box-shadow: 0 0 0 0 rgba(22,163,74,0.6); }
.hiwv2-mon__sent { padding-top: 12px; border-top: 1px solid var(--hv-hairline); }
.hiwv2-mon__sent-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.hiwv2-mon__sent-head span:first-child { font-size: 11px; font-weight: 500; color: var(--hv-muted); }
.hiwv2-mon__sent-pos { font-size: 11px; font-weight: 700; color: var(--hv-green); }
.hiwv2-mon__sent-bar { display: flex; height: 8px; border-radius: 999px; overflow: hidden; background: #e5e7eb; }
.hiwv2-mon__sent-bar span { display: block; height: 100%; }
.hiwv2-mon__rows { padding-top: 12px; }
