/* ============================================================================
   Rax Sales — brand theme + new components
   Loaded AFTER: fonts.css → range-1.webflow.shared.min.css → plp.css → THIS
   Two jobs:
     1) Re-skin the template's yellow accent to the Rax blue system.
     2) Add the components the template didn't have (nav, hero, product tabs,
        tier finder, tier cards, how-it-works steps, footer).
   The template design layer (plp.css) is left untouched; everything here is an
   override or an addition.
   ============================================================================ */

/* ---- Rax brand tokens ---------------------------------------------------- */
:root {
    --rax-blue: #0066FF;
    --rax-blue-light: #3385FF;
    --rax-grad: linear-gradient(180deg, #3a8bff, #0066ff);
    --rax-grad-hover: linear-gradient(180deg, #3385ff, #0066ff);
    --rax-green: #0a9d6e;
    --rax-ink: #1d1d1f;
    --rax-body: #6e6e73;
    --rax-surface: #ffffff;
    --rax-surface-2: #f5f5f7;
    --rax-border: rgba(20, 34, 59, 0.10);
    --rax-shadow: 0 18px 44px rgba(20, 34, 59, 0.12);
    --rax-shadow-sm: 0 8px 20px rgba(20, 34, 59, 0.07);
    --rax-nav-h: 72px;
}

/* ============================================================================
   1) RE-SKIN — remap the template's yellow accent to Rax blue
   ============================================================================ */

/* .plp-yellow drives eyebrows-on-dark, tags, badges, faq toggles, the AI
   avatar/badge, slider thumb, and .plp-yellow-text. Blue reads well on the
   dark sections, so use the light-blue as the accent and the deep blue on hover. */
.plp-body {
    --plp-yellow: #3385FF;
    --plp-yellow-hover: #0066FF;
    /* on-brand section washes (were periwinkle / green) */
    --plp-blue-wash: linear-gradient(rgba(0, 102, 255, 0), rgba(0, 102, 255, 0.06));
    --plp-green-wash: linear-gradient(rgba(0, 102, 255, 0), rgba(0, 102, 255, 0.05));
}

/* Primary CTA: was flat yellow with dark text → Rax blue gradient, white text. */
.plp-btn--primary {
    background: var(--rax-grad);
    color: #fff;
}
.plp-btn--primary:hover {
    background: var(--rax-grad-hover);
    box-shadow: 0 6px 24px rgba(0, 102, 255, 0.28);
}

/* Literal yellow tints in the template → blue tints. */
.plp-bento-card--featured .plp-bento-icon {
    background: rgba(0, 102, 255, 0.16);
    color: var(--rax-blue-light);
}
.plp-bento-tag {
    background: rgba(0, 102, 255, 0.12);
    color: var(--rax-blue-light);
}
/* icons inside feature/trust chips inherit the accent via currentColor */
.plp-bento-icon,
.plp-trust-icon { color: var(--rax-blue); }
.plp-rai-badge {
    background: rgba(0, 102, 255, 0.16);
    color: var(--rax-blue-light);
}
.plp-rai-avatar {
    background: var(--rax-blue);
    color: #fff;
}
.plp-rai-input-send {
    background: var(--rax-blue);
}

/* Keyboard focus ring (template shipped none). */
.plp-body a:focus-visible,
.plp-body button:focus-visible,
.plp-body input:focus-visible,
.plp-body select:focus-visible,
.plp-body textarea:focus-visible,
.plp-body [tabindex]:focus-visible {
    outline: 2px solid var(--rax-blue);
    outline-offset: 2px;
    border-radius: 8px;
}

/* Statement block (repurposed quote block) — no italic, no stars. */
.rax-statement .plp-quote-text {
    font-style: normal;
    color: var(--rax-ink);
}

/* No-JS safety: the template hides .plp-reveal (opacity:0) and reveals it on scroll.
   If JS can't run the observer, show everything instead of leaving it invisible. */
html:not(.rax-js) .plp-reveal {
    opacity: 1;
    transform: none;
}

/* ============================================================================
   2) TOP NAV
   ============================================================================ */
.rax-nav {
    position: relative;
    z-index: 900;
    background: #fff;
    border-bottom: 1px solid var(--rax-border);
}
.rax-nav-inner {
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 56px;
    height: var(--rax-nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.rax-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.rax-brand img {
    width: 30px;
    height: 30px;
    display: block;
}
.rax-brand span {
    font-family: var(--plp-font-sans);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.01em;
    color: var(--rax-ink);
}
.rax-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
}
.rax-nav-links a {
    font-family: var(--plp-font-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--rax-body);
    text-decoration: none;
    transition: color 0.2s;
}
.rax-nav-links a:hover {
    color: var(--rax-blue);
}
.rax-nav-cta {
    flex-shrink: 0;
    width: auto !important;
    max-width: none !important;
    padding: 11px 22px !important;
    font-size: 14px !important;
}
@media (max-width: 900px) {
    .rax-nav-inner {
        padding: 0 24px;
        height: 64px;
    }
    .rax-nav-links {
        display: none;
    }
}

/* ============================================================================
   3) HERO
   ============================================================================ */
.rax-hero {
    position: relative;
    background: var(--plp-white);
    padding: 88px 0 96px;
    overflow: hidden;
}
.rax-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(closest-side, rgba(51, 133, 255, 0.16), rgba(51, 133, 255, 0));
    pointer-events: none;
    z-index: 0;
}
.rax-hero .plp-container {
    position: relative;
    z-index: 1;
}
.rax-hero-head {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.rax-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rax-blue);
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.16);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 22px;
}
.rax-hero h1 {
    font-family: var(--plp-font-sans);
    font-size: 60px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--rax-ink);
    margin-bottom: 22px;
}
.rax-hero-sub {
    font-size: 19px;
    line-height: 1.6;
    color: var(--rax-body);
    max-width: 620px;
    margin: 0 auto 32px;
}
.rax-hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.rax-hero-trust {
    display: flex;
    gap: 26px;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.rax-hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--rax-ink);
}

/* Hero product mock (AI scheduling assistant) */
.rax-hero-visual {
    position: relative;
    max-width: 500px;
    margin: 64px auto 0;
}
.rax-hero-card {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid var(--rax-border);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--rax-shadow);
}
.rax-hc-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rax-surface-2);
    margin-bottom: 16px;
}
.rax-hc-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: var(--rax-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rax-hc-htext {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.rax-hc-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--rax-ink);
}
.rax-hc-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--rax-body);
}
.rax-hc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rax-green);
    box-shadow: 0 0 0 3px rgba(10, 157, 110, 0.16);
}
.rax-hc-chat {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}
.rax-hc-msg {
    max-width: 82%;
    padding: 11px 15px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.45;
}
.rax-hc-in {
    align-self: flex-start;
    background: var(--rax-surface-2);
    color: var(--rax-ink);
    border-bottom-left-radius: 4px;
}
.rax-hc-out {
    align-self: flex-end;
    background: rgba(0, 102, 255, 0.10);
    color: #08326e;
    border-bottom-right-radius: 4px;
}
.rax-hc-times {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.rax-hc-time {
    font-size: 13px;
    font-weight: 600;
    color: var(--rax-body);
    background: #fff;
    border: 1px solid var(--rax-border);
    border-radius: 10px;
    padding: 8px 12px;
}
.rax-hc-time-on {
    color: #fff;
    background: var(--rax-grad);
    border-color: transparent;
}
.rax-hc-confirm {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.14);
    border-radius: 14px;
    padding: 14px 16px;
}
.rax-hc-ctext {
    display: flex;
    flex-direction: column;
}
.rax-hc-ctitle {
    font-size: 14px;
    font-weight: 700;
    color: var(--rax-ink);
}
.rax-hc-csub {
    font-size: 13px;
    color: var(--rax-body);
}
.rax-hc-float {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1px solid var(--rax-border);
    border-radius: 12px;
    padding: 10px 13px;
    box-shadow: var(--rax-shadow-sm);
}
.rax-hc-float strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--rax-ink);
    line-height: 1.2;
}
.rax-hc-float em {
    display: block;
    font-style: normal;
    font-size: 11px;
    color: var(--rax-body);
}
.rax-hc-float-1 {
    top: 26px;
    left: -46px;
}
.rax-hc-float-2 {
    bottom: 34px;
    right: -46px;
}
.rax-hc-fdot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--rax-blue-light);
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .rax-hero h1 { font-size: 42px; }
    .rax-hero-sub { font-size: 17px; }
    .rax-hc-float { display: none; }
}
@media (max-width: 600px) {
    .rax-hero { padding: 56px 0 64px; }
    .rax-hero h1 { font-size: 33px; }
    .rax-hero-trust { gap: 12px 20px; }
}

/* ============================================================================
   4) PRODUCT TABS  (repurposed team-grid slot)
   ============================================================================ */
.rax-ptabs {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}
.rax-tabmenu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rax-tab {
    text-align: left;
    background: #fff;
    border: 1px solid var(--rax-border);
    border-radius: 16px;
    padding: 20px 22px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    font-family: var(--plp-font-sans);
}
.rax-tab:hover {
    border-color: rgba(0, 102, 255, 0.35);
}
.rax-tab.is-active {
    border-color: transparent;
    background: #fff;
    box-shadow: 0 0 0 2px var(--rax-blue), var(--rax-shadow-sm);
}
.rax-tab-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--rax-ink);
    margin-bottom: 4px;
}
.rax-tab.is-active .rax-tab-title {
    color: var(--rax-blue);
}
.rax-tab-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--rax-body);
}
.rax-tabvisual {
    position: relative;
    min-height: 320px;
    background: var(--rax-ink);
    border-radius: 24px;
    padding: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rax-pane {
    display: none;
    animation: plp-msg-in 0.4s ease both;
}
.rax-pane.is-active {
    display: block;
}
.rax-pane-head {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 18px;
}
.rax-pane .rax-hc-chat {
    margin-bottom: 0;
}
.rax-pane .rax-hc-in {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
}
.rax-pane .rax-hc-out {
    background: rgba(0, 102, 255, 0.28);
    color: #fff;
}
.rax-pane .rax-hc-role {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 3px;
}
.rax-slot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.rax-slot-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px;
}
.rax-slot-card.is-on {
    border-color: var(--rax-blue-light);
    background: rgba(0, 102, 255, 0.14);
}
.rax-slot-time {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.rax-slot-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}
.rax-slot-foot {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 10px;
}
.rax-confirm-big {
    text-align: center;
    padding: 24px 0;
}
.rax-confirm-big svg {
    margin-bottom: 14px;
}
.rax-confirm-big .rax-cb-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}
.rax-confirm-big .rax-cb-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 900px) {
    .rax-ptabs {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .rax-tabvisual {
        min-height: 260px;
        order: -1;
    }
}

/* ============================================================================
   7) HOW IT WORKS — steps  (repurposed testimonials slot)
   ============================================================================ */
.rax-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    counter-reset: none;
}
.rax-step {
    background: #fff;
    border: 1px solid var(--rax-border);
    border-radius: 24px;
    padding: 32px;
    position: relative;
}
.rax-step-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.rax-step-badge {
    font-family: var(--plp-font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    background: var(--rax-grad);
    border-radius: 100px;
    padding: 5px 12px;
}
.rax-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.rax-step-title {
    font-family: var(--plp-font-sans);
    font-size: 19px;
    font-weight: 700;
    color: var(--rax-ink);
    margin-bottom: 8px;
}
.rax-step-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--rax-body);
}
@media (max-width: 900px) {
    .rax-steps {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
}

/* ============================================================================
   8) FOOTER
   ============================================================================ */
.rax-footer {
    background: var(--rax-ink);
    color: #fff;
    padding: 72px 0 40px;
}
.rax-footer-inner {
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 56px;
}
.rax-footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.rax-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
}
.rax-footer-brand img {
    width: 30px;
    height: 30px;
}
.rax-footer-brand span {
    font-family: var(--plp-font-sans);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}
.rax-footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    max-width: 320px;
}
.rax-footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}
.rax-footer-col a,
.rax-footer-col span.rax-soon {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}
.rax-footer-col a:hover {
    color: #fff;
}
.rax-footer-col span.rax-soon {
    color: rgba(255, 255, 255, 0.35);
    cursor: default;
}
.rax-footer-bottom {
    padding-top: 28px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 900px) {
    .rax-footer-inner {
        padding: 0 24px;
    }
    .rax-footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .rax-footer-brand-col {
        grid-column: 1 / -1;
    }
}
@media (max-width: 600px) {
    .rax-footer-top {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   9) CONTACT PAGE
   ============================================================================ */
.rax-contact-hero {
    padding: 64px 0 24px;
    text-align: center;
    background: var(--plp-white);
    position: relative;
    overflow: hidden;
}
.rax-contact-hero::before {
    content: "";
    position: absolute;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    width: 760px;
    height: 560px;
    background: radial-gradient(closest-side, rgba(51, 133, 255, 0.14), rgba(51, 133, 255, 0));
    z-index: 0;
}
.rax-contact-hero .plp-container {
    position: relative;
    z-index: 1;
}
.rax-contact-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rax-blue);
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.16);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.rax-contact-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
    padding: 48px 0 24px;
}
.rax-card {
    background: #fff;
    border: 1px solid var(--rax-border);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--rax-shadow-sm);
}
.rax-form {
    display: grid;
    gap: 18px;
}
.rax-field {
    display: grid;
    gap: 7px;
}
.rax-field label {
    font-size: 14px;
    font-weight: 600;
    color: var(--rax-ink);
}
.rax-field input,
.rax-field select,
.rax-field textarea {
    font-family: var(--plp-font-sans);
    font-size: 15px;
    color: var(--rax-ink);
    background: var(--rax-surface-2);
    border: 1px solid var(--rax-border);
    border-radius: 10px;
    padding: 13px 14px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.rax-field textarea {
    min-height: 120px;
    resize: vertical;
}
.rax-field input:focus,
.rax-field select:focus,
.rax-field textarea:focus {
    border-color: var(--rax-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.12);
}
.rax-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.rax-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.rax-form-submit {
    width: 100%;
    margin-top: 4px;
}
.rax-form-submit.is-loading {
    opacity: 0.7;
    pointer-events: none;
}
.rax-form-note {
    font-size: 12px;
    line-height: 1.5;
    color: var(--rax-body);
    text-align: center;
}
.rax-form-status {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    min-height: 18px;
}
.rax-form-status-error { color: #d62b2b; }
.rax-form-success {
    text-align: center;
    padding: 24px 0;
}
.rax-form-success svg { margin-bottom: 12px; }
.rax-side-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rax-body);
    margin-bottom: 18px;
}
.rax-steps-list {
    display: grid;
    gap: 20px;
    margin-bottom: 28px;
}
.rax-steps-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    list-style: none;
}
.rax-steps-list .rax-sl-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--rax-grad);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rax-sl-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--rax-ink);
    margin-bottom: 2px;
}
.rax-sl-desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--rax-body);
}
.rax-email-block {
    border-top: 1px solid var(--rax-border);
    padding-top: 22px;
}
.rax-email-block a {
    color: var(--rax-blue);
    font-weight: 600;
    text-decoration: none;
}
.rax-cfaq {
    max-width: 760px;
    margin: 0 auto;
}
.rax-cfaq details {
    border-bottom: 1px solid var(--rax-border);
    padding: 18px 0;
}
.rax-cfaq summary {
    font-size: 16px;
    font-weight: 600;
    color: var(--rax-ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.rax-cfaq summary::-webkit-details-marker { display: none; }
.rax-cfaq summary::after {
    content: "+";
    color: var(--rax-blue);
    font-weight: 700;
    font-size: 20px;
}
.rax-cfaq details[open] summary::after { content: "−"; }
.rax-cfaq details p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--rax-body);
    margin-top: 12px;
}
@media (max-width: 900px) {
    .rax-contact-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .rax-card { padding: 28px; }
}
@media (max-width: 600px) {
    .rax-field-row { grid-template-columns: 1fr; }
}

/* ============================================================================
   10) ACCOUNTING DASHBOARD MOCK  (hero + feature visuals)
   ============================================================================ */
.rax-dash {
    position: relative;
    z-index: 2;
    background: #fff;
    border: 1px solid var(--rax-border);
    border-radius: 24px;
    padding: 22px;
    box-shadow: var(--rax-shadow);
}
.rax-dash-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rax-surface-2);
    margin-bottom: 18px;
}
.rax-dash-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--rax-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rax-dash-htext { display: flex; flex-direction: column; gap: 1px; }
.rax-dash-title { font-size: 14px; font-weight: 700; color: var(--rax-ink); }
.rax-dash-sub { font-size: 12px; color: var(--rax-body); }
.rax-dash-period {
    margin-left: auto;
    font-size: 12px;
    font-weight: 600;
    color: var(--rax-body);
    background: var(--rax-surface-2);
    border-radius: 100px;
    padding: 5px 12px;
}
.rax-dash-summary {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 16px;
}
.rax-dash-label { font-size: 12px; font-weight: 600; color: var(--rax-body); margin-bottom: 3px; }
.rax-dash-amount { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; color: var(--rax-ink); }
.rax-dash-delta {
    font-size: 12px;
    font-weight: 700;
    color: var(--rax-green);
    background: rgba(10, 157, 110, 0.1);
    border-radius: 100px;
    padding: 5px 10px;
}
.rax-dash-bars {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    height: 54px;
    margin-bottom: 18px;
}
.rax-dash-bar { flex: 1; border-radius: 5px 5px 0 0; background: rgba(0, 102, 255, 0.14); }
.rax-dash-bar.on { background: var(--rax-grad); }
.rax-txns { display: flex; flex-direction: column; gap: 12px; }
.rax-txn { display: flex; align-items: center; gap: 12px; }
.rax-txn-ic {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--rax-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rax-txn-main { flex: 1; min-width: 0; }
.rax-txn-name { font-size: 14px; font-weight: 600; color: var(--rax-ink); }
.rax-txn-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--rax-blue);
    background: rgba(0, 102, 255, 0.08);
    border-radius: 100px;
    padding: 2px 9px;
    margin-top: 3px;
}
.rax-txn-amt { font-size: 14px; font-weight: 700; color: var(--rax-ink); flex-shrink: 0; }
.rax-txn-amt.in { color: var(--rax-green); }

/* dark variants for use inside the product-tab dark panels */
.rax-pane .rax-txn-ic { background: rgba(255, 255, 255, 0.06); }
.rax-pane .rax-txn-name { color: #fff; }
.rax-pane .rax-txn-cat { background: rgba(0, 102, 255, 0.28); color: #cfe0ff; }
.rax-pane .rax-txn-amt { color: #fff; }
.rax-pane .rax-txn-amt.in { color: #52d3a2; }

/* ===== Team avatars as initials (illustrative placeholders, no photos) ===== */
.rax-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    background: var(--rax-grad);
}
.rax-avatar.alt { background: linear-gradient(180deg, #5aa0ff, #2f7be6); }
.rax-avatar.alt2 { background: linear-gradient(180deg, #2f8fe0, #0b4fb8); }

/* ===== "Illustrative" caption for placeholder social proof / sample numbers ===== */
.rax-illus {
    font-size: 12px;
    font-style: italic;
    color: var(--rax-body);
}
.plp-section--dark .rax-illus { color: rgba(255, 255, 255, 0.45); }

/* ===== Savings calculator slider thumb -> deep Rax blue ===== */
.plp-calc-slider::-webkit-slider-thumb {
    background: var(--rax-blue);
    border-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.4);
}
.plp-calc-slider::-moz-range-thumb {
    background: var(--rax-blue);
    border-color: #fff;
}

@media (max-width: 600px) {
    .rax-dash-amount { font-size: 26px; }
}
