/* =============================================================================
   Recruiting Service — Landing page
   Layered on top of hiring-intelligence-report-landing.css (same theme).
   This file only adds the app-screenshot mock components and a few page-
   specific layout primitives (process, USP grid, pricing card).
   ============================================================================= */

:root {
    --rsl-shadow-shot:  0 1px 2px rgba(15, 23, 42, 0.05),
                        0 22px 60px -18px rgba(15, 23, 42, 0.22);
    --rsl-shot-radius:  14px;
}


/* =============================================================================
   Credibility banner — founder spotlight
   Sits directly below the hero. Real visual weight: 72px portrait, headline
   typography for the name, "Founded by" eyebrow above, commitment line below,
   and two visual credential badges (Google brand + years number) on the right.
   ============================================================================= */
.rsl-credband {
    background: var(--hirl-bg-alt);
    border-top: 1px solid var(--hirl-line);
    border-bottom: 1px solid var(--hirl-line);
    padding: 28px clamp(20px, 4vw, 40px);
}
.rsl-credband-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 6vw, 96px);
}

/* ----- LEFT: portrait + identity ----- */
.rsl-credband-bio {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}
.rsl-credband-portrait {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}
.rsl-credband-id {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.rsl-credband-eyebrow {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hirl-mute);
    font-weight: 700;
}
.rsl-credband-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rsl-credband-name {
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 800;
    letter-spacing: -0.018em;
    color: var(--hirl-ink);
    line-height: 1.15;
    margin: 0;
}
.rsl-credband-line {
    margin: 2px 0 0;
    font-size: 14px;
    color: var(--hirl-mute);
    font-weight: 500;
    line-height: 1.45;
    max-width: 460px;
}

/* Proper LinkedIn brand mark — official SVG, rendered in LinkedIn blue, no
   surrounding container. The "in" letters appear as transparent cutouts. */
.rsl-credband-li {
    display: inline-flex;
    align-items: center;
    color: #0A66C2;
    text-decoration: none;
    transition: opacity 0.18s ease;
    flex-shrink: 0;
    line-height: 0;
}
.rsl-credband-li:hover { opacity: 0.75; }
.rsl-credband-li svg { display: block; }

/* ----- RIGHT: credential badges (logo/number + label, inline horizontally)
   Visual parity: the anchor and label on each row sit at matched optical weight
   so the row reads as one credential, not "big number + tiny caption". ----- */
.rsl-credband-badges {
    display: flex;
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
    flex-shrink: 0;
}
.rsl-credband-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
/* Anchor — both Google logo and "14 years" sit on the same optical baseline,
   matched in height. Number gets a touch of weight to compensate for color. */
.rsl-credband-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 28px;
}
.rsl-credband-badge-icon img {
    height: 28px;
    width: auto;
    display: block;
}
.rsl-credband-badge-num {
    display: inline-flex;
    align-items: center;
    height: 28px;
    font-size: 19px;
    font-weight: 800;
    color: var(--hirl-ink);
    letter-spacing: -0.018em;
    line-height: 1;
    white-space: nowrap;
    flex-shrink: 0;
}
/* Label — bumped to match the anchor's optical weight. Ink-colored, not
   muted, so it doesn't read as a footnote. */
.rsl-credband-badge-label {
    font-size: 14.5px;
    color: var(--hirl-ink);
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1.3;
}

@media (max-width: 900px) {
    .rsl-credband-inner { gap: 32px; }
    .rsl-credband-badges { gap: 24px; }
    .rsl-credband-name { font-size: 19px; }
    .rsl-credband-badge-icon,
    .rsl-credband-badge-icon img,
    .rsl-credband-badge-num { height: 24px; }
    .rsl-credband-badge-num { font-size: 17px; }
    .rsl-credband-badge-label { font-size: 13.5px; }
}
@media (max-width: 720px) {
    .rsl-credband { padding: 22px 20px; }
    .rsl-credband-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .rsl-credband-bio { width: 100%; }
    .rsl-credband-badges {
        width: 100%;
        justify-content: flex-start;
        gap: 36px;
    }
    .rsl-credband-line { max-width: 100%; }
}


/* ----- Hero USP row -----
   Three horizontally-aligned USP items below the hero CTA. Each is an icon
   bubble + bold label + small subline. Wraps to a column on phone. */
.rsl-hero-usps {
    /* Break out of the 640px hero-copy so all three items can sit on one
       line without wrapping on desktop. */
    margin: 36px -60px 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(18px, 2.4vw, 32px);
    flex-wrap: nowrap;
}
.rsl-hero-usp {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    flex-shrink: 0;
}
.rsl-hero-usp-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rsl-hero-usp-ico-blue   { background: var(--hirl-tint-blue);   color: var(--blue); }
.rsl-hero-usp-ico-green  { background: var(--hirl-tint-green);  color: var(--green); }
.rsl-hero-usp-ico-purple { background: var(--hirl-tint-purple); color: var(--purple); }
.rsl-hero-usp-text { display: flex; flex-direction: column; gap: 1px; }
.rsl-hero-usp-h {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--hirl-ink);
    letter-spacing: -0.005em;
    line-height: 1.25;
    white-space: nowrap;
}
.rsl-hero-usp-sub {
    font-size: 12px;
    color: var(--hirl-mute);
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 720px) {
    .rsl-hero-usps {
        margin-left: 0;
        margin-right: 0;
        flex-wrap: wrap;
        gap: 18px 28px;
    }
}
@media (max-width: 560px) {
    .rsl-hero-usps { gap: 16px; }
    .rsl-hero-usp { width: 100%; max-width: 280px; }
}


/* ----- Hero floating cards (positions) -----
   Reuses .hirl-floating from the HIRL landing for the white card shell.
   We just place the four mocks around the centered hero copy. */
.rsl-float-cal {
    top: 4%;
    left: 1%;
    width: 280px;
    transform: rotate(-5deg);
    z-index: 4;
    padding: 14px 16px;
}
.rsl-float-pipe {
    bottom: 6%;
    left: -3%;
    width: 320px;
    transform: rotate(5deg);
    z-index: 3;
    padding: 14px 16px;
}
.rsl-float-cand {
    top: 6%;
    right: 0%;
    width: 290px;
    transform: rotate(6deg);
    z-index: 4;
    padding: 14px 16px;
}
.rsl-float-funnel {
    bottom: 8%;
    right: -2%;
    width: 280px;
    transform: rotate(-5deg);
    z-index: 3;
    padding: 14px 16px;
}


/* ----- Hero mock: calendar mini ----- */
.rsl-mock-cal { display: flex; flex-direction: column; gap: 8px; }
.rsl-mock-cal-head {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--hirl-mute); font-weight: 700;
}
.rsl-mock-cal-month { color: var(--hirl-ink); }
.rsl-mock-cal-syncs { display: inline-flex; gap: 4px; }
.rsl-cal-chip {
    width: 18px; height: 18px; border-radius: 4px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 800; color: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.10);
}
.rsl-cal-chip-google  { background: #4285F4; }
.rsl-cal-chip-outlook { background: #0078D4; }
.rsl-cal-chip-apple   { background: #1F2A44; }
.rsl-mock-cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px;
}
.rsl-mock-cal-cell {
    height: 32px; border-radius: 6px; background: var(--hirl-bg-alt);
}
.rsl-mock-cal-cell-day {
    background: #fff; border: 1px solid var(--hirl-line-2);
    display: flex; flex-direction: column; align-items: flex-start;
    padding: 4px 5px; font-size: 10px; font-weight: 700; color: var(--hirl-ink);
    gap: 2px;
}
.rsl-mock-cal-today {
    border-color: var(--blue); box-shadow: 0 0 0 2px rgba(0, 113, 235, 0.15);
}
.rsl-evt {
    height: 4px; width: 16px; border-radius: 2px; display: inline-block;
}
.rsl-evt-blue   { background: var(--blue); }
.rsl-evt-green  { background: var(--green); }
.rsl-evt-purple { background: var(--purple); }
.rsl-evt-orange { background: var(--orange); }
.rsl-mock-cal-event {
    display: flex; align-items: center; gap: 8px;
    padding-top: 6px; border-top: 1px dashed var(--hirl-line);
    font-size: 11px; color: var(--hirl-ink);
}
.rsl-mock-cal-event-dot {
    width: 8px; height: 8px; border-radius: 2px; flex-shrink: 0;
}
.rsl-mock-cal-event-name { flex: 1; font-weight: 600; }
.rsl-mock-cal-event-time { color: var(--hirl-mute); font-weight: 600; }


/* ----- Hero mock: pipeline mini ----- */
.rsl-mock-pipe { display: flex; flex-direction: column; gap: 10px; }
.rsl-mock-pipe-title {
    font-size: 12px; font-weight: 700; color: var(--hirl-ink);
}
.rsl-mock-pipe-cols {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.rsl-mock-pipe-col {
    background: var(--hirl-bg-alt); border-radius: 8px; padding: 6px 5px;
    display: flex; flex-direction: column; gap: 4px;
}
.rsl-mock-pipe-col-h {
    font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--hirl-mute); font-weight: 700;
    display: flex; align-items: center; justify-content: space-between;
}
.rsl-mock-pipe-col-h span { color: var(--hirl-ink); }
.rsl-mock-pipe-chip {
    height: 14px; background: #fff; border: 1px solid var(--hirl-line-2);
    border-radius: 4px;
}
.rsl-mock-pipe-chip.is-blue   { border-left: 3px solid var(--blue); }
.rsl-mock-pipe-chip.is-green  { border-left: 3px solid var(--green); }
.rsl-mock-pipe-chip.is-orange { border-left: 3px solid var(--orange); }


/* ----- Hero mock: candidate review mini ----- */
.rsl-mock-cand { display: flex; flex-direction: column; gap: 8px; }
.rsl-mock-cand-title {
    font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--hirl-mute); font-weight: 700;
    display: flex; align-items: center; justify-content: space-between;
}
.rsl-mock-cand-count {
    background: var(--hirl-tint-green); color: var(--green);
    padding: 2px 7px; border-radius: 999px;
    font-size: 10px; text-transform: none; letter-spacing: 0;
}
.rsl-mock-cand-row {
    display: grid;
    grid-template-columns: 28px 1fr 26px;
    gap: 8px; align-items: center;
}
.rsl-mock-cand-av {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700; color: #fff;
    background: var(--hirl-ink-2);
}
.rsl-av-1 { background: linear-gradient(135deg, #4285F4 0%, #1F62C9 100%); }
.rsl-av-2 { background: linear-gradient(135deg, #34A853 0%, #1F7A3B 100%); }
.rsl-av-3 { background: linear-gradient(135deg, #6B4DE6 0%, #4A33B5 100%); }
.rsl-av-4 { background: linear-gradient(135deg, #FBBC05 0%, #D08F02 100%); }
.rsl-av-5 { background: linear-gradient(135deg, #EA4335 0%, #B5291B 100%); }
.rsl-mock-cand-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rsl-mock-cand-name {
    font-size: 12px; font-weight: 700; color: var(--hirl-ink);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rsl-mock-cand-role {
    font-size: 10.5px; color: var(--hirl-mute);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rsl-mock-cand-score {
    width: 24px; height: 24px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800; color: #fff;
}
.rsl-mock-cand-score.is-green { background: var(--green); }
.rsl-mock-cand-score.is-blue  { background: var(--blue); }


/* ----- Hero mock: funnel card ----- */
.rsl-mock-funnel-card { display: flex; flex-direction: column; gap: 6px; }
.rsl-mock-funnel-title {
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--hirl-mute); font-weight: 700; margin-bottom: 4px;
}
.rsl-mock-funnel-row {
    display: grid;
    grid-template-columns: 64px 1fr 32px;
    gap: 8px; align-items: center;
    font-size: 11px;
}
.rsl-mock-funnel-label {
    color: var(--hirl-ink); font-weight: 600;
    font-size: 11px;
}
.rsl-mock-funnel-bar {
    position: relative; height: 8px;
    background: var(--hirl-bg-alt); border-radius: 999px;
    overflow: hidden;
}
.rsl-mock-funnel-bar::after {
    content: ""; position: absolute; left: 0; top: 0; height: 100%;
    width: var(--w, 0%);
    background: linear-gradient(90deg, var(--blue), #4ea1f3);
    border-radius: 999px;
}
.rsl-mock-funnel-val {
    text-align: right; color: var(--hirl-ink); font-weight: 700;
    font-variant-numeric: tabular-nums; font-size: 11px;
}


/* =============================================================================
   "App screenshot" frame
   Used in the feature sections — a browser-like chrome wrapping each mock.
   ============================================================================= */
.rsl-shot {
    background: #fff;
    border: 1px solid var(--hirl-line-2);
    border-radius: var(--rsl-shot-radius);
    box-shadow: var(--rsl-shadow-shot);
    overflow: hidden;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
}
.rsl-shot-top {
    display: flex; align-items: center; gap: 6px;
    padding: 9px 14px;
    background: linear-gradient(180deg, #FBFCFE 0%, #F4F6FB 100%);
    border-bottom: 1px solid var(--hirl-line-2);
}
.rsl-shot-dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--hirl-line);
}
.rsl-shot-top .rsl-shot-dot:nth-child(1) { background: #FF5F57; }
.rsl-shot-top .rsl-shot-dot:nth-child(2) { background: #FEBC2E; }
.rsl-shot-top .rsl-shot-dot:nth-child(3) { background: #28C840; }
.rsl-shot-url {
    margin-left: 10px;
    font-size: 11px; color: var(--hirl-mute);
    font-family: 'SF Mono', Menlo, Consolas, monospace;
    background: #fff;
    border: 1px solid var(--hirl-line-2);
    border-radius: 6px;
    padding: 3px 10px;
    flex: 1;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.rsl-shot-body {
    padding: 18px 20px;
    display: flex; flex-direction: column; gap: 14px;
}


/* ----- Outcome 1: full calendar shot ----- */
.rsl-shot-calendar .rsl-shot-body { gap: 10px; }
.rsl-shot-cal-header {
    display: flex; align-items: center; justify-content: space-between;
}
.rsl-shot-cal-month {
    font-size: 16px; font-weight: 700; color: var(--hirl-ink);
}
.rsl-shot-cal-syncs {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; color: var(--hirl-mute); font-weight: 600;
}
.rsl-shot-cal-sync-label {
    background: var(--hirl-tint-green); color: var(--green);
    padding: 3px 8px; border-radius: 999px; font-weight: 700;
    letter-spacing: 0.02em;
}
.rsl-shot-cal-weekrow {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px;
    font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--hirl-mute); font-weight: 700;
    padding-bottom: 4px; border-bottom: 1px solid var(--hirl-line);
}
.rsl-shot-cal-tracks {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 38px);
    gap: 4px;
}
.rsl-shot-cal-track {
    grid-row: 1 / -1; background: var(--hirl-bg-alt); border-radius: 6px;
}
.rsl-shot-cal-evt {
    grid-column: var(--col, 1); grid-row: var(--row, 1) / span var(--span, 1);
    background: #fff;
    border-left: 3px solid var(--blue);
    border-radius: 6px;
    padding: 6px 8px;
    font-size: 10px;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.10);
    display: flex; flex-direction: column; gap: 1px;
    overflow: hidden;
}
.rsl-shot-cal-evt.rsl-evt-blue   { border-left-color: var(--blue);   background: #F4F8FE; }
.rsl-shot-cal-evt.rsl-evt-green  { border-left-color: var(--green);  background: #F1FAF5; }
.rsl-shot-cal-evt.rsl-evt-purple { border-left-color: var(--purple); background: #F6F4FE; }
.rsl-shot-cal-evt.rsl-evt-orange { border-left-color: var(--orange); background: #FFF6EE; }
.rsl-shot-cal-evt-name {
    font-weight: 700; color: var(--hirl-ink);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rsl-shot-cal-evt-time { color: var(--hirl-mute); font-weight: 600; font-size: 9.5px; }
.rsl-shot-cal-caption {
    font-size: 12px; color: var(--hirl-mute);
    border-top: 1px dashed var(--hirl-line);
    padding-top: 10px;
}
.rsl-shot-cal-caption strong { color: var(--hirl-ink); }


/* ----- Outcome 2: analytics dashboard shot ----- */
.rsl-shot-an-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.rsl-shot-an-stat {
    display: flex; flex-direction: column; gap: 4px;
    padding: 10px 12px;
    background: var(--hirl-bg-alt);
    border-radius: 10px;
}
.rsl-shot-an-stat-label {
    font-size: 10.5px; color: var(--hirl-mute); font-weight: 600;
    letter-spacing: 0.02em;
}
.rsl-shot-an-stat-val {
    font-size: 22px; font-weight: 800; color: var(--hirl-ink);
    font-variant-numeric: tabular-nums; line-height: 1;
}
.rsl-shot-an-funnel {
    border-top: 1px solid var(--hirl-line);
    padding-top: 14px;
    display: flex; flex-direction: column; gap: 8px;
}
.rsl-shot-an-funnel-title {
    font-size: 12px; font-weight: 700; color: var(--hirl-ink);
}
.rsl-shot-an-funnel .rsl-mock-funnel-row {
    grid-template-columns: 80px 1fr 40px;
}
.rsl-shot-an-funnel .rsl-mock-funnel-bar {
    height: 10px;
}


/* ----- Sourcing: search results ----- */
.rsl-shot-search { display: flex; flex-direction: column; gap: 12px; }
.rsl-shot-search-bar {
    display: flex; align-items: center; gap: 8px;
    border: 1px solid var(--hirl-line-2);
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 13px; color: var(--hirl-ink); font-weight: 600;
    background: #fff;
}
.rsl-shot-search-bar svg { color: var(--hirl-mute); flex-shrink: 0; }
.rsl-shot-search-filters {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.rsl-shot-filter {
    background: var(--hirl-tint-purple); color: var(--purple);
    border-radius: 999px; padding: 3px 10px;
    font-size: 11px; font-weight: 700;
}
.rsl-shot-search-results { display: flex; flex-direction: column; gap: 8px; }
.rsl-shot-result-row {
    display: grid; grid-template-columns: 36px 1fr 32px; gap: 12px; align-items: center;
    padding: 8px 4px;
    border-bottom: 1px solid var(--hirl-line-2);
}
.rsl-shot-result-row:last-child { border-bottom: none; }
.rsl-shot-result-row .rsl-mock-cand-av { width: 36px; height: 36px; font-size: 12px; }
.rsl-shot-result-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rsl-shot-result-emp { font-size: 11.5px; color: var(--hirl-mute); }
.rsl-shot-result-row .rsl-mock-cand-score { width: 32px; height: 28px; font-size: 12px; }


/* ----- LinkedIn scouting mock ----- */
.rsl-shot-linkedin { display: flex; flex-direction: column; gap: 10px; }
.rsl-shot-linkedin-head {
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--hirl-line);
}
.rsl-shot-linkedin-title {
    font-size: 13px; font-weight: 700; color: var(--hirl-ink); flex: 1;
}
.rsl-shot-linkedin-cnt {
    font-size: 11px; color: var(--blue); font-weight: 700;
    background: var(--hirl-tint-blue);
    padding: 3px 9px; border-radius: 999px;
}
.rsl-shot-linkedin-row {
    display: grid; grid-template-columns: 32px 1fr auto; gap: 10px; align-items: center;
    padding: 6px 2px;
}
.rsl-shot-linkedin-row .rsl-mock-cand-av { width: 32px; height: 32px; font-size: 11px; }
.rsl-shot-linkedin-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rsl-shot-linkedin-sub { font-size: 11px; color: var(--hirl-mute); }
.rsl-shot-linkedin-pill {
    font-size: 10.5px; font-weight: 700;
    padding: 3px 9px; border-radius: 999px;
}
.rsl-shot-linkedin-pill.is-green  { background: var(--hirl-tint-green);  color: var(--green); }
.rsl-shot-linkedin-pill.is-yellow { background: var(--hirl-tint-yellow); color: #C99500; }
.rsl-shot-linkedin-pill.is-grey   { background: var(--hirl-line);        color: var(--hirl-mute); }


/* ----- Pipeline kanban (full) ----- */
.rsl-shot-pipeline .rsl-shot-body { gap: 12px; }
.rsl-shot-pipe-title {
    font-size: 14px; font-weight: 700; color: var(--hirl-ink);
}
.rsl-shot-pipe-cols {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.rsl-shot-pipe-col {
    background: var(--hirl-bg-alt);
    border-radius: 10px;
    padding: 10px 8px;
    display: flex; flex-direction: column; gap: 6px;
    min-height: 200px;
}
.rsl-shot-pipe-col-h {
    font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--hirl-mute); font-weight: 700;
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 4px;
}
.rsl-shot-pipe-col-h span { color: var(--hirl-ink); font-size: 11px; }
.rsl-shot-pipe-card {
    background: #fff;
    border-radius: 7px;
    padding: 6px 8px;
    display: flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 600; color: var(--hirl-ink);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}
.rsl-shot-pipe-card .rsl-mock-cand-av { width: 20px; height: 20px; font-size: 9px; }
.rsl-shot-pipe-card.is-blue   { border-left: 3px solid var(--blue); }
.rsl-shot-pipe-card.is-green  { border-left: 3px solid var(--green); }
.rsl-shot-pipe-card.is-orange { border-left: 3px solid var(--orange); }


/* ----- Templates editor mock ----- */
.rsl-shot-tmpl {
    display: grid; grid-template-columns: 180px 1fr; gap: 14px;
}
.rsl-shot-tmpl-list {
    display: flex; flex-direction: column; gap: 2px;
}
.rsl-shot-tmpl-row {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 10px;
    border-radius: 7px;
    font-size: 12px; font-weight: 600; color: var(--hirl-ink);
    cursor: default;
}
.rsl-shot-tmpl-row.is-active { background: var(--hirl-tint-blue); color: var(--blue); }
.rsl-shot-tmpl-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--blue); flex-shrink: 0;
}
.rsl-shot-tmpl-dot.is-grey { background: var(--hirl-line); }
.rsl-shot-tmpl-editor {
    display: flex; flex-direction: column; gap: 7px;
    border-left: 1px solid var(--hirl-line);
    padding-left: 14px;
}
.rsl-shot-tmpl-editor-h {
    font-size: 13px; font-weight: 700; color: var(--hirl-ink);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--hirl-line);
    margin-bottom: 4px;
}
.rsl-shot-tmpl-editor-line {
    height: 7px;
    background: var(--hirl-line-2);
    border-radius: 999px;
    width: var(--rsl-tmpl-w, 80%);
}
.rsl-shot-tmpl-editor-line.w-95 { width: 95%; }
.rsl-shot-tmpl-editor-line.w-90 { width: 90%; }
.rsl-shot-tmpl-editor-line.w-88 { width: 88%; }
.rsl-shot-tmpl-editor-line.w-70 { width: 70%; }
.rsl-shot-tmpl-editor-line.w-60 { width: 60%; }
.rsl-shot-tmpl-editor-vars {
    display: flex; flex-wrap: wrap; gap: 5px; margin-top: 5px;
}
.rsl-shot-tmpl-var {
    font-family: 'SF Mono', Menlo, Consolas, monospace;
    font-size: 10.5px;
    background: var(--hirl-tint-purple); color: var(--purple);
    padding: 2px 7px; border-radius: 4px; font-weight: 600;
}


/* ----- Documents mock (thumbnails grid) ----- */
.rsl-shot-docs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.rsl-shot-doc {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.rsl-shot-doc-thumb {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 6px;
    padding: 14px 10px;
    display: flex; flex-direction: column; gap: 6px;
    border: 1px solid var(--hirl-line-2);
    background: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.rsl-shot-doc-thumb.is-orange { background: #FFF6EE; border-color: #FBD9B5; }
.rsl-shot-doc-thumb.is-blue   { background: #F4F8FE; border-color: #C9DAF5; }
.rsl-shot-doc-thumb.is-green  { background: #F1FAF5; border-color: #BFE6CF; }
.rsl-shot-doc-thumb.is-purple { background: #F6F4FE; border-color: #D4CCF5; }
.rsl-shot-doc-thumb.is-red    { background: #FEF3F4; border-color: #F4C2C7; }
.rsl-shot-doc-thumb.is-yellow { background: #FFFAEB; border-color: #F1E1A8; }
.rsl-shot-doc-line {
    height: 6px;
    background: rgba(15, 23, 42, 0.12);
    border-radius: 999px;
    width: var(--w, 80%);
}
.rsl-shot-doc-line.w-50 { width: 50%; }
.rsl-shot-doc-line.w-55 { width: 55%; }
.rsl-shot-doc-line.w-60 { width: 60%; }
.rsl-shot-doc-line.w-66 { width: 66%; }
.rsl-shot-doc-line.w-70 { width: 70%; }
.rsl-shot-doc-line.w-72 { width: 72%; }
.rsl-shot-doc-line.w-78 { width: 78%; }
.rsl-shot-doc-line.w-80 { width: 80%; }
.rsl-shot-doc-line.w-85 { width: 85%; }
.rsl-shot-doc-line.w-88 { width: 88%; }
.rsl-shot-doc-line.w-90 { width: 90%; }
.rsl-shot-doc-name {
    font-size: 12px; font-weight: 700; color: var(--hirl-ink);
    text-align: center;
}


/* =============================================================================
   Pillar heading (Sourcing / Process Mgt / Paperwork)
   ============================================================================= */
.rsl-pillar-h {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    color: var(--hirl-ink);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 56px 0 24px;
    padding-top: 28px;
    border-top: 1px solid var(--hirl-line);
}
.rsl-pillar-h:first-of-type { border-top: none; padding-top: 0; margin-top: 24px; }
.rsl-pillar-tag {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 10px;
    font-size: 14px; font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.rsl-pillar-tag-purple { background: var(--hirl-tint-purple); color: var(--purple); }
.rsl-pillar-tag-green  { background: var(--hirl-tint-green);  color: var(--green); }
.rsl-pillar-tag-orange { background: var(--hirl-tint-orange); color: var(--orange); }
.rsl-pillar-sub {
    font-size: 14px;
    font-weight: 500;
    color: var(--hirl-mute);
    letter-spacing: 0;
}


/* =============================================================================
   Process steps (3 + ongoing)
   ============================================================================= */
.rsl-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px;
}
.rsl-process-step {
    display: flex; flex-direction: column; gap: 12px;
    padding: 0;
}
.rsl-process-num {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: var(--hirl-tint-blue);
    color: var(--blue);
    border-radius: 12px;
    font-size: 16px; font-weight: 800;
    font-variant-numeric: tabular-nums;
}
.rsl-process-num-plus {
    background: var(--hirl-tint-purple);
    color: var(--purple);
    font-size: 24px;
}
.rsl-process-h {
    font-size: 18px;
    font-weight: 700;
    color: var(--hirl-ink);
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.rsl-process-body {
    font-size: 14.5px;
    color: var(--hirl-mute);
    line-height: 1.55;
}
.rsl-process-meta {
    display: flex; flex-direction: column; gap: 6px;
    padding-top: 10px;
    border-top: 1px dashed var(--hirl-line);
}
.rsl-process-meta-pill {
    align-self: flex-start;
    font-size: 11px; font-weight: 700;
    color: var(--hirl-mute);
    background: var(--hirl-bg-alt);
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}
.rsl-process-meta-out {
    font-size: 12.5px;
    color: var(--hirl-ink);
    line-height: 1.5;
}
.rsl-process-step-ongoing .rsl-process-num { background: var(--hirl-tint-purple); color: var(--purple); }


/* =============================================================================
   USP grid (five reasons)
   ============================================================================= */
.rsl-usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}
.rsl-usp-card {
    display: flex; flex-direction: column; gap: 10px;
    background: #fff;
    border: 1px solid var(--hirl-line-2);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.rsl-usp-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 4px;
}
.rsl-usp-icon-blue   { background: var(--hirl-tint-blue);   color: var(--blue); }
.rsl-usp-icon-green  { background: var(--hirl-tint-green);  color: var(--green); }
.rsl-usp-icon-purple { background: var(--hirl-tint-purple); color: var(--purple); }
.rsl-usp-icon-orange { background: var(--hirl-tint-orange); color: var(--orange); }
.rsl-usp-icon-red    { background: var(--hirl-tint-red);    color: var(--red); }
.rsl-usp-h {
    font-size: 19px;
    font-weight: 700;
    color: var(--hirl-ink);
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.rsl-usp-body {
    font-size: 14.5px;
    color: var(--hirl-mute);
    line-height: 1.6;
}
.rsl-usp-card:nth-child(4),
.rsl-usp-card:nth-child(5) {
    /* keep the bottom row balanced when only 2 cards are in it */
}


/* =============================================================================
   Pricing card
   ============================================================================= */
.rsl-price {
    background: #fff;
    border: 1px solid var(--hirl-line-2);
    border-radius: 20px;
    padding: 36px 32px;
    margin-top: 32px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04),
                0 16px 40px -16px rgba(15, 23, 42, 0.10);
    text-align: center;
}
.rsl-price-amount {
    display: inline-flex; align-items: baseline; gap: 4px;
    margin-bottom: 4px;
}
.rsl-price-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--hirl-ink-2);
    line-height: 1;
}
.rsl-price-num {
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 800;
    color: var(--hirl-ink);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.rsl-price-period {
    font-size: 18px;
    color: var(--hirl-mute);
    font-weight: 600;
    margin-left: 4px;
}
.rsl-price-sub {
    font-size: 14px;
    color: var(--hirl-mute);
    font-weight: 600;
    margin-bottom: 24px;
}
.rsl-price-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 520px;
    display: flex; flex-direction: column; gap: 12px;
    text-align: left;
}
.rsl-price-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 15px;
    color: var(--hirl-ink);
    line-height: 1.55;
}
.rsl-price-list li .hirl-check {
    flex-shrink: 0;
    margin-top: 4px;
}


/* =============================================================================
   Responsive
   ============================================================================= */
@media (max-width: 1024px) {
    /* hide the rotated hero cards on tablet/phone — JS in the HIRL bundle
       relocates them inline below the H1 anyway */
    .rsl-float-cal, .rsl-float-pipe, .rsl-float-cand, .rsl-float-funnel {
        position: static;
        width: auto;
        transform: none;
        margin: 0 auto;
    }
    .rsl-process { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .rsl-usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .rsl-process { grid-template-columns: 1fr; gap: 28px; }
    .rsl-usp-grid { grid-template-columns: 1fr; }

    .rsl-shot-an-grid { grid-template-columns: repeat(2, 1fr); }
    .rsl-shot-pipe-cols { grid-template-columns: repeat(2, 1fr); }
    .rsl-shot-docs { grid-template-columns: repeat(2, 1fr); }
    .rsl-shot-tmpl { grid-template-columns: 1fr; }
    .rsl-shot-tmpl-editor { border-left: none; padding-left: 0; border-top: 1px solid var(--hirl-line); padding-top: 12px; }
    .rsl-shot-cal-weekrow { font-size: 9.5px; }
    .rsl-shot-cal-tracks { grid-template-rows: repeat(3, 32px); }
    .rsl-shot-cal-evt { font-size: 9px; padding: 4px 6px; }

    .rsl-price { padding: 28px 22px; }
}

@media (max-width: 560px) {
    .rsl-shot-search-bar { font-size: 11.5px; }
    .rsl-shot-filter { font-size: 10px; padding: 2px 8px; }
    .rsl-shot-result-row { grid-template-columns: 30px 1fr 28px; gap: 8px; }
    .rsl-shot-result-row .rsl-mock-cand-av { width: 30px; height: 30px; font-size: 10px; }
    .rsl-pillar-h { font-size: 22px; }
}
