/* Marketing site — complements Tailwind utilities */

/* ── Marketing header (sparse nav: logo · pill links · actions) ── */

.mk-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mk-site-footer {
    background-image:
        radial-gradient(ellipse 70% 50% at 50% 100%, rgba(34, 211, 238, 0.08), transparent),
        linear-gradient(180deg, #0b1220 0%, #0f172a 100%);
}

.mk-site-footer__link {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}

.mk-site-footer__link:hover {
    color: #67e8f9;
}

.mk-header__bar {
    background: rgba(11, 18, 32, 0.82);
    backdrop-filter: blur(16px);
}

.mk-nav-open {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mk-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
}

.mk-brand__logo {
    display: block;
    width: auto;
    height: 2rem;
    max-width: min(11.75rem, 42vw);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.mk-brand:hover .mk-brand__logo {
    transform: translateY(-1px);
    filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.35));
}

.mk-brand--footer {
    text-decoration: none;
}

.mk-brand--footer .mk-brand__logo {
    height: 1.75rem;
}

.mk-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    padding: 0.25rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.mk-nav-pill--center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mk-nav-pill__link {
    padding: 0.4375rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #94a3b8;
    transition: color 0.15s, background 0.15s;
}

.mk-nav-pill__link:hover {
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.06);
}

.mk-nav-pill__link.is-active {
    color: #0b1220;
    background: #22d3ee;
    box-shadow: 0 4px 16px -4px rgba(34, 211, 238, 0.5);
}

.mk-lang {
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
    padding: 0.1875rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.mk-lang--mobile {
    width: 100%;
}

.mk-lang--mobile .mk-lang__btn {
    flex: 1;
    padding: 0.5rem 0.75rem;
}

.mk-lang__btn {
    padding: 0.3125rem 0.625rem;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #94a3b8;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.15s, background 0.15s;
}

.mk-lang__btn:hover {
    color: #e2e8f0;
}

.mk-lang__btn.is-active {
    color: #0b1220;
    background: rgba(255, 255, 255, 0.92);
}

.mk-nav-ghost {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #94a3b8;
    transition: color 0.15s;
}

.mk-nav-ghost:hover,
.mk-nav-ghost.is-active {
    color: #fff;
}

.mk-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0b1220;
    background: #22d3ee;
    box-shadow: 0 0 24px -6px rgba(34, 211, 238, 0.45);
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.mk-nav-cta:hover {
    background: #67e8f9;
    transform: translateY(-1px);
}

.mk-nav-cta.is-active {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.35), 0 0 24px -6px rgba(34, 211, 238, 0.45);
}

.mk-nav-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    border-radius: 0.625rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.mk-nav-burger:hover {
    border-color: rgba(34, 211, 238, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.mk-nav-burger__line {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 999px;
    background: #e2e8f0;
    transition: transform 0.2s, opacity 0.2s;
}

.mk-nav-open:checked ~ .mk-header__bar .mk-nav-burger__line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.mk-nav-open:checked ~ .mk-header__bar .mk-nav-burger__line:nth-child(2) {
    opacity: 0;
}

.mk-nav-open:checked ~ .mk-header__bar .mk-nav-burger__line:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

.mk-nav-mobile {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(11, 18, 32, 0.96);
    backdrop-filter: blur(16px);
}

.mk-nav-open:checked ~ .mk-nav-mobile {
    display: block;
}

.mk-nav-mobile__link {
    display: block;
    padding: 0.75rem 0.875rem;
    border-radius: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #cbd5e1;
    transition: background 0.15s, color 0.15s;
}

.mk-nav-mobile__link:hover,
.mk-nav-mobile__link.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.mk-nav-mobile__cta {
    display: block;
    margin-top: 0.5rem;
    padding: 0.75rem 0.875rem;
    border-radius: 0.625rem;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0b1220;
    background: #22d3ee;
}

.mk-input {
    display: block;
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: #0b1220;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.mk-input:focus {
    outline: none;
    border-color: #22d3ee;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

.mk-textarea {
    resize: vertical;
    min-height: 5rem;
}

.hero-grid {
    background-image:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(34, 211, 238, 0.18), transparent),
        linear-gradient(180deg, #0b1220 0%, #151d2e 100%);
}

/* ── Conversion UX (smart default, contrast, goal gradient, sticky CTA) ── */

.mk-marketing-body {
    /* Footer is the document end — no trailing body padding (sticky CTA is fixed). */
    min-height: auto;
    padding-bottom: 0;
}

.mk-honeypot-wrap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.mk-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 60;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #22d3ee, #0891b2);
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.45);
    pointer-events: none;
    transition: width 0.08s linear;
}

.mk-cta-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.875rem;
}

@media (min-width: 640px) {
    .mk-cta-group:not(.mk-cta-group--stack) {
        flex-direction: row;
        align-items: center;
    }

    .mk-cta-group--center {
        justify-content: center;
    }
}

.mk-cta-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.125rem;
    border-radius: 999px;
    background: #22d3ee;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0b1220;
    text-align: center;
    box-shadow: 0 0 40px -8px rgba(34, 211, 238, 0.55), 0 4px 20px -4px rgba(34, 211, 238, 0.35);
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.mk-cta-primary:hover {
    background: #67e8f9;
    transform: translateY(-1px);
    box-shadow: 0 0 48px -6px rgba(34, 211, 238, 0.65), 0 8px 28px -6px rgba(34, 211, 238, 0.4);
}

.mk-cta-primary__hint {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, 0.65);
}

.mk-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #e2e8f0;
    backdrop-filter: blur(8px);
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.mk-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.mk-cta-group--on-light .mk-cta-secondary {
    border-color: #e2e8f0;
    background: #fff;
    color: #475569;
    backdrop-filter: none;
}

.mk-cta-group--on-light .mk-cta-secondary:hover {
    border-color: #22d3ee;
    color: #0891b2;
}

.mk-journey {
    margin-top: 2rem;
}

.mk-journey__track {
    position: relative;
    height: 4px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.mk-journey--dark .mk-journey__track {
    background: rgba(255, 255, 255, 0.12);
}

.mk-journey__track-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22d3ee, #0891b2);
    transition: width 0.6s ease;
}

.mk-journey__steps {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 640px) {
    .mk-journey__steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.mk-journey__step {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.875rem 1rem;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    opacity: 0.55;
    transform: translateY(4px);
    transition: opacity 0.35s, transform 0.35s, border-color 0.2s, box-shadow 0.2s;
}

.mk-journey__step.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.mk-journey__step.is-active {
    border-color: rgba(34, 211, 238, 0.45);
    box-shadow: 0 8px 24px -8px rgba(34, 211, 238, 0.25);
    opacity: 1;
}

.mk-journey__step.is-complete {
    opacity: 0.85;
}

.mk-journey--dark .mk-journey__step {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: #e2e8f0;
}

.mk-journey--dark .mk-journey__step.is-active {
    border-color: rgba(34, 211, 238, 0.5);
    background: rgba(34, 211, 238, 0.08);
}

.mk-journey__marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: #f1f5f9;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #64748b;
}

.mk-journey__step.is-active .mk-journey__marker {
    background: #22d3ee;
    color: #0b1220;
}

.mk-journey__step.is-complete .mk-journey__marker {
    background: rgba(34, 211, 238, 0.2);
    color: #0891b2;
}

.mk-journey--dark .mk-journey__marker {
    background: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.mk-journey__label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0b1220;
}

.mk-journey--dark .mk-journey__label {
    color: #fff;
}

.mk-journey__meta {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.4;
}

.mk-journey--dark .mk-journey__meta {
    color: #94a3b8;
}

.mk-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 45;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(11, 18, 32, 0.94);
    border-top: 1px solid rgba(34, 211, 238, 0.25);
    backdrop-filter: blur(14px);
    transform: translateY(110%);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 -12px 40px -12px rgba(0, 0, 0, 0.45);
}

.mk-sticky-cta.is-visible {
    transform: translateY(0);
}

.mk-sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 42rem;
    margin: 0 auto;
}

.mk-sticky-cta__copy {
    margin: 0;
    font-size: 0.8125rem;
    color: #94a3b8;
    line-height: 1.35;
}

.mk-sticky-cta__copy strong {
    color: #67e8f9;
    font-weight: 700;
}

.mk-sticky-cta__sep {
    margin: 0 0.25rem;
    opacity: 0.5;
}

.mk-sticky-cta__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 999px;
    background: #22d3ee;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0b1220;
    box-shadow: 0 0 24px -6px rgba(34, 211, 238, 0.5);
    transition: background 0.15s, transform 0.15s;
}

.mk-sticky-cta__btn:hover {
    background: #67e8f9;
    transform: translateY(-1px);
}

.mk-workspace-preview {
    position: relative;
}

.mk-workspace-preview__badge {
    position: absolute;
    top: -0.625rem;
    right: 1rem;
    z-index: 2;
    padding: 0.3125rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.4);
    background: rgba(11, 18, 32, 0.9);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #67e8f9;
}

.mk-workspace-preview__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mk-workspace-preview__company {
    font-size: 0.75rem;
    font-weight: 600;
    color: #e2e8f0;
}

.mk-workspace-preview__status {
    font-size: 0.625rem;
    font-weight: 600;
    color: #4ade80;
}

.mk-trust-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2rem;
}

.mk-trust-strip__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
}

.mk-trust-strip__item svg {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    color: #0891b2;
}

.mk-trial-banner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(34, 211, 238, 0.35);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), #fff);
    box-shadow: 0 8px 32px -12px rgba(34, 211, 238, 0.2);
}

@media (min-width: 640px) {
    .mk-trial-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.mk-trial-banner__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0b1220;
}

.mk-trial-banner__text {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.5;
}

.mk-pricing-hero-cta {
    margin-top: 2rem;
}

.pricing-tier:not(.pricing-tier--featured) {
    opacity: 0.92;
}

.pricing-tier--featured {
    transform: scale(1.02);
    z-index: 1;
}

@media (min-width: 1024px) {
    .pricing-tier--featured {
        transform: scale(1.04);
    }
}

.pricing-tier[id] {
    scroll-margin-top: 6rem;
}

/* ── Pricing page UX (per-head/day, discount anchoring, comparison) ── */

.pricing-hero__anchor {
    max-width: 36rem;
}

.pricing-main {
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 35%, #fff 100%);
}

.pricing-launch-banner {
    margin-bottom: 2rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(34, 211, 238, 0.35);
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), #fff);
    text-align: center;
    box-shadow: 0 8px 28px -12px rgba(34, 211, 238, 0.2);
}

.pricing-launch-banner__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0b1220;
}

.pricing-launch-banner__text {
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #64748b;
}

.pricing-tier__badge--discount {
    background: #10b981;
    color: #fff;
}

.pricing-tier-card--best-value {
    position: relative;
}

.pricing-tier-card__value-badge {
    display: inline-flex;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #059669;
}

.pricing-tier-card__value-badge--light {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.pricing-tier-card__metric-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-tier-card__headline-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem;
}

.pricing-tier-card__was {
    font-size: 1rem;
    text-decoration: line-through;
}

.pricing-tier-card__headline {
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.pricing-tier-card__metric-hint {
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    line-height: 1.4;
}

.pricing-tier-card__period {
    margin-left: 0.125rem;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.75;
}

.pricing-tier-card__savings {
    line-height: 1.35;
}

.pricing-tier-card__urgency {
    line-height: 1.35;
}

.pricing-value-strip {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .pricing-value-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-value-strip__item {
    padding: 1rem 1.125rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    text-align: center;
    box-shadow: 0 4px 16px -6px rgba(15, 23, 42, 0.06);
}

.pricing-value-strip__item--best {
    border-color: rgba(34, 211, 238, 0.45);
    background: linear-gradient(160deg, #ecfeff, #fff);
    box-shadow: 0 8px 28px -8px rgba(34, 211, 238, 0.25);
}

.pricing-value-strip__plan {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.pricing-value-strip__metric {
    margin-top: 0.25rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0891b2;
}

.pricing-value-strip__item--best .pricing-value-strip__metric {
    color: #0e7490;
}

.pricing-value-strip__label {
    font-size: 0.6875rem;
    color: #94a3b8;
}

.pricing-value-strip__discount {
    margin-top: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #059669;
}

.pricing-compare__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0891b2;
}

.pricing-compare__wrap {
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 8px 32px -12px rgba(15, 23, 42, 0.1);
}

.pricing-compare__table {
    width: 100%;
    min-width: 40rem;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.pricing-compare__table th,
.pricing-compare__table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.pricing-compare__feature-col {
    width: 34%;
    text-align: left;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
}

.pricing-compare__plan-col {
    text-align: center;
    font-weight: 700;
    color: #0b1220;
    background: #f8fafc;
}

.pricing-compare__plan-col--featured {
    background: linear-gradient(180deg, #ecfeff, #f0fdff);
    color: #0e7490;
}

.pricing-compare__plan-name {
    display: block;
}

.pricing-compare__plan-badge {
    display: inline-block;
    margin-top: 0.25rem;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    background: #22d3ee;
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #0b1220;
}

.pricing-compare__feature-label {
    text-align: left;
    font-weight: 600;
    color: #334155;
    background: #fff;
}

.pricing-compare__cell {
    text-align: center;
    color: #0b1220;
    font-weight: 500;
}

.pricing-compare__cell--featured {
    background: rgba(236, 254, 255, 0.55);
}

.pricing-compare__row--highlight .pricing-compare__feature-label {
    font-weight: 700;
    color: #0b1220;
}

.pricing-compare__highlight {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #0891b2;
}

.pricing-compare__cell--featured .pricing-compare__highlight {
    color: #0e7490;
}

.pricing-compare__muted {
    font-size: 0.8125rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.pricing-compare__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.pricing-compare__check svg {
    width: 0.875rem;
    height: 0.875rem;
}

.pricing-compare__dash {
    color: #cbd5e1;
    font-weight: 600;
}

.pricing-compare__row:last-child th,
.pricing-compare__row:last-child td {
    border-bottom: none;
}

/* ── FX wizard interactive demo (features / ledger) ── */

.feat-showcase__cta,
.feat-section__cta {
    display: flex;
    justify-content: center;
}

.feat-section__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.35);
    background: rgba(34, 211, 238, 0.08);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0891b2;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s, color 0.15s, box-shadow 0.15s;
}

.feat-section__cta-link:hover {
    border-color: rgba(34, 211, 238, 0.55);
    background: rgba(34, 211, 238, 0.14);
    color: #0e7490;
    box-shadow: 0 8px 24px -10px rgba(34, 211, 238, 0.35);
}

.feat-section__cta-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.fx-demo-trigger {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    padding: 0.875rem 1.75rem;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0b1220;
    cursor: pointer;
    box-shadow: 0 8px 28px -6px rgba(34, 211, 238, 0.55);
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.fx-demo-trigger:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 36px -6px rgba(34, 211, 238, 0.65);
    background: linear-gradient(135deg, #67e8f9, #22d3ee);
}

.fx-demo-trigger__icon {
    display: none;
}

@media (min-width: 640px) {
    .fx-demo-trigger {
        flex-direction: row;
        gap: 0.5rem;
    }

    .fx-demo-trigger__icon {
        display: inline-flex;
        width: 1.125rem;
        height: 1.125rem;
    }

    .fx-demo-trigger__icon svg {
        width: 100%;
        height: 100%;
    }
}

.fx-demo-trigger__hint {
    font-size: 0.6875rem;
    font-weight: 600;
    opacity: 0.75;
}

.rp-demo-trigger {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    color: #0b1220;
    box-shadow: 0 8px 28px -6px rgba(251, 191, 36, 0.55);
}

.rp-demo-trigger:hover {
    background: linear-gradient(135deg, #fcd34d, #fbbf24);
    box-shadow: 0 12px 36px -6px rgba(251, 191, 36, 0.65);
}

.rp-demo-modal__panel {
    border-color: rgba(251, 191, 36, 0.35);
    max-width: min(78rem, 96vw);
    max-height: min(94vh, 60rem);
}

.rp-demo-modal__body {
    padding: 0.75rem 1rem 1rem;
}

.rp-demo-modal__header {
    background: linear-gradient(180deg, #fffbeb, #fff);
}

.rp-demo-modal__eyebrow {
    color: #b45309;
}

.rp-demo-btn--primary {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    box-shadow: 0 4px 16px -4px rgba(251, 191, 36, 0.5);
}

.rp-demo-btn--primary:hover {
    background: linear-gradient(135deg, #fcd34d, #fbbf24);
}

/* Channel report preview — mirrors /reports/ entity tab (scoped) */
.rp-demo-surface {
    --rp-text: #0f172a;
    --rp-muted: #64748b;
    --rp-border: #e2e8f0;
    --rp-primary: #2563eb;
    --rp-danger: #dc2626;
    --rp-danger-soft: #fef2f2;
    --rp-radius: 0.5rem;
    color: var(--rp-text);
    font-size: 0.875rem;
}

.rp-demo-surface .card {
    background: #fff;
    border: 1px solid var(--rp-border);
    border-radius: var(--rp-radius);
}

.rp-demo-surface .hint {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--rp-muted);
}

.rp-demo-surface .field label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--rp-muted);
    margin-bottom: 0.2rem;
}

.rp-demo-surface .form-input {
    width: 100%;
    box-sizing: border-box;
}

.rp-demo-surface .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--rp-radius);
    font-weight: 600;
    cursor: pointer;
}

.rp-demo-surface .btn-sm {
    min-height: 2rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
}

.rp-demo-surface .btn-primary {
    background: var(--rp-primary);
    color: #fff;
}

.rp-demo-surface .btn-primary:disabled {
    opacity: 0.65;
    cursor: default;
}

.rp-demo-surface .reports-filter {
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
}

.rp-demo-surface .rp-demo-filter-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    text-align: left;
}

.rp-demo-surface .reports-filter-channel {
    width: 100%;
    max-width: 16rem;
    margin-top: 0.35rem;
}

.rp-demo-surface .reports-channel-select {
    appearance: none;
    -webkit-appearance: none;
    min-height: 2.35rem;
    padding: 0.4rem 2rem 0.4rem 0.65rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rp-text);
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.41 0 6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px 8px;
    border: 1px solid #cbd5e1;
    border-radius: var(--rp-radius);
    cursor: pointer;
}

.rp-demo-surface .reports-filter-dates-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--rp-muted);
}

.rp-demo-surface .reports-date-presets {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
    width: 100%;
}

.rp-demo-surface .reports-date-preset {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #cbd5e1;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    color: var(--rp-text);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    cursor: pointer;
    line-height: 1.2;
}

.rp-demo-surface .reports-date-preset.is-active {
    border-color: var(--rp-primary);
    background: var(--rp-primary);
    color: #fff;
}

.rp-demo-surface .rp-demo-date-range-text {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--rp-text);
}

.rp-demo-surface .reports-layout {
    display: grid;
    grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
    gap: 0.75rem;
    align-items: start;
}

.rp-demo-surface .reports-layout__main,
.rp-demo-surface .reports-layout__sidebar {
    min-width: 0;
}

.rp-demo-surface .reports-layout__sidebar {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rp-demo-surface .reports-panel {
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
}

.rp-demo-surface .reports-panel--shareable {
    background: #fafafa;
}

.rp-demo-surface .reports-panel--breakdown,
.rp-demo-surface .reports-panel--breakdown .reports-deal-breakdown__head,
.rp-demo-surface .reports-panel--breakdown .reports-deal-breakdown__legs,
.rp-demo-surface .reports-panel--breakdown .reports-deal-breakdown__calc,
.rp-demo-surface .reports-panel--breakdown .reports-breakdown-grand-totals {
    text-align: left;
}

.rp-demo-surface .reports-panel--breakdown .reports-formula-list,
.rp-demo-surface .reports-panel--breakdown .reports-formula-total {
    text-align: left;
}

.rp-demo-surface .reports-panel-head {
    margin-bottom: 0.65rem;
    text-align: left;
}

.rp-demo-surface .reports-panel-title {
    margin: 0 0 0.2rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.rp-demo-surface .reports-breakdown-grand-totals {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--rp-border);
}

.rp-demo-surface .reports-deal-breakdown__section-label {
    margin: 0 0 0.3rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--rp-muted);
}

.rp-demo-surface .reports-formula-list {
    margin: 0 0 0.55rem;
    padding: 0.5rem 0.6rem;
    list-style: none;
    background: #fff;
    border: 1px solid var(--rp-border);
    border-radius: var(--rp-radius);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.72rem;
    line-height: 1.5;
}

.rp-demo-surface .reports-formula-list--numbered {
    list-style: decimal;
    padding-left: 1.25rem;
}

.rp-demo-surface .reports-formula-list li + li {
    margin-top: 0.3rem;
}

.rp-demo-surface .reports-formula-total {
    margin: 0.4rem 0 0;
    padding: 0.5rem 0.6rem;
    background: #fff;
    border: 1px solid var(--rp-border);
    border-radius: var(--rp-radius);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
}

.rp-demo-surface .reports-deal-breakdown {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--rp-border);
}

.rp-demo-surface .reports-deal-breakdown:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.rp-demo-surface .reports-deal-breakdown--warn {
    margin: 0 -0.45rem;
    padding: 0.75rem 0.45rem 0.75rem 0.65rem;
    border-left: 3px solid var(--rp-danger);
    background: var(--rp-danger-soft);
    border-bottom-color: #fecaca;
}

.rp-demo-surface .reports-deal-breakdown__title {
    margin: 0 0 0.15rem;
    font-size: 0.88rem;
    font-weight: 700;
}

.rp-demo-surface .reports-deal-breakdown__meta {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    color: var(--rp-muted);
}

.rp-demo-surface .reports-deal-breakdown__flag {
    display: inline-block;
    margin-left: 0.3rem;
    font-weight: 600;
    color: var(--rp-danger);
}

.rp-demo-surface .reports-leg-list {
    margin: 0 0 0.65rem;
    padding: 0;
    list-style: none;
}

.rp-demo-surface .reports-panel--breakdown .reports-leg-list--with-payer li {
    display: grid;
    grid-template-columns: 5.5rem 5.5rem 4.5rem auto;
    justify-items: start;
    gap: 0.5rem;
    padding: 0.25rem 0;
    font-size: 0.74rem;
    font-variant-numeric: tabular-nums;
    border-bottom: 1px dashed #e5e7eb;
    text-align: left;
}

.rp-demo-surface .reports-leg-list li:last-child {
    border-bottom: none;
}

.rp-demo-surface .reports-leg-label {
    font-weight: 600;
}

.rp-demo-surface .reports-leg-uid,
.rp-demo-surface .reports-leg-payer {
    color: var(--rp-muted);
    font-size: 0.7rem;
}

.rp-demo-surface .data-table {
    width: 100%;
    border-collapse: collapse;
}

.rp-demo-surface .reports-table {
    font-size: 0.72rem;
}

.rp-demo-surface .reports-table th,
.rp-demo-surface .reports-table td {
    padding: 0.35rem 0.4rem;
    border-bottom: 1px solid #f1f5f9;
    text-align: left;
}

.rp-demo-surface .reports-table th {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--rp-muted);
}

.rp-demo-surface .reports-table th.num,
.rp-demo-surface .reports-table td.num {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.rp-demo-surface .reports-table td.num.num-dim {
    color: var(--rp-muted);
}

.rp-demo-surface .reports-summary-footnote {
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .rp-demo-surface .reports-layout {
        grid-template-columns: 1fr;
    }

    .rp-demo-surface .reports-filter-channel {
        max-width: none;
    }
}

.fx-demo-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.fx-demo-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, 0.72);
    backdrop-filter: blur(6px);
}

.fx-demo-modal__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 52rem;
    max-height: min(90vh, 46rem);
    border-radius: 1.25rem;
    border: 1px solid rgba(34, 211, 238, 0.25);
    background: #fff;
    box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.fx-demo-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(180deg, #f8fafc, #fff);
}

.fx-demo-modal__header > div {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.fx-demo-modal__eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0891b2;
}

.fx-demo-modal__title {
    margin-top: 0.25rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0b1220;
}

.fx-demo-modal__lead {
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: #64748b;
}

.fx-demo-modal__close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.fx-demo-modal__close:hover {
    border-color: #cbd5e1;
    color: #0b1220;
    background: #f8fafc;
}

.fx-demo-modal__close svg {
    width: 1rem;
    height: 1rem;
}

.fx-demo-steps {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.875rem 1.5rem;
    list-style: none;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
}

.fx-demo-steps__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
}

.fx-demo-steps__item:not(:last-child)::after {
    content: "";
    flex: 1;
    height: 1px;
    margin-left: 0.5rem;
    background: #e2e8f0;
}

.fx-demo-steps__item.is-active {
    color: #0e7490;
}

.fx-demo-steps__item.is-done {
    color: #059669;
}

.fx-demo-steps__marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 999px;
    border: 1.5px solid currentColor;
    font-size: 0.6875rem;
    font-weight: 700;
}

.fx-demo-steps__item.is-active .fx-demo-steps__marker {
    background: #22d3ee;
    border-color: #22d3ee;
    color: #0b1220;
}

.fx-demo-steps__item.is-done .fx-demo-steps__marker {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.fx-demo-modal__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.5rem;
}

.fx-demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
}

.fx-demo-form-split {
    display: grid;
    gap: 1rem;
    padding: 1rem 1.125rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #f8fafc 0%, #fff 60%);
}

@media (min-width: 640px) {
    .fx-demo-form-split {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
        align-items: start;
    }
}

.fx-demo-form-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

@media (min-width: 640px) {
    .fx-demo-form-col--rates {
        padding-left: 1.25rem;
        border-left: 1px solid #e2e8f0;
    }
}

.fx-demo-form-col__title {
    margin: 0;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.fx-demo-form-col .fx-demo-hint {
    margin-top: 0;
}

.fx-demo-label__ccy {
    font-weight: 600;
    color: #94a3b8;
}

.fx-demo-preview-strip__ccy {
    font-weight: 600;
    color: #94a3b8;
}

.fx-demo-field-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .fx-demo-field-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.fx-demo-label {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    margin-bottom: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
}

.fx-demo-input {
    display: block;
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 0.6875rem 0.875rem;
    font-size: 0.9375rem;
    font-variant-numeric: tabular-nums;
    color: #0b1220;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.fx-demo-form-split .fx-demo-input {
    background: #fff;
}

.fx-demo-input:focus {
    outline: none;
    border-color: #22d3ee;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.2);
}

.fx-demo-hint {
    margin-top: 0.375rem;
    font-size: 0.6875rem;
    line-height: 1.45;
    color: #94a3b8;
}

.fx-demo-preview-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #ecfeff, #f8fafc);
}

.fx-demo-preview-strip--quad {
    grid-template-columns: 1fr 1fr;
}

@media (min-width: 520px) {
    .fx-demo-preview-strip--quad {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.fx-demo-preview-strip__label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
}

.fx-demo-preview-strip__value {
    margin-top: 0.125rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: #0b1220;
    line-height: 1.3;
}

@media (min-width: 520px) {
    .fx-demo-preview-strip__value {
        font-size: 1rem;
    }
}

.fx-demo-preview-strip__value--pos {
    color: #059669;
}

.fx-demo-preview-strip__value--neg {
    color: #dc2626;
}

.fx-demo-leg__spreads {
    margin-top: 0.625rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.6875rem;
    line-height: 1.5;
    color: #64748b;
}

.fx-demo-leg__spreads .fx-demo-preview-strip__value--pos,
.fx-demo-leg__spreads .fx-demo-preview-strip__value--neg {
    font-weight: 700;
}

.fx-demo-legs {
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .fx-demo-legs {
        grid-template-columns: 1fr 1fr;
    }
}

.fx-demo-leg {
    padding: 0.875rem 1rem;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
}

.fx-demo-leg--channel {
    background: linear-gradient(135deg, #ecfeff, #fff);
    border-color: #a5f3fc;
}

.fx-demo-leg--cp {
    background: linear-gradient(135deg, #fffbeb, #fff);
    border-color: #fde68a;
}

.fx-demo-leg__badge {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(34, 211, 238, 0.15);
    color: #0e7490;
}

.fx-demo-leg--cp .fx-demo-leg__badge {
    background: #fef3c7;
    color: #92400e;
}

.fx-demo-leg__row {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.3125rem 0;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fx-demo-leg__row--buy strong {
    color: #059669;
}

.fx-demo-leg__rate {
    margin-top: 0.375rem;
    font-size: 0.6875rem;
    color: #64748b;
}

.fx-demo-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem 1.125rem;
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.fx-demo-summary__label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
}

.fx-demo-summary__value {
    margin-top: 0.125rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: #059669;
}

.fx-demo-summary__meta {
    font-size: 0.75rem;
    color: #64748b;
    line-height: 1.5;
}

.fx-demo-footnote {
    margin-top: 0.875rem;
    font-size: 0.6875rem;
    line-height: 1.5;
    color: #94a3b8;
    text-align: center;
}

.fx-demo-modal__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid #f1f5f9;
    background: #fff;
}

.fx-demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.125rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.fx-demo-btn--ghost {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
}

.fx-demo-btn--ghost:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #0b1220;
}

.fx-demo-btn--primary {
    border: none;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    color: #0b1220;
    box-shadow: 0 4px 16px -4px rgba(34, 211, 238, 0.5);
}

.fx-demo-btn--primary:hover {
    background: linear-gradient(135deg, #67e8f9, #22d3ee);
}

.fx-demo-modal--enter {
    transition: opacity 0.2s ease;
}

.fx-demo-modal--enter-start {
    opacity: 0;
}

.fx-demo-modal--enter-end {
    opacity: 1;
}

.fx-demo-modal--leave {
    transition: opacity 0.15s ease;
}

.fx-demo-modal--leave-start {
    opacity: 1;
}

.fx-demo-modal--leave-end {
    opacity: 0;
}

/* Features page hero — Affinity/Harvest-style block picker */

.features-hero__chrome {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #0b1220;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.features-hero__panel {
    position: absolute;
    inset: 1rem;
}

@media (min-width: 640px) {
    .features-hero__panel {
        inset: 1.25rem;
    }
}

.features-hero__picker-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
    width: 100%;
    padding: 1rem 1.125rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.04);
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    overflow: hidden;
    color: #e2e8f0;
}

.features-hero__picker-card:hover {
    border-color: rgba(34, 211, 238, 0.35);
    background: rgba(255, 255, 255, 0.07);
}

.features-hero__picker-card.is-active {
    border-color: #22d3ee;
    background: linear-gradient(145deg, rgba(34, 211, 238, 0.12), rgba(255, 255, 255, 0.06));
    box-shadow: 0 8px 32px -8px rgba(34, 211, 238, 0.3);
}

.features-hero__picker-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.08);
    color: #67e8f9;
}

.features-hero__picker-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.features-hero__picker-card.is-active .features-hero__picker-icon {
    background: rgba(34, 211, 238, 0.2);
    color: #a5f3fc;
}

.features-hero__picker-title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.features-hero__picker-desc {
    font-size: 0.75rem;
    line-height: 1.45;
    color: #94a3b8;
}

.features-hero__picker-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
}

.features-hero__picker-progress-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #22d3ee, #0891b2);
    transition: width 0.05s linear;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px -8px rgba(34, 211, 238, 0.2);
}

.bento-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.pricing-card--featured {
    background: linear-gradient(160deg, #0b1220 0%, #1e293b 100%);
}

/* Pricing tiers (4-column) */

.pricing-tier {
    position: relative;
}

.pricing-tier--featured {
    background: linear-gradient(160deg, #0b1220 0%, #1e293b 100%);
    border-color: rgba(34, 211, 238, 0.35);
    color: #e2e8f0;
}

.pricing-tier__price {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #0b1220;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.pricing-tier .pricing-tier__price {
    font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
}

.pricing-tier__price--featured {
    color: #fff;
}

.pricing-tier__badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #22d3ee;
    padding: 0.25rem 0.875rem;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #0b1220;
    white-space: nowrap;
}

.pricing-tier__cta {
    display: block;
    width: 100%;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #0b1220;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.pricing-tier__cta:hover {
    border-color: #22d3ee;
    color: #0891b2;
}

.pricing-tier__cta--featured {
    border: none;
    background: #22d3ee;
    color: #0b1220;
    box-shadow: 0 0 24px -6px rgba(34, 211, 238, 0.45);
}

.pricing-tier__cta--featured:hover {
    background: #67e8f9;
    color: #0b1220;
}

/* ── Checkout (plan subscribe) ── */

.checkout-breadcrumb {
    margin-bottom: 1.5rem;
}

.checkout-breadcrumb--center {
    display: flex;
    justify-content: center;
}

.checkout-breadcrumb__back {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #94a3b8;
    transition: color 0.15s;
}

.checkout-breadcrumb__back:hover {
    color: #e2e8f0;
}

.checkout-breadcrumb__icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    padding: 0;
    list-style: none;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.checkout-step:not(:last-child)::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: 1px;
    margin: 0 0.75rem;
    background: rgba(255, 255, 255, 0.15);
}

.checkout-step.is-complete {
    color: #67e8f9;
}

.checkout-step.is-active {
    color: #fff;
}

.checkout-step__marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.625rem;
    height: 1.625rem;
    border-radius: 999px;
    border: 1.5px solid currentColor;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1;
}

.checkout-step.is-complete .checkout-step__marker {
    background: rgba(34, 211, 238, 0.15);
    border-color: #22d3ee;
}

.checkout-step.is-active .checkout-step__marker {
    background: #22d3ee;
    border-color: #22d3ee;
    color: #0b1220;
}

.checkout-hero__head {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
}

.checkout-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-bottom: 0.75rem;
    padding: 0.3125rem 0.875rem;
    border-radius: 999px;
    border: 1px solid rgba(34, 211, 238, 0.35);
    background: rgba(34, 211, 238, 0.1);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #67e8f9;
}

.checkout-hero__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.checkout-hero__lead {
    margin-top: 0.875rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #94a3b8;
}

.checkout-sandbox-banner {
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    padding: 0.4375rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.4);
    background: rgba(251, 191, 36, 0.1);
    font-size: 0.75rem;
    font-weight: 600;
    color: #fde68a;
}

.checkout-main {
    padding: 2rem 0 6rem;
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 40%, #fff 100%);
}

.checkout-main--success {
    padding-top: 0;
}

.checkout-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .checkout-layout {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        gap: 2.5rem;
    }

    .checkout-summary-col {
        position: sticky;
        top: 5.5rem;
    }
}

.checkout-form {
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
}

@media (min-width: 640px) {
    .checkout-form {
        padding: 2rem;
    }
}

.checkout-alert {
    margin-bottom: 1.25rem;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkout-alert--error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.checkout-form-errors {
    margin-bottom: 1.25rem;
}

.checkout-form-errors__title {
    margin: 0 0 0.4rem;
    font-size: 0.84rem;
    font-weight: 700;
}

.checkout-form-errors__list {
    margin: 0;
    padding-left: 1.15rem;
    font-size: 0.8rem;
    line-height: 1.45;
}

.checkout-form-errors__list li + li {
    margin-top: 0.2rem;
}

.checkout-alert--warn {
    border: 1px solid #fde68a;
    background: #fffbeb;
    color: #92400e;
}

.checkout-alert--warn a {
    font-weight: 600;
    color: #b45309;
    text-decoration: underline;
}

.checkout-alert--success {
    border: 1px solid #a7f3d0;
    background: #ecfdf5;
    color: #065f46;
}

.checkout-field__hint {
    margin-top: 0.375rem;
    font-size: 0.75rem;
    line-height: 1.45;
    color: #64748b;
}

.checkout-password-rules {
    display: none;
    margin-top: 0.5rem;
    padding: 0.65rem 0.8rem;
    border-radius: 0.625rem;
    border: 1px solid #e2e8f0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    font-size: 0.75rem;
    line-height: 1.45;
    color: #475569;
}

.checkout-field--password:focus-within .checkout-password-rules {
    display: block;
}

.checkout-password-rules__title {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #334155;
}

.checkout-password-rules__list {
    margin: 0;
    padding-left: 1.1rem;
}

.checkout-password-rules__list li + li {
    margin-top: 0.2rem;
}

.checkout-field__errors .checkout-field__error + .checkout-field__error {
    margin-top: 0.25rem;
}

.contact-form__messages,
.contact-form__banner {
    margin-bottom: 1rem;
}

.contact-form__banner p + p {
    margin-top: 0.5rem;
}

.checkout-section {
    margin: 0;
    padding: 0;
    border: none;
}

.checkout-section + .checkout-section {
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid #f1f5f9;
}

.checkout-section__head {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    padding: 0;
    border: none;
    width: 100%;
}

.checkout-section__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(8, 145, 178, 0.08));
    color: #0891b2;
}

.checkout-section__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.checkout-section__title {
    display: block;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0b1220;
    line-height: 1.3;
}

.checkout-section__desc {
    display: block;
    margin-top: 0.125rem;
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.4;
}

.checkout-fields {
    display: grid;
    gap: 1rem;
}

.checkout-fields--pair {
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .checkout-fields--pair {
        grid-template-columns: 1fr 1fr;
    }
}

.checkout-field + .checkout-field {
    margin-top: 0;
}

.checkout-label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #334155;
}

.checkout-field__input.mk-input--error,
.checkout-field__input:invalid:not(:placeholder-shown) {
    border-color: #f87171;
}

.checkout-field__error {
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: #dc2626;
}

.checkout-form__footer {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid #f1f5f9;
}

.checkout-legal {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    line-height: 1.55;
    color: #64748b;
}

.checkout-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.9375rem 1.5rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #22d3ee, #0891b2);
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0b1220;
    cursor: pointer;
    box-shadow: 0 4px 20px -4px rgba(34, 211, 238, 0.5);
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.checkout-submit:hover {
    background: linear-gradient(135deg, #67e8f9, #22d3ee);
    box-shadow: 0 6px 28px -4px rgba(34, 211, 238, 0.55);
    transform: translateY(-1px);
}

.checkout-submit--block {
    text-decoration: none;
}

.checkout-submit--ghost {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #334155;
    box-shadow: none;
}

.checkout-submit--ghost:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0b1220;
    transform: none;
}

.checkout-submit__hint {
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    background: rgba(11, 18, 32, 0.12);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.checkout-submit__arrow {
    width: 1.125rem;
    height: 1.125rem;
    flex-shrink: 0;
}

.checkout-signin {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.8125rem;
    color: #64748b;
}

.checkout-signin a {
    font-weight: 600;
    color: #0891b2;
    transition: color 0.15s;
}

.checkout-signin a:hover {
    color: #22d3ee;
}

.checkout-summary {
    position: relative;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
}

.checkout-summary--featured {
    background: linear-gradient(160deg, #0b1220 0%, #1e293b 100%);
    border-color: rgba(34, 211, 238, 0.35);
    color: #e2e8f0;
}

.checkout-summary__badge {
    position: absolute;
    top: -0.625rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: #22d3ee;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0b1220;
    white-space: nowrap;
}

.checkout-summary__name {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: inherit;
}

.checkout-summary--featured .checkout-summary__name {
    color: #fff;
}

.checkout-summary__tagline {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.checkout-summary--featured .checkout-summary__tagline {
    color: #94a3b8;
}

.checkout-summary__pricing {
    margin-top: 1.25rem;
}

.checkout-summary__price-was {
    font-size: 0.8125rem;
    text-decoration: line-through;
    color: #94a3b8;
}

.checkout-summary__price {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0b1220;
}

.checkout-summary--featured .checkout-summary__price {
    color: #fff;
}

.checkout-summary__billing {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.checkout-summary--featured .checkout-summary__billing {
    color: #94a3b8;
}

.checkout-summary__divider {
    height: 1px;
    margin: 1.25rem 0;
    background: #f1f5f9;
}

.checkout-summary--featured .checkout-summary__divider {
    background: rgba(255, 255, 255, 0.1);
}

.checkout-summary__lines {
    margin: 0;
}

.checkout-summary__line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4375rem 0;
    font-size: 0.8125rem;
}

.checkout-summary__line dt {
    margin: 0;
    font-weight: 500;
    color: #64748b;
}

.checkout-summary--featured .checkout-summary__line dt {
    color: #94a3b8;
}

.checkout-summary__line dd {
    margin: 0;
    font-weight: 600;
    color: #0b1220;
    text-align: right;
}

.checkout-summary--featured .checkout-summary__line dd {
    color: #e2e8f0;
}

.checkout-summary__line--total {
    margin-top: 0.375rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #e2e8f0;
}

.checkout-summary--featured .checkout-summary__line--total {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.checkout-summary__line--total dt,
.checkout-summary__line--total dd {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0b1220;
}

.checkout-summary--featured .checkout-summary__line--total dt,
.checkout-summary--featured .checkout-summary__line--total dd {
    color: #fff;
}

.checkout-summary__features {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.checkout-summary__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.3125rem 0;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #475569;
}

.checkout-summary--featured .checkout-summary__features li {
    color: #cbd5e1;
}

.checkout-summary__features svg {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-top: 0.125rem;
    color: #0891b2;
}

.checkout-summary--featured .checkout-summary__features svg {
    color: #22d3ee;
}

.checkout-summary__trust {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
}

.checkout-summary--featured .checkout-summary__trust {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.checkout-trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #64748b;
}

.checkout-summary--featured .checkout-trust-item {
    color: #94a3b8;
}

.checkout-trust-item svg {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    color: #0891b2;
}

.checkout-summary--featured .checkout-trust-item svg {
    color: #22d3ee;
}

.checkout-kyc-note {
    margin-top: 1rem;
    padding: 1rem 1.125rem;
    border-radius: 0.875rem;
    border: 1px solid #fde68a;
    background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

.checkout-kyc-note__title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #92400e;
}

.checkout-kyc-note__text {
    margin-top: 0.375rem;
    font-size: 0.75rem;
    line-height: 1.55;
    color: #78350f;
}

.checkout-success-card {
    margin-top: -3rem;
    padding: 2rem 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 32px -8px rgba(15, 23, 42, 0.12);
}

@media (min-width: 640px) {
    .checkout-success-card {
        padding: 2.5rem 2.25rem;
    }
}

.checkout-success-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin: 0 auto;
    border-radius: 999px;
    font-size: 1.5rem;
    font-weight: 700;
}

.checkout-success-card__icon--ready {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.checkout-success-card__icon--ready svg {
    width: 2rem;
    height: 2rem;
}

.checkout-success-card__icon--pending {
    background: rgba(251, 191, 36, 0.15);
    color: #d97706;
}

.checkout-success-card__icon--error {
    background: rgba(239, 68, 68, 0.12);
    color: #dc2626;
}

.checkout-success-card__spinner {
    display: block;
    width: 1.75rem;
    height: 1.75rem;
    border: 2.5px solid rgba(217, 119, 6, 0.25);
    border-top-color: #d97706;
    border-radius: 999px;
    animation: checkout-spin 0.8s linear infinite;
}

@keyframes checkout-spin {
    to {
        transform: rotate(360deg);
    }
}

.checkout-success-card__title {
    margin-top: 1.25rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0b1220;
}

.checkout-success-card__lead {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
}

.checkout-success-card__lead strong {
    color: #0b1220;
    font-weight: 600;
}

.checkout-success-card__plan {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    margin: 1.25rem 0;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.checkout-success-card__plan-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}

.checkout-success-card__plan-value {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0b1220;
}

.checkout-success-card__plan-meta {
    font-size: 0.8125rem;
    color: #64748b;
}

.checkout-success-card .checkout-submit {
    margin-top: 1.5rem;
}

.checkout-success-card__eyebrow,
.checkout-verify-card__eyebrow {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d97706;
}

.checkout-success-card__eyebrow {
    color: #059669;
}

.checkout-verify-card {
    text-align: left;
}

.checkout-verify-card__icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.checkout-verify-card__perks {
    margin-top: 1.25rem;
    padding: 1rem 1.125rem;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
}

.checkout-verify-card__perks-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0b1220;
}

.checkout-verify-card__perks-list {
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
}

.checkout-verify-card__perks-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #475569;
}

.checkout-verify-card__perks-list li + li {
    margin-top: 0.5rem;
}

.checkout-verify-card__perks-list svg {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.125rem;
    margin-top: 0.125rem;
    color: #059669;
}

.checkout-success-card__perks {
    margin-top: 1rem;
    text-align: left;
}

.checkout-verify-card__perks-meta {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.checkout-verify-card__steps {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.checkout-verify-card__steps li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #334155;
}

.checkout-verify-card__step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.checkout-verify-card__hint {
    margin-top: 1rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #94a3b8;
}

.checkout-verify-card__resent {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #059669;
}

.checkout-verify-card__resend {
    margin-top: 1rem;
}

.checkout-verify-card__signin {
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 639px) {
    .checkout-steps {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .checkout-step:not(:last-child)::after {
        display: none;
    }

    .checkout-step__label {
        display: none;
    }
}

/* ── Help center (FAQ) & contact ── */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.support-hero__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.support-hero__lead {
    margin-top: 1rem;
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #94a3b8;
}

.support-search {
    margin-top: 2rem;
}

.support-search__wrap {
    position: relative;
    max-width: 32rem;
    margin: 0 auto;
}

.support-search__icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #64748b;
    pointer-events: none;
}

.support-search__input {
    display: block;
    width: 100%;
    padding: 0.9375rem 1rem 0.9375rem 3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.9375rem;
    color: #fff;
    transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.support-search__input::placeholder {
    color: #64748b;
}

.support-search__input:focus {
    outline: none;
    border-color: rgba(34, 211, 238, 0.5);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}

.support-search__hint {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: #fde68a;
}

.support-main {
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 40%, #fff 100%);
}

.support-section__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0b1220;
}

.support-topics {
    padding-top: 0.5rem;
}

.support-topics__grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .support-topics__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .support-topics__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.support-topic-card {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.125rem 1.25rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 4px 16px -4px rgba(15, 23, 42, 0.06);
    transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.support-topic-card:hover {
    border-color: rgba(34, 211, 238, 0.45);
    box-shadow: 0 8px 24px -6px rgba(34, 211, 238, 0.15);
    transform: translateY(-2px);
}

.support-topic-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(8, 145, 178, 0.08));
    color: #0891b2;
}

.support-topic-card__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.support-topic-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.support-topic-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0b1220;
}

.support-topic-card__desc {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #64748b;
}

.support-faq {
    margin-top: 3rem;
}

.support-faq__category {
    margin-top: 2rem;
}

.support-faq__category-head {
    margin-bottom: 1rem;
}

.support-faq__category-title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #0b1220;
}

.support-faq__category-desc {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.support-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.support-accordion__item {
    border-radius: 0.875rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 12px -4px rgba(15, 23, 42, 0.06);
}

.support-accordion__item[open] {
    border-color: rgba(34, 211, 238, 0.35);
}

.support-accordion__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.125rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0b1220;
    cursor: pointer;
    list-style: none;
}

.support-accordion__summary::-webkit-details-marker {
    display: none;
}

.support-accordion__chevron {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: #94a3b8;
    transition: transform 0.2s;
}

.support-accordion__item[open] .support-accordion__chevron {
    transform: rotate(180deg);
    color: #0891b2;
}

.support-accordion__panel {
    padding: 0 1.125rem 1.125rem;
    font-size: 0.875rem;
    line-height: 1.65;
    color: #475569;
    border-top: 1px solid #f1f5f9;
}

.support-accordion__panel p {
    margin-top: 0.875rem;
}

.support-cta {
    margin-top: 3.5rem;
}

.support-cta__card {
    padding: 2rem 1.75rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #0b1220 0%, #1e293b 100%);
    text-align: center;
    box-shadow: 0 8px 32px -8px rgba(15, 23, 42, 0.2);
}

@media (min-width: 640px) {
    .support-cta__card {
        padding: 2.5rem 3rem;
    }
}

.support-cta__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.support-cta__lead {
    margin-top: 0.75rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #94a3b8;
}

.support-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

@media (min-width: 480px) {
    .support-cta__actions {
        flex-direction: row;
        justify-content: center;
    }
}

.support-cta__btn {
    width: auto;
    min-width: 12rem;
    text-decoration: none;
}

.support-cta__secondary {
    font-size: 0.875rem;
    font-weight: 600;
    color: #67e8f9;
    transition: color 0.15s;
}

.support-cta__secondary:hover {
    color: #fff;
}

.marketing-page-main {
    padding-top: 2.5rem;
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 40%, #fff 100%);
}

.contact-main {
    padding-bottom: 0;
}

.contact-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        gap: 2.5rem;
    }
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .contact-aside {
        position: sticky;
        top: 5.5rem;
    }
}

.contact-aside__card {
    padding: 1.25rem 1.375rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 4px 16px -4px rgba(15, 23, 42, 0.06);
}

.contact-aside__card--muted {
    background: #f8fafc;
}

.contact-aside__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0b1220;
}

.contact-aside__list {
    margin: 0.875rem 0 0;
    padding: 0;
    list-style: none;
}

.contact-aside__list li {
    padding: 0.625rem 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #64748b;
    border-top: 1px solid #f1f5f9;
}

.contact-aside__list li:first-child {
    border-top: none;
    padding-top: 0;
}

.contact-aside__list strong {
    display: block;
    margin-bottom: 0.125rem;
    font-size: 0.8125rem;
    color: #334155;
}

.contact-aside__text {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #64748b;
}

.contact-aside__email {
    margin-top: 0.875rem;
    font-size: 0.8125rem;
    color: #64748b;
}

.contact-aside__email a {
    font-weight: 600;
    color: #0891b2;
}

.contact-aside__email a:hover {
    color: #22d3ee;
}

.contact-aside__link {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0891b2;
}

.contact-aside__link:hover {
    color: #22d3ee;
}

.contact-form {
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 4px 24px -4px rgba(15, 23, 42, 0.08);
}

@media (min-width: 640px) {
    .contact-form {
        padding: 2rem;
    }
}

.contact-field__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 1.25rem;
    padding-right: 2.5rem;
}

.contact-form .checkout-field + .checkout-field {
    margin-top: 0;
}

.contact-form .checkout-section + .checkout-section .checkout-field:first-of-type {
    margin-top: 0;
}

.checkout-field--spaced {
    margin-top: 1rem;
}

.contact-form__legal {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

.contact-success {
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    text-align: center;
    box-shadow: 0 8px 32px -8px rgba(15, 23, 42, 0.12);
}

.contact-success__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.contact-success__icon svg {
    width: 2rem;
    height: 2rem;
}

.contact-success__title {
    margin-top: 1.25rem;
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0b1220;
}

.contact-success__lead {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
}

.contact-success__btn {
    margin-top: 1.5rem;
    text-decoration: none;
}

.dashboard-mock {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(34, 211, 238, 0.2);
}

/* ── Feature section layouts (FlyonUI-inspired bento / showcase / spotlight) ── */

.feat-section--spotlight {
    color: #e2e8f0;
}

.feat-section__title--light {
    color: #fff;
}

.feat-section__subtitle--light {
    color: #94a3b8;
}

/* Tab variants */

.feat-tabs--vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feat-tabs--pills {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.feat-tabs--bento {
    display: grid;
    gap: 0.625rem;
}

@media (min-width: 640px) {
    .feat-tabs--bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feat-tabs--compact {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.feat-tab {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
    overflow: hidden;
    color: inherit;
}

.feat-tab:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 20px -6px rgba(15, 23, 42, 0.08);
}

.feat-tab.is-active {
    border-color: #22d3ee;
    background: linear-gradient(135deg, #f0fdff 0%, #fff 100%);
    box-shadow: 0 8px 32px -8px rgba(34, 211, 238, 0.25);
}

.feat-tab--vertical {
    padding: 1rem 1.125rem 1.125rem;
}

.feat-tab--pills {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    min-width: 8.5rem;
    max-width: 11rem;
    padding: 0.875rem 1rem 1rem;
    scroll-snap-align: start;
    text-align: center;
}

.feat-tab--pills .feat-tab__body {
    align-items: center;
}

.feat-tab--pills .feat-tab__desc {
    display: none;
}

/* Showcase sections (ledger + reports): show brief pill descriptions */
.feat-layout-showcase__nav .feat-tab--pills {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.125rem 1.125rem;
    text-align: left;
}

.feat-layout-showcase__nav .feat-tab--pills .feat-tab__body {
    align-items: flex-start;
    flex: 1;
}

.feat-layout-showcase__nav .feat-tab--pills .feat-tab__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #64748b;
}

.feat-layout-showcase__nav .feat-tab--pills.is-active .feat-tab__desc {
    color: #475569;
}

.feat-tab--bento {
    padding: 0.875rem 1rem;
    border-radius: 0.875rem;
}

.feat-tab--bento .feat-tab__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feat-tab--compact {
    padding: 0.625rem 0.875rem 0.75rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.feat-tab--compact:hover {
    border-color: rgba(34, 211, 238, 0.35);
    background: rgba(255, 255, 255, 0.07);
}

.feat-tab--compact.is-active {
    border-color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
    box-shadow: 0 4px 24px -8px rgba(34, 211, 238, 0.35);
}

.feat-tab--compact .feat-tab__title {
    color: #fff;
    font-size: 0.8125rem;
}

.feat-tab--compact .feat-tab__desc {
    color: #94a3b8;
    font-size: 0.75rem;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.feat-tab--compact .feat-tab__icon {
    background: rgba(255, 255, 255, 0.08);
    color: #67e8f9;
    width: 2rem;
    height: 2rem;
}

.feat-tab--compact.is-active .feat-tab__icon {
    background: rgba(34, 211, 238, 0.2);
}

.feat-tab__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #f1f5f9;
    color: #0891b2;
}

.feat-tab__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.feat-tab.is-active .feat-tab__icon {
    background: rgba(34, 211, 238, 0.15);
    color: #0e7490;
}

.feat-tab__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.feat-tab__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0b1220;
    line-height: 1.3;
}

.feat-tab__desc {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #64748b;
}

.feat-tab__progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #e2e8f0;
}

.feat-tab--compact .feat-tab__progress {
    background: rgba(255, 255, 255, 0.1);
}

.feat-tab__progress-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #22d3ee, #0891b2);
    transition: width 0.05s linear;
}

/* Showcase layout */

.feat-layout-showcase__nav {
    width: 100%;
}

.feat-layout-showcase__nav .feat-tabs--pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    overflow-x: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
}

@media (min-width: 640px) {
    .feat-layout-showcase__nav .feat-tabs--pills {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.75rem;
    }
}

.feat-layout-showcase__nav .feat-tab--pills {
    flex: unset;
    min-width: 0;
    max-width: none;
    width: 100%;
    scroll-snap-align: unset;
}

.feat-layout-showcase__stage--hero {
    min-height: 460px;
    border-radius: 1.5rem;
    box-shadow: 0 24px 64px -24px rgba(15, 23, 42, 0.2);
}

@media (min-width: 1024px) {
    .feat-layout-showcase__stage--hero {
        min-height: 520px;
    }
}

/* Spotlight layout */

.feat-layout-spotlight__stage-wrap {
    position: relative;
}

.feat-layout-spotlight__glow {
    position: absolute;
    inset: -1.5rem -1rem;
    border-radius: 2rem;
    background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(34, 211, 238, 0.18), transparent 70%);
    pointer-events: none;
}

.feat-layout-spotlight__stage {
    min-height: 400px;
    border-radius: 1.25rem;
    border: 1px solid rgba(34, 211, 238, 0.2);
    box-shadow: 0 32px 64px -24px rgba(0, 0, 0, 0.55);
}

@media (min-width: 1024px) {
    .feat-layout-spotlight__stage {
        min-height: 480px;
    }
}

/* Bento layout */

.feat-layout-bento__stage-wrap {
    position: relative;
}

.feat-layout-bento__accent {
    position: absolute;
    right: -1rem;
    top: -1.5rem;
    width: 40%;
    height: 40%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.15), transparent 70%);
    pointer-events: none;
}

.feat-layout-bento__stage {
    min-height: 400px;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.15);
}

@media (min-width: 1024px) {
    .feat-layout-bento__stage {
        min-height: 480px;
        margin-top: -0.5rem;
    }
}

@media (max-width: 1023px) {
    .feat-layout-sidebar {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .feat-layout-sidebar__nav,
    .feat-layout-sidebar__stage {
        min-width: 0;
        width: 100%;
    }

    .feat-layout-sidebar__nav {
        order: 1;
    }

    .feat-layout-sidebar__stage {
        order: 2;
        min-height: 320px;
    }

    .feat-tabs--vertical {
        flex-direction: column;
        gap: 0.5rem;
        overflow: visible;
        padding-bottom: 0;
        scroll-snap-type: none;
    }

    .feat-tab--vertical {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
        max-width: none;
        scroll-snap-align: unset;
    }

    .feat-tab--vertical .feat-tab__desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .feat-tabs--pills {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
        overflow: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }

    .feat-layout-showcase__nav .feat-tabs--pills {
        grid-template-columns: 1fr;
    }

    .feat-tab--pills {
        flex: unset;
        min-width: 0;
        max-width: none;
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        scroll-snap-align: unset;
    }

    .feat-tab--pills .feat-tab__desc,
    .feat-layout-showcase__nav .feat-tab--pills .feat-tab__desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .feat-tabs--compact {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feat-tab--compact {
        flex: 1 1 calc(50% - 0.25rem);
        min-width: 9rem;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .feat-tabs--pills,
    .feat-layout-showcase__nav .feat-tabs--pills {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.625rem;
    }
}

/* ── Harvest-style stacked slideshow tabs (hs_cos_wrapper_stacked-slideshow-tabs) ── */

.hs-cos-stacked-slideshow-tabs__nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hs-cos-tab {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    width: 100%;
    padding: 1rem 1.125rem 1.125rem;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    background: #fff;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    overflow: hidden;
}

.hs-cos-tab:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 20px -6px rgba(15, 23, 42, 0.08);
}

.hs-cos-tab.is-active {
    border-color: #22d3ee;
    background: linear-gradient(135deg, #f0fdff 0%, #fff 100%);
    box-shadow: 0 8px 32px -8px rgba(34, 211, 238, 0.25);
}

.hs-cos-tab__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #f1f5f9;
    color: #0891b2;
}

.hs-cos-tab__icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.hs-cos-tab.is-active .hs-cos-tab__icon {
    background: rgba(34, 211, 238, 0.15);
    color: #0e7490;
}

.hs-cos-tab__body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.hs-cos-tab__title {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0b1220;
    line-height: 1.3;
}

.hs-cos-tab__desc {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #64748b;
}

.hs-cos-tab__progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: #e2e8f0;
}

.hs-cos-tab__progress-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #22d3ee, #0891b2);
    transition: width 0.05s linear;
}

.hs-cos-stacked-slideshow-tabs__stage {
    position: relative;
    min-height: 420px;
}

@media (min-width: 1024px) {
    .hs-cos-stacked-slideshow-tabs__stage {
        min-height: 540px;
    }
}

.hs-cos-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.15);
    overflow: hidden;
}

.hs-cos-panel__chrome {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #0b1220;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hs-cos-panel__dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: #475569;
}

.hs-cos-panel__dot--red { background: #f87171; }
.hs-cos-panel__dot--amber { background: #fbbf24; }
.hs-cos-panel__dot--green { background: #4ade80; }

.hs-cos-panel__url {
    margin-left: 0.5rem;
    font-size: 0.6875rem;
    color: #94a3b8;
    font-family: ui-monospace, monospace;
}

.hs-cos-panel__viewport {
    position: relative;
    flex: 1;
    min-height: 360px;
    overflow: hidden;
    background: #eef2f7;
}

.hs-cos-panel__viewport.has-shot .mock-app {
    visibility: hidden;
}

.hs-cos-shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 2;
}

.hs-cos-panel__asset-hint {
    padding: 0.5rem 1rem;
    font-size: 0.6875rem;
    color: #94a3b8;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.hs-cos-panel__asset-hint code {
    font-size: 0.625rem;
    word-break: break-all;
}

/* ── In-browser UI mocks (fallback until screenshots are added) ── */

.mock-app {
    position: absolute;
    inset: 0;
    padding: 0.75rem;
    font-size: 0.6875rem;
    color: #1e293b;
    overflow: auto;
}

.mock-topbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.mock-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
    background: #22d3ee;
    color: #0b1220;
    font-weight: 700;
    font-size: 0.625rem;
}

.mock-pill {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.mock-pill--ok { background: #dcfce7; color: #166534; }
.mock-pill--amber { background: #fef3c7; color: #92400e; }
.mock-pill--warn { background: #ffedd5; color: #c2410c; }
.mock-pill--risk { background: #fee2e2; color: #991b1b; }

.mock-label {
    display: block;
    font-size: 0.5625rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.mock-meta { color: #64748b; font-size: 0.625rem; }

/* KYC + approve modal */
.mock-app--kyc .mock-app__bg {
    background: #fff;
    border-radius: 0.5rem;
    padding: 0.625rem;
    filter: blur(0);
}

.mock-kyc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.mock-kyc-header h3 {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0;
}

.mock-kyc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mock-kyc-score,
.mock-kyc-cleardil {
    background: #f8fafc;
    border-radius: 0.375rem;
    padding: 0.5rem;
}

.mock-meter {
    height: 0.375rem;
    background: #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
    margin: 0.25rem 0;
}

.mock-meter span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 999px;
}

.mock-modal {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 18, 32, 0.55);
    backdrop-filter: blur(2px);
    padding: 1rem;
    z-index: 3;
}

.mock-modal__card {
    width: 100%;
    max-width: 18rem;
    background: #fff;
    border-radius: 0.75rem;
    padding: 0.875rem;
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.35);
}

.mock-modal__card h4 {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
}

.mock-modal__uid {
    margin: 0.125rem 0 0.5rem;
    font-family: ui-monospace, monospace;
    color: #64748b;
    font-size: 0.625rem;
}

.mock-modal__section {
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
}

.mock-modal__section--warn {
    background: #fffbeb;
    border-color: #fde68a;
}

.mock-modal__section--risk {
    background: #fef2f2;
    border-color: #fecaca;
}

.mock-modal__lead {
    margin: 0;
    font-weight: 600;
    font-size: 0.625rem;
}

.mock-modal__hint {
    margin: 0.25rem 0;
    color: #64748b;
    font-size: 0.5625rem;
    line-height: 1.4;
}

.mock-check {
    display: flex;
    align-items: flex-start;
    gap: 0.375rem;
    font-size: 0.5625rem;
    margin: 0.375rem 0;
}

.mock-input {
    padding: 0.375rem 0.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.25rem;
    font-size: 0.5625rem;
    color: #475569;
}

.mock-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.375rem;
    margin-top: 0.625rem;
}

.mock-btn {
    display: inline-block;
    padding: 0.3125rem 0.625rem;
    border-radius: 0.375rem;
    font-size: 0.625rem;
    font-weight: 600;
}

.mock-btn--ghost {
    background: #f1f5f9;
    color: #475569;
}

.mock-btn--primary {
    background: #0891b2;
    color: #fff;
}

.mock-btn--xs {
    padding: 0.2rem 0.5rem;
    font-size: 0.5625rem;
}

/* Reports */
.mock-date-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
    padding: 0.375rem 0.5rem;
    background: #fff;
    border-radius: 0.375rem;
}

.mock-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.625rem;
}

.mock-kpi {
    background: #fff;
    border-radius: 0.375rem;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
}

.mock-kpi__label {
    display: block;
    font-size: 0.5625rem;
    color: #64748b;
    text-transform: uppercase;
}

.mock-kpi__value {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    margin-top: 0.125rem;
}

.mock-kpi__value--pos { color: #059669; }
.mock-kpi__sub {
    display: block;
    font-size: 0.5625rem;
    color: #94a3b8;
    margin-top: 0.125rem;
}

.mock-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0.5rem;
}

.mock-table-mini,
.mock-sidebar {
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
    padding: 0.5rem;
}

.mock-table-mini__head,
.mock-sidebar__title {
    font-weight: 700;
    font-size: 0.625rem;
    margin-bottom: 0.375rem;
}

.mock-row,
.mock-sidebar__line {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.625rem;
}

.mock-num { font-variant-numeric: tabular-nums; font-weight: 600; }
.mock-num--pos { color: #059669; }
.mock-num--neg { color: #dc2626; }
.mock-num--muted { color: #94a3b8; }

/* Balances */
.mock-mtm-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.375rem;
    margin-bottom: 0.625rem;
}

.mock-mtm {
    background: #fff;
    border-radius: 0.375rem;
    padding: 0.375rem 0.5rem;
    border: 1px solid #e2e8f0;
}

.mock-mtm span {
    display: block;
    font-size: 0.5rem;
    text-transform: uppercase;
    color: #64748b;
}

.mock-mtm strong {
    display: block;
    font-size: 0.6875rem;
    margin-top: 0.125rem;
}

.mock-mtm--hero {
    background: linear-gradient(135deg, #ecfeff, #fff);
    border-color: #a5f3fc;
}

.mock-mtm--hero strong { color: #0e7490; }
.mock-mtm--pos strong { color: #059669; }

.mock-balance-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 0.375rem;
    overflow: hidden;
    font-size: 0.625rem;
}

.mock-balance-table th,
.mock-balance-table td {
    padding: 0.375rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.mock-balance-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #64748b;
}

.mock-bucket {
    display: inline-block;
    padding: 0.0625rem 0.25rem;
    border-radius: 0.2rem;
    background: #f1f5f9;
    font-size: 0.5rem;
    margin-right: 0.125rem;
}

.mock-bucket--p { background: #dbeafe; color: #1d4ed8; }

/* Deals */
.mock-deal-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
    padding: 0.5rem;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
}

.mock-deal-head h3 {
    margin: 0;
    font-size: 0.8125rem;
}

.mock-deal-head p {
    margin: 0.125rem 0 0;
    color: #64748b;
    font-size: 0.5625rem;
}

.mock-flow {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.mock-flow__step {
    flex: 1;
    text-align: center;
    padding: 0.375rem 0.25rem;
    background: #fff;
    border-radius: 0.25rem;
    border: 1px solid #e2e8f0;
    font-size: 0.5rem;
    color: #94a3b8;
}

.mock-flow__step span {
    display: block;
    width: 1rem;
    height: 1rem;
    margin: 0 auto 0.25rem;
    border-radius: 50%;
    background: #e2e8f0;
    font-size: 0.5rem;
    line-height: 1rem;
    font-weight: 700;
}

.mock-flow__step--done {
    border-color: #bbf7d0;
    color: #166534;
}

.mock-flow__step--done span { background: #86efac; }

.mock-flow__step--active {
    border-color: #22d3ee;
    color: #0e7490;
    box-shadow: 0 0 0 1px #22d3ee;
}

.mock-flow__step--active span { background: #22d3ee; color: #0b1220; }

.mock-deal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.375rem;
    margin-bottom: 0.5rem;
}

.mock-deal-stats > div {
    background: #fff;
    padding: 0.375rem;
    border-radius: 0.25rem;
    text-align: center;
}

.mock-deal-stats span {
    display: block;
    font-size: 0.5rem;
    color: #64748b;
}

.mock-entry-list .mock-entry,
.mock-dash-card .mock-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.375rem 0.5rem;
    background: #fff;
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
    font-size: 0.625rem;
}

/* Dashboard */
.mock-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.mock-dash-header h3 {
    margin: 0;
    font-size: 0.875rem;
}

.mock-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.375rem;
    margin-bottom: 0.5rem;
}

.mock-stat {
    background: #fff;
    border-radius: 0.375rem;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
}

.mock-stat span {
    display: block;
    font-size: 0.5rem;
    color: #64748b;
}

.mock-stat strong {
    display: block;
    font-size: 0.875rem;
    margin-top: 0.125rem;
}

.mock-stat--warn strong { color: #d97706; }
.mock-stat--hero {
    background: linear-gradient(135deg, #ecfeff, #fff);
    border-color: #a5f3fc;
}

.mock-stat--hero strong { color: #0e7490; }

.mock-dash-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.mock-dash-card {
    background: #fff;
    border-radius: 0.375rem;
    padding: 0.5rem;
    border: 1px solid #e2e8f0;
}

.mock-dash-card__title {
    font-weight: 700;
    font-size: 0.625rem;
    margin-bottom: 0.375rem;
}

/* Entities */
.mock-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    align-items: center;
}

.mock-filter {
    padding: 0.2rem 0.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-size: 0.5625rem;
}

.mock-filter--on {
    background: #ecfeff;
    border-color: #22d3ee;
    color: #0e7490;
    font-weight: 600;
}

.mock-search {
    margin-left: auto;
    padding: 0.25rem 0.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0.25rem;
    color: #94a3b8;
    font-size: 0.5625rem;
}

.mock-entity-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 0.375rem;
    font-size: 0.625rem;
}

.mock-entity-table th,
.mock-entity-table td {
    padding: 0.375rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.mock-entity-table th {
    background: #f8fafc;
    color: #64748b;
    font-weight: 600;
}

.mock-tag {
    display: inline-block;
    padding: 0.0625rem 0.3rem;
    background: #f1f5f9;
    border-radius: 0.2rem;
    font-size: 0.5rem;
    font-weight: 600;
    color: #475569;
}

.mock-mono {
    font-family: ui-monospace, monospace;
    font-size: 0.5625rem;
}

/* Ledger: paired entry form */
.mock-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.mock-form-header h3 {
    margin: 0;
    font-size: 0.875rem;
}

.mock-pair-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.375rem;
    align-items: stretch;
    margin-bottom: 0.5rem;
}

.mock-pair-card {
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
    padding: 0.5rem;
}

.mock-pair-card--channel {
    border-color: #a5f3fc;
    background: linear-gradient(135deg, #ecfeff, #fff);
}

.mock-pair-card--cp {
    border-color: #fde68a;
    background: linear-gradient(135deg, #fffbeb, #fff);
}

.mock-pair-card__badge {
    display: inline-block;
    margin-bottom: 0.375rem;
    padding: 0.125rem 0.375rem;
    border-radius: 0.2rem;
    background: #cffafe;
    color: #0e7490;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mock-pair-card__badge--cp {
    background: #fef3c7;
    color: #92400e;
}

.mock-field {
    margin-bottom: 0.25rem;
}

.mock-field strong {
    display: block;
    font-size: 0.625rem;
}

.mock-pair-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.125rem;
    padding: 0 0.25rem;
    color: #64748b;
    font-size: 0.5rem;
    text-align: center;
}

.mock-pair-connector__icon {
    font-size: 0.875rem;
    color: #0891b2;
}

.mock-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.375rem 0.5rem;
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
}

/* Ledger: FX wizard */
.mock-wizard-steps {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.mock-wizard-step {
    flex: 1;
    text-align: center;
    padding: 0.25rem;
    background: #fff;
    border-radius: 0.25rem;
    border: 1px solid #e2e8f0;
    font-size: 0.5625rem;
    font-weight: 700;
    color: #94a3b8;
}

.mock-wizard-step--done {
    background: #dcfce7;
    border-color: #86efac;
    color: #166534;
}

.mock-wizard-step--active {
    background: #ecfeff;
    border-color: #22d3ee;
    color: #0e7490;
    box-shadow: 0 0 0 1px #22d3ee;
}

.mock-fx-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
    margin-bottom: 0.5rem;
}

.mock-fx-panel {
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #a5f3fc;
    padding: 0.5rem;
}

.mock-fx-panel--cp {
    border-color: #fde68a;
}

.mock-fx-panel__title {
    font-weight: 700;
    font-size: 0.625rem;
    margin-bottom: 0.375rem;
    color: #0e7490;
}

.mock-fx-panel--cp .mock-fx-panel__title {
    color: #92400e;
}

.mock-fx-row {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0;
    font-size: 0.625rem;
    border-bottom: 1px solid #f1f5f9;
}

.mock-fx-row--buy strong {
    color: #059669;
}

.mock-fx-rate {
    margin-top: 0.25rem;
    font-size: 0.5625rem;
    color: #64748b;
}

.mock-wizard-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
    font-size: 0.625rem;
}

/* Ledger: entry list */
.mock-entry-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 0.375rem;
    font-size: 0.625rem;
}

.mock-entry-table th,
.mock-entry-table td {
    padding: 0.375rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.mock-entry-table th {
    background: #f8fafc;
    color: #64748b;
    font-weight: 600;
}

/* Ledger: documents */
.mock-doc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    background: #fff;
    padding: 0.5rem;
    border-radius: 0.375rem;
}

.mock-doc-header h3 {
    margin: 0;
    font-size: 0.8125rem;
}

.mock-doc-header p {
    margin: 0.125rem 0 0;
    color: #64748b;
    font-size: 0.5625rem;
}

.mock-doc-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mock-doc-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
}

.mock-doc-item--pending {
    border-color: #fde68a;
    background: #fffbeb;
}

.mock-doc-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.375rem;
    background: #fee2e2;
    color: #991b1b;
    font-size: 0.5rem;
    font-weight: 700;
}

.mock-doc-icon--img {
    background: #dbeafe;
    color: #1d4ed8;
}

.mock-doc-meta {
    flex: 1;
    min-width: 0;
}

.mock-doc-meta strong {
    display: block;
    font-size: 0.625rem;
}

.mock-doc-meta span {
    display: block;
    font-size: 0.5625rem;
    color: #94a3b8;
}

/* Platform: tenant */
.mock-tenant-bar {
    margin-bottom: 0.375rem;
}

.mock-tenant-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.625rem;
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #22d3ee;
    box-shadow: 0 4px 16px -4px rgba(34, 211, 238, 0.3);
}

.mock-tenant-caret {
    color: #64748b;
    font-size: 0.75rem;
}

.mock-tenant-dropdown {
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.mock-tenant-option {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.625rem;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.625rem;
}

.mock-tenant-option--active {
    background: #ecfeff;
}

.mock-tenant-option--muted {
    color: #94a3b8;
}

.mock-tenant-option strong {
    display: block;
}

.mock-tenant-option span {
    font-size: 0.5625rem;
    color: #64748b;
}

.mock-tenant-note {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0.5rem;
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
}

.mock-tenant-note p {
    margin: 0;
    font-size: 0.5625rem;
    color: #64748b;
    line-height: 1.45;
}

/* Platform: roles */
.mock-roles-header {
    margin-bottom: 0.5rem;
}

.mock-roles-header h3 {
    margin: 0;
    font-size: 0.875rem;
}

.mock-perm-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 0.375rem;
    font-size: 0.625rem;
}

.mock-perm-table th,
.mock-perm-table td {
    padding: 0.375rem 0.5rem;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.mock-perm-table th:first-child,
.mock-perm-table td:first-child {
    text-align: left;
}

.mock-perm-table th {
    background: #f8fafc;
    color: #64748b;
    font-weight: 600;
}

.mock-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 0.25rem;
    background: #f1f5f9;
    color: #94a3b8;
    font-size: 0.625rem;
}

.mock-check-icon--on {
    background: #dcfce7;
    color: #166534;
}

/* Platform: maker-checker */
.mock-mc-flow {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.mock-mc-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.5rem;
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
}

.mock-mc-step--done {
    border-color: #bbf7d0;
}

.mock-mc-step--active {
    border-color: #22d3ee;
    box-shadow: 0 0 0 1px #22d3ee;
}

.mock-mc-step__num {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #e2e8f0;
    font-size: 0.5625rem;
    font-weight: 700;
    line-height: 1.25rem;
    text-align: center;
}

.mock-mc-step--done .mock-mc-step__num {
    background: #86efac;
    color: #166534;
}

.mock-mc-step--active .mock-mc-step__num {
    background: #22d3ee;
    color: #0b1220;
}

.mock-mc-step strong {
    display: block;
    font-size: 0.625rem;
}

.mock-mc-step p {
    margin: 0;
    font-size: 0.5625rem;
    color: #64748b;
}

.mock-mc-guards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
    margin-bottom: 0.375rem;
}

.mock-mc-guard {
    padding: 0.375rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.5625rem;
}

.mock-mc-guard span {
    display: block;
    color: #64748b;
    text-transform: uppercase;
    font-size: 0.5rem;
}

.mock-mc-guard strong {
    display: block;
    margin-top: 0.125rem;
    font-size: 0.5625rem;
}

.mock-mc-guard--warn {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.mock-mc-guard--risk {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.mock-input--block {
    display: block;
    width: 100%;
}

/* Platform: audit */
.mock-audit-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.mock-audit-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mock-audit-row {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
    font-size: 0.625rem;
}

.mock-audit-time {
    flex-shrink: 0;
    font-family: ui-monospace, monospace;
    color: #94a3b8;
    font-size: 0.5625rem;
}

.mock-audit-body p {
    margin: 0.125rem 0 0;
    color: #64748b;
    font-size: 0.5625rem;
}

/* Locale: bilingual */
.mock-locale-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.mock-lang-switch {
    display: flex;
    gap: 0.125rem;
    padding: 0.125rem;
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
}

.mock-lang {
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.5625rem;
    font-weight: 600;
    color: #64748b;
}

.mock-lang--on {
    background: #0891b2;
    color: #fff;
}

.mock-locale-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
    margin-bottom: 0.375rem;
}

.mock-locale-preview--en-only {
    grid-template-columns: 1fr;
    max-width: 14rem;
    margin-left: auto;
    margin-right: auto;
}

.mock-locale-col {
    padding: 0.5rem;
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
}

.mock-locale-col--zh {
    border-color: #fde68a;
    background: linear-gradient(135deg, #fffbeb, #fff);
}

.mock-locale-note {
    margin: 0;
    font-size: 0.5625rem;
    color: #64748b;
    text-align: center;
}

/* Locale: custom labels */
.mock-labels-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
}

.mock-labels-header h3 {
    margin: 0;
    font-size: 0.875rem;
}

.mock-labels-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 0.375rem;
    font-size: 0.625rem;
}

.mock-labels-table th,
.mock-labels-table td {
    padding: 0.375rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.mock-labels-table th {
    background: #f8fafc;
    color: #64748b;
    font-weight: 600;
}

/* Locale: settings */
.mock-settings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem;
    margin-bottom: 0.5rem;
}

.mock-settings-card {
    padding: 0.5rem;
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
}

.mock-settings-card strong {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.125rem;
}

.mock-settings-fx {
    background: #fff;
    border-radius: 0.375rem;
    border: 1px solid #e2e8f0;
    padding: 0.5rem;
    margin-bottom: 0.375rem;
}

.mock-settings-fx__title {
    font-weight: 700;
    font-size: 0.625rem;
    margin-bottom: 0.375rem;
}

.mock-fx-pair {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.625rem;
}

.mock-settings-note {
    margin: 0;
    font-size: 0.5625rem;
    color: #64748b;
    text-align: center;
}

@media (max-width: 1023px) {
    .hs-cos-stacked-slideshow-tabs__nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.25rem;
        scroll-snap-type: x mandatory;
    }

    .hs-cos-tab {
        flex: 0 0 min(280px, 85vw);
        scroll-snap-align: start;
    }

    .hs-cos-tab__desc {
        display: none;
    }

    .hs-cos-stacked-slideshow-tabs__stage {
        min-height: 400px;
    }

    .mock-mtm-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .mock-kpi-row {
        grid-template-columns: 1fr;
    }

    .mock-stat-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .mock-pair-grid {
        grid-template-columns: 1fr;
    }

    .mock-pair-connector {
        flex-direction: row;
        padding: 0.25rem 0;
    }

    .mock-fx-dual,
    .mock-locale-preview,
    .mock-mc-guards {
        grid-template-columns: 1fr;
    }
}