/* ============================================================
   DSISM — sign in / join screens
   These pages run without the app shell (Layout = null), so they
   carry their own type, colours and form styles. Shared by every
   page a signed out visitor can reach.
   ============================================================ */
:root {
    --panel-1: #2a1660;
    --panel-2: #150b33;
    --ink-2: #423d63;
    --brand: #6d3ce4;
    --brand-2: #8b5cf6;
    --brand-deep: #4c1fb5;
    --gold: #f2b544;
    --mint: #f6f5fb;
    --ink: #1c1340;
    --muted: #7c7898;
    --label: #8b87a6;
    --line: #e7e5f3;
    --fill: #f7f6fd;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
    margin: 0;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    font-family: Poppins, "Segoe UI Variable Text", -apple-system, "Segoe UI", Inter, Roboto, Arial, sans-serif;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

/* ================= left panel ================= */
/* Content is centred as one column instead of hugging the left edge, so the
   panel does not read as a wall of empty space on wide screens. */
.panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 44px 48px;
    overflow: hidden;
    background: radial-gradient(110% 80% at 20% -5%, #3d2287 0%, var(--panel-1) 42%, var(--panel-2) 78%, #0d0620 100%);
    color: #fff;
}

/* The glow and the dot grid stay behind the copy: both are absolutely positioned and
   would otherwise paint over it. */
.panel::after, .panel::before { z-index: 0; }

.panel > * { position: relative; z-index: 1; }

/* Logo, copy and copyright share one column, so all three line up on the same
   left edge instead of the logo drifting out to the panel border. */
.panel-stack {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Logo and copy sit as one group in the middle: centring them separately left a
   gap the size of half the panel between the two. A centred logo over
   left-aligned copy reads as a mistake, so the whole column is centred. */
/* auto top margin here and on the foot: the free space in the column splits between
   the two, so the copy still sits mid panel while the foot holds the bottom edge. */
.panel-inner { margin-top: auto; padding-top: 36px; text-align: center; }

/* One soft glow instead of scattered icons: it holds the eye on the copy. */
.panel::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    bottom: -220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,.30), transparent 68%);
    pointer-events: none;
}

/* A faint dot grid keeps the dark half from reading as flat paint. */
.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(to bottom right, #000, transparent 72%);
    -webkit-mask-image: linear-gradient(to bottom right, #000, transparent 72%);
    pointer-events: none;
}

.brand { display: flex; align-items: center; justify-content: center; gap: 12px; flex: none; }

.brand i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-2), var(--brand-deep));
    display: grid;
    place-items: center;
    font: 800 14px/1 inherit;
    font-style: normal;
    color: #fff;
}

.brand b { font-size: 22px; font-weight: 800; letter-spacing: -.5px; }

.brand b em { font-style: normal; color: var(--gold); }


.eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    padding: 6px 13px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.05);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
}

.panel h1 {
    margin: 0 0 18px;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -.9px;
    text-wrap: balance;
}

.panel h1 span { color: var(--gold); }

.panel p {
    margin: 0 auto 30px;
    max-width: 40ch;
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255,255,255,.66);
}

/* The list is centred as a block, but its rows stay left aligned so the ticks
   form one straight column. */
.checks {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-grid;
    gap: 13px;
    text-align: left;
}

.checks li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 14.5px;
    color: rgba(255,255,255,.9);
}

.checks i {
    flex: none;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 6px;
    background: rgba(242,181,68,.16);
    display: grid;
    place-items: center;
}

.checks svg { width: 12px; height: 12px; color: var(--gold); }

/* Pinned to the bottom of the column so the panel has a base line instead of the
   copy floating in the middle of a tall empty half. Three tiles rather than three
   loose captions: as bare text they read as a stray line under the pitch. */
.panel-foot {
    margin-top: auto;
    padding-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.panel-foot .tile {
    padding: 14px 12px 15px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.10);
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
    text-align: center;
    transition: border-color .18s, transform .18s;
}

.panel-foot .tile:hover { border-color: rgba(242,181,68,.35); transform: translateY(-2px); }

.panel-foot i {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin: 0 auto 9px;
    border-radius: 9px;
    background: rgba(242,181,68,.14);
    border: 1px solid rgba(242,181,68,.22);
    color: var(--gold);
}

.panel-foot svg { width: 15px; height: 15px; }

.panel-foot b {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.panel-foot span { font-size: 11px; line-height: 1.45; color: rgba(255,255,255,.55); }


/* ================= right panel ================= */
.main {
    position: relative;
    background: linear-gradient(180deg, #fbfaff 0%, var(--mint) 55%, #efedf8 100%);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

/* A faint tint behind the card so the light half is not a flat sheet of paper. */
.main::before {
    content: "";
    position: absolute;
    width: 560px;
    height: 560px;
    left: -200px;
    top: -160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109,60,228,.07), transparent 68%);
    pointer-events: none;
}

/* Wider and taller than a plain form box: beside a full height brand panel a 412px
   card read as a small tile dropped on an empty half. */
.card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 462px;
    background: #fff;
    border: 1px solid #eceaf6;
    border-radius: 22px;
    padding: 46px 44px 34px;
    box-shadow: 0 2px 4px rgba(28,19,64,.03), 0 30px 70px -20px rgba(28,19,64,.20);
}


.card-brand { display: none; align-items: center; gap: 10px; margin-bottom: 22px; }

h2 { margin: 0 0 8px; font-size: 27px; font-weight: 800; letter-spacing: -.6px; text-align: center; }

.sub { margin: 0 0 30px; font-size: 14px; color: var(--muted); text-align: center; }

/* Sentence case, the way the labels read inside the app. The uppercase micro caps shouted
   over the fields they were naming and made a short form look like a legal document. */
label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--ink-2, #423d63);
}

.field { margin-bottom: 20px; position: relative; }

/* White by default, tint only on focus: a filled box for every field made the
   whole card look washed out. */
input[type=text], input[type=email], input[type=password] {
    width: 100%;
    height: 52px;
    padding: 0 44px 0 15px;
    border: 1px solid #ded9ee;
    border-radius: 11px;
    background: #fff;
    font: inherit;
    font-size: 14.5px;
    color: var(--ink);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

input:hover { border-color: #cdc5e6; }

input::placeholder { color: #aaa5c4; }

input:focus {
    border-color: var(--brand-2);
    box-shadow: 0 0 0 3.5px rgba(139,92,246,.14);
}

/* Chrome paints its own pale blue over autofilled boxes, so a saved username sat in a
   differently coloured field than the one below it. The inset shadow is the only way
   to repaint it. */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--ink);
    -webkit-box-shadow: 0 0 0 60px #fff inset;
    caret-color: var(--ink);
    transition: background-color 9999s ease-out;
}

.eye {
    position: absolute;
    right: 7px;
    top: 28px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    background: none;
    color: #a9a4c4;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.eye:hover { background: #f1eff9; color: var(--brand); }

.alert {
    margin-bottom: 18px;
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
    border: 1px solid;
}

.alert.ok { background: #eefaf2; border-color: #b7e4c9; color: #1c6b40; }

.alert.bad { background: #fdf0f0; border-color: #f3c2c2; color: #a12626; }

.err {
    display: none;
    margin-top: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #d33a3a;
}

.field.invalid .err { display: block; }

.field.invalid input { border-color: #e59a9a; background: #fff; }

.forgot { text-align: right; margin: -4px 0 22px; }

.forgot a { font-size: 12.5px; font-weight: 600; color: var(--brand); text-decoration: none; }

.forgot a:hover { text-decoration: underline; }

.btn {
    width: 100%;
    height: 52px;
    border: 0;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px -1px rgba(76,31,181,.35);
    transition: background .16s, box-shadow .16s, transform .1s;
}

.btn:hover { background: var(--brand-deep); box-shadow: 0 8px 20px -6px rgba(76,31,181,.5); }

.btn:active { transform: translateY(1px); }

.btn[disabled] { opacity: .65; cursor: not-allowed; }

/* No negative margins: the card padding differs per screen, so a rule that hangs
   into it would only line up on one of them. */
.note {
    margin: 26px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid var(--line);
    text-align: center;
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--muted);
}

/* Sits under the card, on the page ground rather than inside the form. */
.legal {
    position: relative;
    z-index: 1;
    margin: 20px 0 0;
    font-size: 12px;
    color: #9b96b5;
    text-align: center;
}

/* ================= responsive ================= */
@media (max-width: 1080px) {
    .panel { padding: 40px 36px; }

    .panel h1 { font-size: 30px; }
}

/* Laptop screens are short, not narrow: the card is the tallest thing on the page and
   would otherwise scroll on a 720px window. */
@media (max-height: 780px) {
    .card { padding: 32px 40px 26px; }

    h2 { font-size: 24px; }

    .sub { margin-bottom: 22px; }

    .field { margin-bottom: 16px; }

    input[type=text], input[type=email], input[type=password], .btn { height: 48px; }

    .note { margin-top: 20px; padding-top: 13px; }

    .legal { margin-top: 14px; }

    .panel h1 { font-size: 30px; }

    .panel p { margin-bottom: 22px; }

    .panel-foot { padding-top: 22px; }
}

@media (max-width: 900px) {
    body { grid-template-columns: 1fr; }

    .panel { display: none; }

    .main { padding: 28px 20px; }

    /* The card carries the logo once the dark panel is gone. */
    .card-brand { display: flex; }

    .card-brand i {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--brand-2), var(--brand-deep));
        display: grid;
        place-items: center;
        font: 800 12px/1 inherit;
        font-style: normal;
        color: #fff;
    }

    .card-brand b { font-size: 19px; font-weight: 800; letter-spacing: -.4px; }

    .card-brand b em { font-style: normal; color: var(--gold); }
}

@media (max-width: 420px) {
    .card { padding: 26px 20px; border-radius: 14px; }
}

/* ---------- join screen ---------- */
/* Two short fields sit side by side so the form does not turn into a long column the
   visitor has to scroll before seeing the button. */
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }

/* The sponsor box is the one thing on this form the visitor did not type, so it is set
   apart from the fields rather than sitting in the same stack. */
.sponsor-box {
    border: 1px dashed var(--line);
    border-radius: 12px;
    padding: .85rem .9rem;
    background: var(--fill);
    margin: .3rem 0 1rem;
}

.sponsor-box .cap {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--ink-2, #423d63);
    margin-bottom: .55rem;
}

.sponsor-box .cap svg { width: 14px; height: 14px; }

.sponsor-box .field { margin-bottom: 0; }

/* The code arrived on the link, so it is shown but not up for editing — a visitor who
   changes it would land under a different sponsor than the one who invited them.
   readonly rather than disabled: a disabled field is skipped by the browser and its value
   would never reach the form. */
.sponsor-box input[readonly] {
    background: #f2f0fa;
    border-color: #e2ddf1;
    color: var(--muted);
    cursor: default;
}

.sponsor-box input[readonly]:hover { border-color: #e2ddf1; }

.sponsor-box input[readonly]:focus { border-color: #e2ddf1; box-shadow: none; }

/* One line under the code that says what the code resolved to. It is the only feedback
   that tells the visitor whose team they are about to join. */
.sponsor-state { font-size: .78rem; margin: .5rem 0 0; min-height: 1.15rem; }

.sponsor-state.ok { color: #157a4a; }

.sponsor-state.bad { color: #b4302c; }

.sponsor-state.busy { color: var(--muted); }

.sponsor-state b { font-weight: 700; }

/* ---------- join position ---------- */
/* There are only two answers, so both are shown as tiles rather than hidden inside a
   dropdown the visitor has to open to discover what the choice even is. */
.pos-pick {
    margin-top: .85rem;
    padding-top: .8rem;
    border-top: 1px dashed var(--line);
}

.pos-pick .cap.plain {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--ink-2, #423d63);
    margin-bottom: .5rem;
}

/* The plan picker sits in the same strip as the join position, so it has to read as part
   of the form rather than as a browser control dropped into it. The native chevron cannot
   be styled, so it is replaced by one drawn here and room is left for it on the right. */
.plan-pick select {
    width: 100%;
    height: 52px;
    padding: 0 42px 0 15px;
    border: 1px solid #ded9ee;
    border-radius: 11px;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9a4c4' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px 16px;
    font: inherit;
    font-size: 14.5px;
    color: var(--ink);
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color .15s, box-shadow .15s;
}

.plan-pick select:hover { border-color: #cdc5e6; }

.plan-pick select:focus {
    border-color: var(--brand-2);
    box-shadow: 0 0 0 3.5px rgba(139, 92, 246, .14);
}

/* The strip already separates itself from the sponsor card above; a second dashed rule
   between the plan and the position would cut the same box twice. */
.plan-pick + .pos-pick { border-top: 0; padding-top: .55rem; }

@media (max-width: 1100px) {
    .plan-pick select { height: 48px; }
}

.pos-pair { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }

.pos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .15rem;
    padding: .7rem .5rem .6rem;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    background: #fff;
    font: inherit;
    cursor: pointer;
    transition: border-color .16s, background .16s, transform .16s, box-shadow .16s;
}

.pos-mark {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--fill);
    color: var(--brand);
    transition: background .16s, color .16s;
}

.pos-mark svg { width: 17px; height: 17px; }

.pos b { font-size: .88rem; font-weight: 700; color: var(--ink); }

.pos small { font-size: .68rem; font-weight: 600; color: var(--label); }

.pos:not(:disabled):hover {
    border-color: #d9d3f0;
    background: #fcfbff;
    transform: translateY(-1px);
}

/* The chosen side fills, so the answer is visible without reading the labels again. */
.pos.on {
    border-color: transparent;
    background: linear-gradient(140deg, var(--brand-deep), var(--brand) 65%, var(--brand-2));
    box-shadow: 0 12px 24px -16px rgba(76, 31, 181, .95);
}

.pos.on b { color: #fff; }

.pos.on small { color: rgba(255, 255, 255, .82); }

.pos.on .pos-mark { background: rgba(255, 255, 255, .2); color: #fff; }

/* Not yet answerable, or answerable but not by this tile: both read as unavailable,
   and neither is dressed up as an error. */
.pos:disabled { cursor: not-allowed; opacity: .55; }

.pos.taken {
    opacity: 1;
    border-style: dashed;
    background: #faf9fd;
}

.pos.taken .pos-mark { color: var(--label); }

.pos.taken b { color: var(--muted); }

.pos-pick.invalid .pos:not(.on) { border-color: #e6b3b1; }

.pos-pick .err { display: block; margin-top: .35rem; }

/* Terms is a decision, not a field, so it reads as a sentence with the box beside it. */
/* This is a label, and the field labels above it are uppercase small caps. A sentence the
   visitor has to read cannot wear that, so the label styling is undone here. */
.agree {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: none;
    line-height: 1.5;
    color: var(--muted);
    margin: .2rem 0 1.1rem;
}

.agree input { width: 16px; height: 16px; margin-top: .1rem; flex: none; accent-color: var(--brand); }

.agree a { color: var(--brand); font-weight: 600; }

.agree.invalid { color: #b4302c; }

@media (max-width: 560px) {
    .row-2 { grid-template-columns: 1fr; }
}
/* ---------- solo layout ---------- */
/* The join page has no sales panel beside it: someone opening a referral link has already
   been sold to by the person who sent it, and a second pitch only pushed the form off the
   screen. One card, centred, on the brand ground.

   block, not grid: a grid item's automatic minimum size is its content, so the two field
   row inside the card was widening the column and giving the page a sideways scrollbar. */
body.solo {
    display: block;
    height: auto;
    min-height: 100vh;
    padding: 26px 16px;
    overflow-x: hidden;
    background: linear-gradient(180deg, #fbfaff 0%, var(--mint) 55%, #efedf8 100%);
    /* Fixed, so the gradient still covers the page when the form is taller than the window
       instead of running out and leaving a band of a different shade under the card. */
    background-attachment: fixed;
}

body.solo .main {
    display: block;
    background: none;
    padding: 0;
    overflow: visible;
    /* Wider than the sign in card: this form has a row of two fields in it. */
    max-width: 452px;
    margin: 0 auto;
}

body.solo .card { max-width: none; padding: 30px 30px 26px; border-radius: 20px; }

/* The mark is the only branding left once the panel is gone, so it comes back here. */
body.solo .card-brand { display: flex; justify-content: center; margin-bottom: 14px; }

body.solo .card-brand i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: linear-gradient(140deg, var(--brand-deep), var(--brand-2));
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    font-style: normal;
}

body.solo .card-brand b { font-size: 16px; font-weight: 800; letter-spacing: -.3px; }

body.solo .card-brand b em { color: var(--gold); font-style: normal; }

/* Every gap on this form is tightened, because it is the tallest of the auth screens and
   a visitor should reach the button without scrolling. */
body.solo h2 { font-size: 23px; font-weight: 700; letter-spacing: -.03em; }

body.solo .sub { margin-bottom: 16px; font-size: 13px; }

body.solo .field { margin-bottom: 12px; }

body.solo label { margin-bottom: 5px; }

body.solo input { height: 44px; }

body.solo .eye { height: 32px; }

body.solo .btn { height: 46px; }

body.solo .sponsor-box { padding: .7rem .8rem; margin: .1rem 0 .85rem; }

body.solo .sponsor-box .cap { margin-bottom: .45rem; }

body.solo .agree { margin: 0 0 .9rem; }

body.solo .note { margin-top: 16px; }

@media (max-width: 560px) {
    body.solo { padding: 16px 12px; }

    body.solo .card { padding: 22px 18px 18px; }
}

/* ---------- fields with a leading icon ---------- */
/* The icon sits inside a wrapper around the input rather than the whole field, so it
   centres on the box itself and does not drift when the label wraps. */
.control { position: relative; }

.control input { padding-left: 42px; }

.control .lead {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #a9a4c4;
    pointer-events: none;
    transition: color .15s;
}

/* The icon follows the box it belongs to: it picks up the accent on focus and the error
   colour when the field is wrong, so the eye is led to the same place twice. */
.control input:focus ~ .lead { color: var(--brand); }

.field.invalid .control .lead { color: #d33a3a; }

.control .eye { top: 50%; transform: translateY(-50%); }

/* ---------- password strength ---------- */
/* Three segments, not a percentage: "create a strong password" is an instruction with no
   feedback, and a bar that fills in steps says how far along the visitor is. */
.strength { display: flex; align-items: center; gap: 6px; margin-top: 8px; }

.strength .bar { flex: 1 1 auto; display: flex; gap: 4px; }

.strength .seg {
    flex: 1 1 0;
    height: 4px;
    border-radius: 99px;
    background: #ece9f6;
    transition: background .18s;
}

.strength .txt { font-size: 11.5px; font-weight: 700; color: var(--muted); min-width: 46px; text-align: right; }

.strength.weak .seg:nth-child(1) { background: #e0776f; }

.strength.weak .txt { color: #c0554d; }

.strength.fair .seg:nth-child(-n+2) { background: #e0a94f; }

.strength.fair .txt { color: #96650c; }

.strength.good .seg { background: #4fae7d; }

.strength.good .txt { color: #157a4a; }

/* ---------- resolved sponsor ---------- */
/* Once the code resolves, the visitor is shown a person, not a line of text: this is the
   one thing on the page they cannot change, so it should be unmistakable who it is. */
.sponsor-hit {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    background: #eefaf2;
    border: 1px solid #c9e9d7;
}

.sponsor-hit .pic {
    width: 32px;
    height: 32px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #c9e9d7;
    color: #157a4a;
    font-size: 11px;
    font-weight: 800;
}

.sponsor-hit .who { flex: 1 1 auto; min-width: 0; line-height: 1.3; }

.sponsor-hit .who b {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sponsor-hit .who small { display: block; font-size: 11.5px; color: #4b8f6b; }

.sponsor-hit .tick { flex: none; width: 16px; height: 16px; color: #157a4a; }
