/* RoundStack marketing site */

.rs-mkt-body {
    background: var(--rs-white);
    color: var(--rs-navy);
    padding-bottom: 5.5rem;
}

@media (min-width: 992px) {
    .rs-mkt-body {
        padding-bottom: 0;
    }
}

.rs-mkt-body main {
    overflow-x: hidden;
}

/* —— Nav —— */
.rs-mkt-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rs-border);
}

.rs-mkt-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 4rem;
    padding-block: 0.5rem;
}

.rs-mkt-logo {
    height: 2rem;
    width: auto;
    display: block;
}

.rs-mkt-nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rs-mkt-nav-links a {
    color: var(--rs-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
}

.rs-mkt-nav-links a:hover,
.rs-mkt-nav-links a:focus-visible {
    color: var(--rs-green);
}

.rs-mkt-nav-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.rs-mkt-nav-actions .btn {
    min-height: 44px;
    padding-inline: 1.1rem;
}

.rs-mkt-nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius-sm);
    background: var(--rs-white);
    color: var(--rs-navy);
}

.rs-mkt-nav-toggle:focus-visible {
    outline: 2px solid var(--rs-green);
    outline-offset: 2px;
}

.rs-mkt-nav-drawer {
    display: none;
    border-top: 1px solid var(--rs-border);
    padding: 1rem 0 1.25rem;
}

.rs-mkt-nav-drawer.is-open {
    display: block;
}

.rs-mkt-nav-drawer ul {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.rs-mkt-nav-drawer a {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: var(--rs-navy);
    text-decoration: none;
    font-weight: 500;
}

.rs-mkt-nav-drawer .rs-mkt-drawer-actions {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 992px) {
    .rs-mkt-nav-links,
    .rs-mkt-nav-actions {
        display: flex;
    }

    .rs-mkt-nav-toggle,
    .rs-mkt-nav-drawer {
        display: none !important;
    }
}

/* —— Hero —— */
.rs-mkt-hero {
    position: relative;
    min-height: min(68vh, 40rem);
    display: flex;
    align-items: center;
    color: var(--rs-white);
    background: var(--rs-navy);
    overflow: hidden;
}

.rs-mkt-hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.rs-mkt-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(13, 34, 54, 0.55) 0%, rgba(13, 34, 54, 0.78) 55%, rgba(13, 34, 54, 0.92) 100%),
        linear-gradient(90deg, rgba(13, 34, 54, 0.72) 0%, rgba(13, 34, 54, 0.35) 100%);
}

.rs-mkt-hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 2.75rem 0 2.5rem;
}

.rs-mkt-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(19, 182, 122, 0.45);
    border-radius: 999px;
    background: rgba(19, 182, 122, 0.12);
    color: #9BE8C7;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.rs-mkt-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rs-mkt-trust-strip li {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.25rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    font-weight: 600;
}

.rs-mkt-hero-headline,
.rs-mkt-hero h1 {
    color: var(--rs-white);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 1rem 0 1rem;
    max-width: 16ch;
}

.rs-mkt-hero-headline--rotate {
    max-width: none;
}

.rs-mkt-hero-rotate {
    display: block;
}

.rs-mkt-hero-rotate-viewport {
    display: block;
    overflow: hidden;
    min-height: 2.35em;
}

.rs-mkt-hero-rotate-text {
    display: block;
    color: #9BE8C7;
    text-shadow: 0 2px 24px rgba(19, 182, 122, 0.35);
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.rs-mkt-hero-rotate.is-exiting .rs-mkt-hero-rotate-text {
    transform: translateY(-108%);
    opacity: 0;
}

.rs-mkt-hero-rotate.is-entering .rs-mkt-hero-rotate-text {
    transform: translateY(108%);
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .rs-mkt-hero-rotate-text {
        transition: none;
    }
}

.rs-mkt-hero-support {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.0625rem;
    line-height: 1.55;
    max-width: 36rem;
    margin-bottom: 1.5rem;
}

.rs-mkt-hero-actions {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.rs-mkt-hero-actions .btn {
    min-height: 48px;
    font-weight: 600;
}

.rs-mkt-hero-actions .btn-outline-light {
    border-width: 1.5px;
}

@media (min-width: 576px) {
    .rs-mkt-hero-actions {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (min-width: 992px) {
    .rs-mkt-hero {
        min-height: min(72vh, 44rem);
    }

    .rs-mkt-hero-inner {
        padding: 3.25rem 0 3rem;
    }

    .rs-mkt-hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
        gap: 2.5rem;
        align-items: center;
    }

    .rs-mkt-hero-actions {
        margin-bottom: 0;
    }
}

/* —— App mockup —— */
.rs-mkt-mock {
    background: var(--rs-white);
    border-radius: 1rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    color: var(--rs-navy);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rs-mkt-mock-chrome {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 0.9rem;
    background: #f0f2f5;
    border-bottom: 1px solid var(--rs-border);
}

.rs-mkt-mock-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #d0d5dd;
}

.rs-mkt-mock-dot:nth-child(1) { background: #f97066; }
.rs-mkt-mock-dot:nth-child(2) { background: #fdb022; }
.rs-mkt-mock-dot:nth-child(3) { background: #32d583; }

.rs-mkt-mock-title {
    margin-left: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rs-muted);
}

.rs-mkt-mock-body {
    display: grid;
    grid-template-columns: 3.25rem 1fr;
    min-height: 16rem;
}

.rs-mkt-mock-side {
    background: var(--rs-navy);
    padding: 0.75rem 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    align-items: center;
}

.rs-mkt-mock-side span {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 0.4rem;
    background: rgba(255, 255, 255, 0.12);
}

.rs-mkt-mock-side span.is-active {
    background: var(--rs-green);
}

.rs-mkt-mock-main {
    padding: 0.9rem;
    background: var(--rs-bg);
}

.rs-mkt-mock-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}

.rs-mkt-mock-heading strong {
    font-size: 0.95rem;
}

.rs-mkt-mock-heading span {
    font-size: 0.75rem;
    color: var(--rs-muted);
}

.rs-mkt-mock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    background: var(--rs-white);
    border: 1px solid var(--rs-border);
    border-radius: 0.65rem;
    padding: 0.7rem 0.8rem;
    margin-bottom: 0.5rem;
}

.rs-mkt-mock-row small {
    display: block;
    color: var(--rs-muted);
    font-size: 0.7rem;
}

.rs-mkt-mock-badge {
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.25rem 0.45rem;
    border-radius: 999px;
    background: var(--rs-green-soft);
    color: var(--rs-green-dark);
}

.rs-mkt-mock-badge.is-due {
    background: #fff4e5;
    color: #b54708;
}

/* —— How it works —— */
.rs-mkt-step {
    height: 100%;
    padding: 1.5rem 1.35rem;
    border-radius: var(--rs-radius);
    background: var(--rs-bg);
    border: 1px solid var(--rs-border);
}

.rs-mkt-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    min-height: 2.5rem;
    margin-bottom: 1rem;
    border-radius: 0.65rem;
    background: var(--rs-green-soft);
    color: var(--rs-green-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

.rs-mkt-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.rs-mkt-step p {
    margin: 0;
    color: var(--rs-muted);
    line-height: 1.5;
}

/* —— Sections —— */
.rs-mkt-section {
    padding: 4rem 0;
}

.rs-mkt-section-alt {
    background: var(--rs-bg);
}

.rs-mkt-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.rs-mkt-section-lead {
    color: var(--rs-muted);
    max-width: 40rem;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.55;
}

.rs-mkt-card {
    height: 100%;
    background: var(--rs-white);
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius);
    padding: 1.35rem;
    box-shadow: var(--rs-shadow);
}

.rs-mkt-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.rs-mkt-card p {
    margin: 0;
    color: var(--rs-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

.rs-mkt-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    background: var(--rs-green-soft);
    color: var(--rs-green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.85rem;
}

.rs-mkt-diff-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.rs-mkt-diff-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-weight: 500;
}

.rs-mkt-diff-list li::before {
    content: "";
    flex-shrink: 0;
    width: 0.65rem;
    height: 0.65rem;
    margin-top: 0.4rem;
    border-radius: 50%;
    background: var(--rs-green);
}

/* —— Industry cards —— */
.rs-mkt-industry-card {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: var(--rs-radius);
    overflow: hidden;
    border: 1px solid var(--rs-border);
    background: var(--rs-white);
    box-shadow: var(--rs-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rs-mkt-industry-card:hover,
.rs-mkt-industry-card:focus-visible {
    color: inherit;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(13, 34, 54, 0.12);
}

.rs-mkt-industry-card-media {
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
}

.rs-mkt-industry-card-body {
    padding: 1.1rem 1.2rem 1.25rem;
}

.rs-mkt-industry-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.rs-mkt-industry-card-body span {
    color: var(--rs-green);
    font-weight: 600;
    font-size: 0.875rem;
}

/* —— Testimonials —— */
.rs-mkt-quote {
    height: 100%;
    background: var(--rs-white);
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius);
    padding: 1.5rem;
    box-shadow: var(--rs-shadow);
}

.rs-mkt-quote p {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
}

.rs-mkt-quote strong {
    display: block;
    font-size: 0.95rem;
}

.rs-mkt-quote span {
    color: var(--rs-muted);
    font-size: 0.875rem;
}

/* —— Pricing —— */
.rs-mkt-price-card {
    position: relative;
    height: 100%;
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius);
    background: var(--rs-white);
    padding: 1.75rem;
    box-shadow: var(--rs-shadow);
}

.rs-mkt-price-card.is-featured {
    border-color: var(--rs-green);
    box-shadow: 0 12px 32px rgba(19, 182, 122, 0.18);
}

.rs-mkt-price-card-single {
    padding: 0;
    overflow: hidden;
    border-color: var(--rs-green);
    box-shadow: 0 12px 32px rgba(19, 182, 122, 0.18);
}

.rs-mkt-price-trial-banner {
    background: var(--rs-green);
    color: var(--rs-white);
    text-align: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.rs-mkt-price-card-body {
    padding: 1.75rem;
}

.rs-mkt-price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    min-height: 1.75rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: var(--rs-green);
    color: var(--rs-white);
    font-size: 0.75rem;
    font-weight: 700;
}

.rs-mkt-price-note {
    margin: 0.85rem 0 0;
    text-align: center;
    color: var(--rs-muted);
    font-size: 0.8125rem;
    font-weight: 500;
}

.rs-mkt-offer-card {
    border-color: rgba(19, 182, 122, 0.35);
    background: linear-gradient(180deg, #fff 0%, var(--rs-green-soft) 100%);
}

.rs-mkt-price-card .rs-mkt-price {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}

.rs-mkt-price-card .rs-mkt-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--rs-muted);
}

.rs-mkt-price-card ul {
    list-style: none;
    margin: 1.25rem 0 1.5rem;
    padding: 0;
}

.rs-mkt-price-card li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.55rem;
    color: var(--rs-muted);
}

.rs-mkt-price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--rs-green);
    font-weight: 700;
}

.rs-mkt-price-card .btn {
    min-height: 48px;
}

/* —— CTA band —— */
.rs-mkt-cta {
    background: linear-gradient(135deg, var(--rs-navy) 0%, #163652 100%);
    color: var(--rs-white);
    padding: 4rem 0;
    text-align: center;
}

.rs-mkt-cta h2 {
    color: var(--rs-white);
    margin-bottom: 0.75rem;
}

.rs-mkt-cta p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 34rem;
    margin: 0 auto 1.5rem;
}

.rs-mkt-cta .btn {
    min-height: 48px;
    min-width: 12rem;
}

.rs-mkt-cta-note {
    margin: 1rem 0 0 !important;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.875rem;
    font-weight: 500;
}

/* —— FAQ —— */
.rs-mkt-faq .accordion-item {
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    background: var(--rs-white);
}

.rs-mkt-faq .accordion-button {
    font-weight: 600;
    color: var(--rs-navy);
    background: var(--rs-white);
    box-shadow: none;
    min-height: 3.25rem;
}

.rs-mkt-faq .accordion-button:not(.collapsed) {
    color: var(--rs-navy);
    background: var(--rs-green-soft);
    box-shadow: none;
}

.rs-mkt-faq .accordion-button:focus {
    box-shadow: inset 0 0 0 2px rgba(19, 182, 122, 0.35);
}

.rs-mkt-faq .accordion-body {
    color: var(--rs-muted);
    line-height: 1.55;
}

.rs-mkt-proof-note {
    margin: 1.5rem 0 0;
    color: var(--rs-muted);
    font-size: 0.8125rem;
}

.rs-mkt-legal h2 {
    font-size: 1.15rem;
    margin: 1.75rem 0 0.75rem;
}

.rs-mkt-legal p,
.rs-mkt-legal li {
    color: var(--rs-muted);
    line-height: 1.6;
}

/* —— Sticky mobile CTA —— */
.rs-mkt-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--rs-border);
    box-shadow: 0 -8px 24px rgba(13, 34, 54, 0.08);
}

.rs-mkt-sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    max-width: 40rem;
    margin: 0 auto;
}

.rs-mkt-sticky-cta-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.rs-mkt-sticky-cta-copy strong {
    font-size: 0.9rem;
    line-height: 1.2;
}

.rs-mkt-sticky-cta-copy span {
    color: var(--rs-muted);
    font-size: 0.75rem;
    font-weight: 500;
}

.rs-mkt-sticky-cta .btn {
    flex-shrink: 0;
    min-height: 44px;
    padding-inline: 1rem;
    white-space: nowrap;
}

/* —— Footer —— */
.rs-mkt-footer {
    background: #0a1a2a;
    color: rgba(255, 255, 255, 0.78);
    padding: 3.5rem 0 2rem;
}

.rs-mkt-footer h4 {
    color: var(--rs-white);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.rs-mkt-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rs-mkt-footer a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    display: inline-flex;
    min-height: 2rem;
    align-items: center;
}

.rs-mkt-footer a:hover {
    color: var(--rs-green);
}

.rs-mkt-footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
}

.rs-mkt-footer-logo {
    height: 1.75rem;
    width: auto;
    margin-bottom: 0.75rem;
    filter: brightness(0) invert(1);
}

.rs-mkt-footer-offer {
    color: #9BE8C7;
    font-size: 0.875rem;
    font-weight: 600;
}

/* —— Motion —— */
@media (prefers-reduced-motion: no-preference) {
    .rs-mkt-hero-media {
        animation: rs-mkt-ken 18s ease-out forwards;
    }

    .rs-mkt-hero-copy,
    .rs-mkt-mock {
        animation: rs-mkt-rise 0.8s ease-out both;
    }

    .rs-mkt-mock {
        animation-delay: 0.15s;
    }

    .rs-mkt-card,
    .rs-mkt-industry-card,
    .rs-mkt-quote,
    .rs-mkt-price-card,
    .rs-mkt-step {
        animation: rs-mkt-rise 0.6s ease-out both;
    }
}

@keyframes rs-mkt-rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rs-mkt-ken {
    from { transform: scale(1.08); }
    to { transform: scale(1.02); }
}


/* —— Comparison —— */
.rs-mkt-compare-wrap {
    border: 1px solid var(--rs-border);
    border-radius: var(--rs-radius);
    background: var(--rs-white);
    box-shadow: var(--rs-shadow);
}

.rs-mkt-compare {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
    min-width: 40rem;
}

.rs-mkt-compare th,
.rs-mkt-compare td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--rs-border);
    text-align: left;
    vertical-align: top;
    font-size: 0.925rem;
}

.rs-mkt-compare thead th {
    background: var(--rs-bg);
    font-weight: 700;
    color: var(--rs-navy);
}

.rs-mkt-compare tbody th {
    font-weight: 600;
    color: var(--rs-navy);
    width: 22%;
}

.rs-mkt-compare .is-highlight {
    background: var(--rs-green-soft);
    color: var(--rs-green-dark);
    font-weight: 600;
}

.rs-mkt-compare tbody tr:last-child th,
.rs-mkt-compare tbody tr:last-child td {
    border-bottom: 0;
}

.rs-mkt-mock-body-single {
    grid-template-columns: 1fr;
}

.rs-mkt-mock-chip-row {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
}

.rs-mkt-mock-chip-row span {
    flex: 1;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--rs-muted);
    background: var(--rs-white);
    border: 1px solid var(--rs-border);
    border-radius: 999px;
    padding: 0.3rem 0.2rem;
}

.rs-mkt-mock-chip-row span.is-active {
    background: var(--rs-green);
    border-color: var(--rs-green);
    color: var(--rs-white);
}

.rs-mkt-demo-modal .modal-title {
    font-weight: 700;
}


/* —— Story / heritage —— */
.rs-mkt-stats {
    margin-top: 0.5rem;
}

.rs-mkt-stat {
    height: 100%;
    padding: 1rem 0.75rem;
    border-radius: var(--rs-radius-sm);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.rs-mkt-section-alt .rs-mkt-stat {
    background: var(--rs-white);
    border: 1px solid var(--rs-border);
}

.rs-mkt-stat strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--rs-navy);
    line-height: 1.1;
}

.rs-mkt-stat span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rs-muted);
    line-height: 1.3;
}

.rs-mkt-story-card h3 {
    font-size: 1rem;
    line-height: 1.35;
}
