/* /Features/Brands/BrandsSection.razor.rz.scp.css */
/* ═══════════════════════════════════════════
   BRANDS SECTION
   ═══════════════════════════════════════════ */

.brands-section[b-3rj9xntkru] {
    padding: 5rem 4rem;
    background: var(--slate);
}

.brands-label[b-3rj9xntkru] {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.55);
    text-align: center;
    margin-bottom: 2.5rem;
}

.brands-row[b-3rj9xntkru] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.brand-pill[b-3rj9xntkru] {
    font-family: var(--serif-display);
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    color: rgba(250, 248, 244, 0.85);
    font-weight: 400;
    font-style: italic;
    transition: color 0.2s;
}

.brand-pill:hover[b-3rj9xntkru] {
    color: var(--gold-light);
}

.brand-divider[b-3rj9xntkru] {
    width: 1px;
    height: 18px;
    background: rgba(250, 248, 244, 0.15);
}

/* Responsive */
@media (max-width: 900px) {
    .brands-section[b-3rj9xntkru] {
        padding: 3.5rem 1.5rem;
    }

    .brands-row[b-3rj9xntkru] {
        gap: 2rem;
    }

    .brand-pill[b-3rj9xntkru] {
        font-size: 1.1rem;
    }

    .brand-divider[b-3rj9xntkru] {
        display: none;
    }
}
/* /Features/FeatureSplit/FeatureSplitDesigners.razor.rz.scp.css */
/* ═══════════════════════════════════════════
   FEATURE SPLIT - DESIGNERS (Reversed Layout)
   Includes all base styles + component-specific styles
   ═══════════════════════════════════════════ */

/* Base Feature Split Grid Layout (same as Shoppers) */
.feature-split[b-iya30fbxyu] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    background: var(--cream-mid);
}

.feature-split-visual[b-iya30fbxyu] {
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

/* Diagonal decorative element */
.feature-split-visual[b-iya30fbxyu]::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
    opacity: 0.6;
}

.feature-mock[b-iya30fbxyu] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-split-content[b-iya30fbxyu] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
}

.feature-tag[b-iya30fbxyu] {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--cream-dark);
    background: var(--cream);
    border-radius: 20px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.feature-split-content .section-title[b-iya30fbxyu] {
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.feature-list[b-iya30fbxyu] {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li[b-iya30fbxyu] {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.feature-list li[b-iya30fbxyu]::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Component-Specific: Designer Dashboard Mockup */
.designer-dashboard[b-iya30fbxyu] {
    background: var(--cream);
    border-radius: 6px;
    padding: 1.5rem;
    width: 280px;
    box-shadow: 0 30px 70px rgba(26, 24, 20, 0.12);
}

.dashboard-header[b-iya30fbxyu] {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.dashboard-stats[b-iya30fbxyu] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.dashboard-stat-row[b-iya30fbxyu] {
    background: var(--cream-mid);
    border-radius: 3px;
    padding: 0.7rem 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-stat-label[b-iya30fbxyu] {
    font-family: var(--serif-display);
    font-size: 0.85rem;
    color: var(--ink);
}

.dashboard-stat-value[b-iya30fbxyu] {
    font-family: var(--serif-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--gold);
}

.dashboard-footer[b-iya30fbxyu] {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--cream-dark);
    font-size: 0.65rem;
    color: var(--ink-muted);
    letter-spacing: 0.08em;
}

/* Responsive */
@media (max-width: 900px) {
    .feature-split[b-iya30fbxyu] {
        grid-template-columns: 1fr;
    }

    .feature-split-content[b-iya30fbxyu] {
        padding: 3rem 1.5rem;
    }

    .feature-split-visual[b-iya30fbxyu] {
        min-height: 320px;
    }

    .designer-dashboard[b-iya30fbxyu] {
        width: 240px;
        padding: 1.25rem;
    }

    .dashboard-stat-label[b-iya30fbxyu] {
        font-size: 0.8rem;
    }

    .dashboard-stat-value[b-iya30fbxyu] {
        font-size: 1rem;
    }
}
/* /Features/FeatureSplit/FeatureSplitShoppers.razor.rz.scp.css */
/* ═══════════════════════════════════════════
   FEATURE SPLIT - SHOPPERS
   Includes all base styles + component-specific styles
   ═══════════════════════════════════════════ */

/* Base Feature Split Grid Layout */
.feature-split[b-qt3yla9s11] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    background: var(--cream-mid);
}

.feature-split-visual[b-qt3yla9s11] {
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

/* Diagonal decorative element */
.feature-split-visual[b-qt3yla9s11]::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
    opacity: 0.6;
}

.feature-mock[b-qt3yla9s11] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-split-content[b-qt3yla9s11] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
}

.feature-tag[b-qt3yla9s11] {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--cream-dark);
    background: var(--cream);
    border-radius: 20px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.feature-split-content .section-title[b-qt3yla9s11] {
    font-size: clamp(2rem, 3.2vw, 3rem);
}

.feature-list[b-qt3yla9s11] {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li[b-qt3yla9s11] {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.feature-list li[b-qt3yla9s11]::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Component-Specific: Phone Mockup */
.phone-mock[b-qt3yla9s11] {
    width: 200px;
    height: 360px;
    background: var(--ink);
    border-radius: 28px;
    padding: 10px;
    box-shadow: 0 40px 80px rgba(26, 24, 20, 0.25);
    position: relative;
}

.phone-screen[b-qt3yla9s11] {
    width: 100%;
    height: 100%;
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-screen-top[b-qt3yla9s11] {
    height: 55%;
    background: linear-gradient(180deg, var(--cream-mid) 0%, var(--cream-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-screen-label[b-qt3yla9s11] {
    padding: 0.6rem 0.8rem;
    flex: 1;
}

.phone-screen-name[b-qt3yla9s11] {
    font-family: var(--serif-display);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 2px;
}

.phone-screen-detail[b-qt3yla9s11] {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.phone-pill[b-qt3yla9s11] {
    display: inline-block;
    margin: 0 0.8rem 0.5rem;
    padding: 0.3rem 0.8rem;
    background: var(--ink);
    color: var(--cream);
    border-radius: 20px;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 900px) {
    .feature-split[b-qt3yla9s11] {
        grid-template-columns: 1fr;
    }

    .feature-split-content[b-qt3yla9s11] {
        padding: 3rem 1.5rem;
    }

    .feature-split-visual[b-qt3yla9s11] {
        min-height: 320px;
    }
}
/* /Features/FinalCTA/FinalCTASection.razor.rz.scp.css */
/* ═══════════════════════════════════════════
   FINAL CTA SECTION
   ═══════════════════════════════════════════ */

.cta-section[b-rb4ttpo8bo] {
    padding: 10rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--blush);
}

.cta-section[b-rb4ttpo8bo]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-pale) 0%, transparent 65%);
    opacity: 0.5;
    pointer-events: none;
}

.cta-inner[b-rb4ttpo8bo] {
    position: relative;
    z-index: 1;
}

.cta-headline[b-rb4ttpo8bo] {
    font-family: var(--serif-display);
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--ink);
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.cta-headline em[b-rb4ttpo8bo] {
    font-style: italic;
    color: var(--gold);
}

.cta-sub[b-rb4ttpo8bo] {
    font-size: 0.95rem;
    color: var(--ink-soft);
    max-width: 420px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.waitlist-form[b-rb4ttpo8bo] {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
    border: 1px solid var(--cream-dark);
    background: var(--white);
    border-radius: 3px;
    overflow: hidden;
}

.waitlist-input[b-rb4ttpo8bo] {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: none;
    background: transparent;
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--ink);
    outline: none;
}

.waitlist-input[b-rb4ttpo8bo]::placeholder {
    color: var(--ink-muted);
}

.waitlist-btn[b-rb4ttpo8bo] {
    padding: 0.9rem 1.4rem;
    background: var(--ink);
    color: var(--cream);
    border: none;
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 500;
}

.waitlist-btn:hover[b-rb4ttpo8bo] {
    background: var(--gold);
}

.cta-note[b-rb4ttpo8bo] {
    font-size: 0.75rem;
    color: var(--ink-muted);
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 900px) {
    .cta-section[b-rb4ttpo8bo] {
        padding: 6rem 1.5rem;
    }

    .cta-headline[b-rb4ttpo8bo] {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .waitlist-form[b-rb4ttpo8bo] {
        flex-direction: column;
        max-width: 320px;
    }

    .waitlist-input[b-rb4ttpo8bo] {
        width: 100%;
        border-bottom: 1px solid var(--cream-dark);
    }

    .waitlist-btn[b-rb4ttpo8bo] {
        width: 100%;
        padding: 1rem;
    }
}
/* /Features/Footer/FooterSection.razor.rz.scp.css */
/* ========================================
   FOOTER — V2 Design
   ======================================== */

.footer[b-pbaya20v1w] {
    background: var(--cream-mid);
    border-top: 1px solid var(--cream-dark);
    padding: 5rem 4rem 3rem;
}

.footer-top[b-pbaya20v1w] {
    max-width: 1100px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--cream-dark);
}

.footer-brand[b-pbaya20v1w] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo[b-pbaya20v1w] {
    font-family: var(--serif-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-logo:hover[b-pbaya20v1w] {
    color: var(--gold);
}

.footer-logo-accent[b-pbaya20v1w] {
    color: var(--gold);
}

.footer-tagline[b-pbaya20v1w] {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 320px;
}

.footer-cols[b-pbaya20v1w] {
    display: contents;
}

.footer-col[b-pbaya20v1w] {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-col h4[b-pbaya20v1w] {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.footer-col a[b-pbaya20v1w] {
    font-size: 0.85rem;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col a:hover[b-pbaya20v1w] {
    color: var(--ink);
}

.footer-bottom[b-pbaya20v1w] {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--ink-muted);
}

.footer-regions[b-pbaya20v1w] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
}

.footer-regions span[b-pbaya20v1w] {
    color: var(--ink-muted);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 900px) {
    .footer[b-pbaya20v1w] {
        padding: 3.5rem 1.5rem 2rem;
    }

    .footer-top[b-pbaya20v1w] {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-brand[b-pbaya20v1w] {
        grid-column: 1 / -1;
    }

    .footer-tagline[b-pbaya20v1w] {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-top[b-pbaya20v1w] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom[b-pbaya20v1w] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
/* /Features/Hero/HeroSection.razor.rz.scp.css */
/* ═══════════════════════════════════════════
   HERO SECTION — V2 Design
   Split-screen layout with video panel
   ═══════════════════════════════════════════ */
.hero[b-nmzzhtr5j8] {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 72px;
    overflow: hidden;
}

/* ══════ LEFT: CONTENT ══════ */
.hero-content[b-nmzzhtr5j8] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 4rem 6rem 4rem;
    position: relative;
}

.hero-eyebrow[b-nmzzhtr5j8] {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-eyebrow span[b-nmzzhtr5j8] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ink);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 20px;
}

.hero-eyebrow span[b-nmzzhtr5j8]::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero-headline[b-nmzzhtr5j8] {
    font-family: var(--serif-display);
    font-size: clamp(3.2rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.35s forwards;
}

.hero-headline em[b-nmzzhtr5j8] {
    font-style: italic;
    color: var(--gold);
}

.hero-sub[b-nmzzhtr5j8] {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--ink-soft);
    max-width: 420px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-actions[b-nmzzhtr5j8] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.65s forwards;
}

.btn-primary[b-nmzzhtr5j8] {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--ink);
    color: var(--cream);
    padding: 0.85rem 2rem;
    border-radius: 2px;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: var(--sans);
    font-weight: 400;
    transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover[b-nmzzhtr5j8] {
    background: var(--gold);
    transform: translateY(-1px);
}

.btn-ghost[b-nmzzhtr5j8] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink-soft);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    border: 1px solid var(--ink);
    border-radius: 2px;
    padding: 0.85rem 1.6rem;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-ghost:hover[b-nmzzhtr5j8] {
    color: var(--cream);
    background: var(--ink);
    border-color: var(--ink);
}

.btn-ghost svg[b-nmzzhtr5j8] {
    transition: transform 0.2s;
}

.btn-ghost:hover svg[b-nmzzhtr5j8] {
    transform: translateX(3px);
}

.hero-stats[b-nmzzhtr5j8] {
    display: flex;
    gap: 2.5rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--cream-dark);
    opacity: 0;
    animation: fadeUp 0.9s ease 0.8s forwards;
}

.hero-stat-value[b-nmzzhtr5j8] {
    font-family: var(--serif-display);
    font-size: 2rem;
    font-weight: 500;
    color: var(--ink);
    display: block;
    letter-spacing: -0.02em;
}

.hero-stat-label[b-nmzzhtr5j8] {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 500;
}

/* ══════ RIGHT: VIDEO PANEL ══════ */
.hero-visual[b-nmzzhtr5j8] {
    position: relative;
    background: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video[b-nmzzhtr5j8] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-video.loaded[b-nmzzhtr5j8] {
    opacity: 1;
}

/* Gradient vignette overlay */
.hero-video-overlay[b-nmzzhtr5j8] {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 24, 20, 0.35) 0%, transparent 40%),
                linear-gradient(to top, rgba(26, 24, 20, 0.55) 0%, transparent 50%);
    z-index: 1;
}

/* Gold frame border */
.hero-video-frame[b-nmzzhtr5j8] {
    position: absolute;
    inset: 1.5rem;
    border: 1px solid rgba(184, 154, 106, 0.25);
    border-radius: 2px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease 0.5s;
}

.hero-video.loaded ~ .hero-video-frame[b-nmzzhtr5j8] {
    opacity: 1;
}

/* Loading shimmer */
.hero-video-loader[b-nmzzhtr5j8] {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    z-index: 3;
    transition: opacity 0.6s ease;
}

.hero-video-loader.hidden[b-nmzzhtr5j8] {
    opacity: 0;
    pointer-events: none;
}

.loader-gown[b-nmzzhtr5j8] {
    width: 48px;
    opacity: 0.3;
    animation: loaderPulse 2s ease-in-out infinite;
}

.loader-text[b-nmzzhtr5j8] {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.35);
}

/* Sound toggle button (top-right) */
.hero-sound-btn[b-nmzzhtr5j8] {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 5;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(250, 248, 244, 0.2);
    background: rgba(26, 24, 20, 0.45);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.hero-sound-btn:hover[b-nmzzhtr5j8] {
    border-color: rgba(184, 154, 106, 0.6);
    background: rgba(184, 154, 106, 0.15);
}

.hero-sound-btn svg[b-nmzzhtr5j8] {
    width: 14px;
    height: 14px;
    stroke: rgba(250, 248, 244, 0.75);
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.2s;
}

.hero-sound-btn:hover svg[b-nmzzhtr5j8] {
    stroke: var(--gold-light);
}

.hero-sound-btn.muted svg[b-nmzzhtr5j8] {
    stroke: rgba(250, 248, 244, 0.35);
}

/* Play/pause overlay */
.hero-play-overlay[b-nmzzhtr5j8] {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    cursor: pointer;
    background: transparent;
}

.hero-play-icon[b-nmzzhtr5j8] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(26, 24, 20, 0.55);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 154, 106, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.2s;
    pointer-events: none;
}

.hero-play-icon svg[b-nmzzhtr5j8] {
    width: 22px;
    height: 22px;
    fill: rgba(250, 248, 244, 0.92);
    margin-left: 3px; /* optical centering for play triangle */
    transition: fill 0.2s;
}

/* Show icon when paused */
.hero-play-overlay.paused .hero-play-icon[b-nmzzhtr5j8] {
    opacity: 1;
    transform: scale(1);
}

/* Flash icon briefly on state change */
.hero-play-icon.flash[b-nmzzhtr5j8] {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.hero-play-overlay:hover .hero-play-icon[b-nmzzhtr5j8] {
    border-color: var(--gold);
}

.hero-play-overlay:hover .hero-play-icon svg[b-nmzzhtr5j8] {
    fill: var(--gold-light);
}

/* ══════ RESPONSIVE ══════ */
@media (max-width: 900px) {
    .hero[b-nmzzhtr5j8] {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content[b-nmzzhtr5j8] {
        padding: 4rem 1.5rem 3rem;
    }

    .hero-visual[b-nmzzhtr5j8] {
        min-height: 380px;
    }

    .hero-stats[b-nmzzhtr5j8] {
        flex-direction: column;
        gap: 1.5rem;
    }
}
/* /Features/HowItWorks/HowItWorksSection.razor.rz.scp.css */
/* ═══════════════════════════════════════════
   HOW IT WORKS SECTION
   ═══════════════════════════════════════════ */

.steps-grid[b-urlyzw8fxg] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cream-dark);
    margin-top: 5rem;
    border: 1px solid var(--cream-dark);
}

.step[b-urlyzw8fxg] {
    background: var(--cream);
    padding: 3rem 2.5rem;
    position: relative;
    transition: background 0.3s;
}

.step:hover[b-urlyzw8fxg] {
    background: var(--white);
}

.step-number[b-urlyzw8fxg] {
    font-family: var(--serif-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.step:hover .step-number[b-urlyzw8fxg] {
    color: var(--gold-pale);
}

.step-icon[b-urlyzw8fxg] {
    width: 44px;
    height: 44px;
    background: var(--gold-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon svg[b-urlyzw8fxg] {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.step-title[b-urlyzw8fxg] {
    font-family: var(--serif-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.step-desc[b-urlyzw8fxg] {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
    .steps-grid[b-urlyzw8fxg] {
        grid-template-columns: 1fr;
        margin-top: 3rem;
    }

    .step[b-urlyzw8fxg] {
        padding: 2.5rem 2rem;
    }

    .step-number[b-urlyzw8fxg] {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}
/* /Features/Marquee/MarqueeStrip.razor.rz.scp.css */
/* ═══════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════ */
.marquee[b-3sw2ecwb9f] {
    background: var(--ink);
    overflow: hidden;
    padding: 1.25rem 0;
    position: relative;
}

.marquee-inner[b-3sw2ecwb9f] {
    display: flex;
    width: fit-content;
}

.marquee-content[b-3sw2ecwb9f] {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marquee 40s linear infinite;
    will-change: transform;
}

.marquee-item[b-3sw2ecwb9f] {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.65);
    font-weight: 400;
    white-space: nowrap;
}

.marquee-item .dot[b-3sw2ecwb9f] {
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.marquee-item span:not(.dot)[b-3sw2ecwb9f] {
    color: rgba(250, 248, 244, 0.75);
}

/* Pause animation on hover */
.marquee:hover .marquee-content[b-3sw2ecwb9f] {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 900px) {
    .marquee[b-3sw2ecwb9f] {
        padding: 1rem 0;
    }

    .marquee-item[b-3sw2ecwb9f] {
        font-size: 0.68rem;
        padding: 0 1.5rem;
    }
}
/* /Features/Navigation/Navbar.razor.rz.scp.css */
/* ═══════════════════════════════════════════
   NAVIGATION — V2 Design
   ═══════════════════════════════════════════ */
.nav[b-d9hatyp4gn] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4rem;
    height: 72px;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s ease;
}

.nav.scrolled[b-d9hatyp4gn] {
    border-bottom-color: var(--cream-dark);
}

.nav-inner[b-d9hatyp4gn] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo[b-d9hatyp4gn] {
    font-family: var(--serif-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--ink);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-logo:hover[b-d9hatyp4gn] {
    color: var(--gold);
}

.nav-logo-accent[b-d9hatyp4gn] {
    color: var(--gold);
}

.nav-links[b-d9hatyp4gn] {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a[b-d9hatyp4gn] {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover[b-d9hatyp4gn] {
    color: var(--ink);
}

.nav-cta[b-d9hatyp4gn] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ink);
    color: var(--cream) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    border: none;
    font-size: 0.75rem !important;
    font-weight: 400;
    letter-spacing: 0.14em !important;
    text-transform: uppercase;
    transition: background 0.2s !important;
    cursor: pointer;
    font-family: var(--sans);
}

.nav-cta:hover[b-d9hatyp4gn] {
    background: var(--gold) !important;
    color: var(--white) !important;
}

.mobile-toggle[b-d9hatyp4gn] {
    display: none;
    background: none;
    border: none;
    color: var(--ink);
    padding: 4px;
    cursor: pointer;
}

.mobile-menu[b-d9hatyp4gn] {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 899;
    background: var(--cream);
    padding: 100px 1.5rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.open[b-d9hatyp4gn] {
    display: flex;
}

.mobile-menu a[b-d9hatyp4gn] {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink);
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-cta-mobile[b-d9hatyp4gn] {
    margin-top: 1rem;
    background: var(--ink);
    color: var(--cream);
    padding: 0.85rem 2rem;
    border-radius: 2px;
    border: none;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--sans);
    transition: background 0.2s;
}

.nav-cta-mobile:hover[b-d9hatyp4gn] {
    background: var(--gold);
}

@media (max-width: 900px) {
    .nav[b-d9hatyp4gn] {
        padding: 0 1.5rem;
    }

    .nav-links[b-d9hatyp4gn] {
        display: none;
    }

    .mobile-toggle[b-d9hatyp4gn] {
        display: block;
    }
}
/* /Features/Pricing/PricingSection.razor.rz.scp.css */
/* ══════════════════════════════════════════════════════════
   PRICING SECTION - Scoped Styles
   ══════════════════════════════════════════════════════════ */

/* ── SECTION CONTAINER ── */
.pricing-section[b-j6ma6k1ilo] {
    padding: 8rem 4rem;
    background: var(--cream-mid);
    position: relative;
    overflow: hidden;
}

/* Subtle radial glow top-right */
.pricing-section[b-j6ma6k1ilo]::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
    opacity: 0.45;
    pointer-events: none;
}

.pricing-inner[b-j6ma6k1ilo] {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── SECTION EYEBROW ── */
.section-eyebrow[b-j6ma6k1ilo] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.section-eyebrow[b-j6ma6k1ilo]::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.section-eyebrow span[b-j6ma6k1ilo] {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ── HEADING BLOCK ── */
.pricing-heading[b-j6ma6k1ilo] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.pricing-title[b-j6ma6k1ilo] {
    font-family: var(--serif-display);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--ink);
}

.pricing-title em[b-j6ma6k1ilo] {
    font-style: italic;
    color: var(--gold);
}

.pricing-sub[b-j6ma6k1ilo] {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 340px;
    flex-shrink: 0;
}

/* ── BILLING INTERVAL SELECTOR ── */
.billing-selector[b-j6ma6k1ilo] {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--cream-dark);
    border-radius: 3px;
    padding: 3px;
    margin-bottom: 3.5rem;
    align-self: flex-start;
    border: 1px solid var(--cream-dark);
}

.interval-btn[b-j6ma6k1ilo] {
    padding: 0.45rem 1.2rem;
    border: none;
    background: transparent;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.interval-btn.active[b-j6ma6k1ilo] {
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 1px 4px rgba(26, 24, 20, 0.08);
}

.save-badge[b-j6ma6k1ilo] {
    display: inline-block;
    padding: 0.15rem 0.45rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
}

/* ── PRICING CARDS GRID ── */
.pricing-grid[b-j6ma6k1ilo] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cream-dark);
    border: 1px solid var(--cream-dark);
}

/* ── INDIVIDUAL CARD ── */
.plan-card[b-j6ma6k1ilo] {
    background: var(--cream);
    padding: 2.5rem 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: background 0.25s;
}

.plan-card:hover[b-j6ma6k1ilo] {
    background: var(--white);
}

/* ── EDITORIAL COLUMN (Card 3 Replacement) ── */
.editorial-column[b-j6ma6k1ilo] {
    background: var(--cream-mid);
    padding: 2.5rem 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.editorial-content[b-j6ma6k1ilo] {
    text-align: left;
    max-width: 100%;
}

.editorial-title[b-j6ma6k1ilo] {
    font-family: var(--serif-display);
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.editorial-title em[b-j6ma6k1ilo] {
    font-style: italic;
    color: var(--gold);
}

.editorial-desc[b-j6ma6k1ilo] {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

/* Featured card — Boutique */
.plan-card.featured[b-j6ma6k1ilo] {
    background: var(--ink);
}

.plan-card.featured:hover[b-j6ma6k1ilo] {
    background: #201e1a;
}

/* ── PLAN HEADER ── */
.plan-tag[b-j6ma6k1ilo] {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border: 1px solid var(--cream-dark);
    background: transparent;
    border-radius: 20px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 1.6rem;
    align-self: flex-start;
}

.plan-card.featured .plan-tag[b-j6ma6k1ilo] {
    border-color: rgba(184, 154, 106, 0.35);
    color: var(--gold-light);
    background: rgba(184, 154, 106, 0.08);
}

/* Most popular flag */
.plan-popular[b-j6ma6k1ilo] {
    position: absolute;
    top: 0;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--gold);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
}

.plan-popular[b-j6ma6k1ilo]::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

.plan-name[b-j6ma6k1ilo] {
    font-family: var(--serif-display);
    font-size: 1.65rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.plan-card.featured .plan-name[b-j6ma6k1ilo] {
    color: var(--cream);
}

.plan-desc[b-j6ma6k1ilo] {
    font-size: 0.82rem;
    color: var(--ink-muted);
    line-height: 1.55;
    margin-bottom: 2rem;
    min-height: 2.5rem;
}

.plan-card.featured .plan-desc[b-j6ma6k1ilo] {
    color: rgba(250, 248, 244, 0.5);
}

/* ── PRICING BLOCK ── */
.plan-price-block[b-j6ma6k1ilo] {
    padding: 1.5rem 0;
    border-top: 1px solid var(--cream-dark);
    border-bottom: 1px solid var(--cream-dark);
    margin-bottom: 2rem;
}

.plan-card.featured .plan-price-block[b-j6ma6k1ilo] {
    border-color: rgba(250, 248, 244, 0.1);
}

.plan-price[b-j6ma6k1ilo] {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    margin-bottom: 0.35rem;
}

.plan-currency[b-j6ma6k1ilo] {
    font-family: var(--serif-display);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--ink-soft);
    line-height: 1;
    padding-bottom: 0.4rem;
}

.plan-card.featured .plan-currency[b-j6ma6k1ilo] {
    color: rgba(250, 248, 244, 0.55);
}

.plan-amount[b-j6ma6k1ilo] {
    font-family: var(--serif-display);
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.02em;
    transition: opacity 0.2s;
}

.plan-card.featured .plan-amount[b-j6ma6k1ilo] {
    color: var(--cream);
}

.plan-cadence[b-j6ma6k1ilo] {
    font-size: 0.72rem;
    color: var(--ink-muted);
    letter-spacing: 0.06em;
    line-height: 1;
    padding-bottom: 0.35rem;
}

.plan-card.featured .plan-cadence[b-j6ma6k1ilo] {
    color: rgba(250, 248, 244, 0.4);
}

.plan-price-note[b-j6ma6k1ilo] {
    font-size: 0.72rem;
    color: var(--ink-muted);
    min-height: 1rem;
}

.plan-card.featured .plan-price-note[b-j6ma6k1ilo] {
    color: rgba(250, 248, 244, 0.35);
}

.plan-full-price[b-j6ma6k1ilo] {
    font-size: 0.75rem;
    color: var(--ink-muted);
    text-decoration: line-through;
    margin-bottom: 0.35rem;
}

.plan-card.featured .plan-full-price[b-j6ma6k1ilo] {
    color: rgba(250, 248, 244, 0.4);
}

/* Enterprise custom pricing */
.plan-price-custom[b-j6ma6k1ilo] {
    font-family: var(--serif-display);
    font-size: 2.4rem;
    font-weight: 300;
    font-style: italic;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.plan-discount-badge[b-j6ma6k1ilo] {
    margin-top: 0.5rem;
    padding: 0.4rem 0.7rem;
    background: var(--gold-pale);
    border-radius: 3px;
    font-size: 0.7rem;
    color: var(--ink);
}

.plan-card.featured .plan-discount-badge[b-j6ma6k1ilo] {
    background: rgba(184, 154, 106, 0.15);
    color: var(--gold-light);
}

/* ── FEATURES LIST ── */
.plan-features[b-j6ma6k1ilo] {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
    margin-bottom: 2.25rem;
}

.plan-feature[b-j6ma6k1ilo] {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.plan-card.featured .plan-feature[b-j6ma6k1ilo] {
    color: rgba(250, 248, 244, 0.7);
}

.plan-feature-check[b-j6ma6k1ilo] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Checkmark — default (cream cards) */
.plan-feature-check circle[b-j6ma6k1ilo] {
    fill: var(--gold-pale);
}

.plan-feature-check path[b-j6ma6k1ilo] {
    stroke: var(--gold);
}

/* Checkmark — featured (dark card) */
.plan-card.featured .plan-feature-check circle[b-j6ma6k1ilo] {
    fill: rgba(184, 154, 106, 0.2);
}

.plan-card.featured .plan-feature-check path[b-j6ma6k1ilo] {
    stroke: var(--gold-light);
}

/* Headline feature item (bold) */
.plan-feature.headline[b-j6ma6k1ilo] {
    padding: 0.6rem 0.7rem;
    background: var(--gold-pale);
    border-radius: 2px;
    margin-bottom: 0.15rem;
}

.plan-card.featured .plan-feature.headline[b-j6ma6k1ilo] {
    background: rgba(184, 154, 106, 0.12);
}

.plan-feature.headline .plan-feature-text[b-j6ma6k1ilo] {
    font-weight: 500;
    color: var(--ink);
}

.plan-card.featured .plan-feature.headline .plan-feature-text[b-j6ma6k1ilo] {
    color: var(--cream);
}

.plan-feature-text strong[b-j6ma6k1ilo] {
    font-weight: 500;
    color: var(--ink);
}

.plan-card.featured .plan-feature-text strong[b-j6ma6k1ilo] {
    color: var(--cream);
}

/* Divider between inherited and new features */
.plan-feature-divider[b-j6ma6k1ilo] {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-muted);
    padding-top: 0.3rem;
    border-top: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-card.featured .plan-feature-divider[b-j6ma6k1ilo] {
    color: rgba(250, 248, 244, 0.3);
    border-color: rgba(250, 248, 244, 0.1);
}

.plan-feature-divider[b-j6ma6k1ilo]::after {
    content: '';
    flex: 1;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
}

/* ── CTA BUTTON ── */
.plan-cta[b-j6ma6k1ilo] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.15s;
    border: 1px solid transparent;
    margin-top: auto;
}

/* Standard cards: outlined ink button */
.plan-cta-outline[b-j6ma6k1ilo] {
    background: transparent;
    color: var(--ink);
    border-color: var(--cream-dark);
}

.plan-cta-outline:hover[b-j6ma6k1ilo] {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
    transform: translateY(-1px);
}

/* Featured card: gold-tinted solid */
.plan-cta-featured[b-j6ma6k1ilo] {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.plan-cta-featured:hover[b-j6ma6k1ilo] {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
}

/* Enterprise card: ghost ink */
.plan-cta-ghost[b-j6ma6k1ilo] {
    background: transparent;
    color: var(--ink-soft);
    border-color: var(--cream-dark);
}

.plan-cta-ghost:hover[b-j6ma6k1ilo] {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
    transform: translateY(-1px);
}

/* ── TRUST STRIP ── */
.pricing-trust[b-j6ma6k1ilo] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pricing-trust-item[b-j6ma6k1ilo] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.pricing-trust-item svg[b-j6ma6k1ilo] {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

/* ── FOOTNOTE ── */
.pricing-footnote[b-j6ma6k1ilo] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream-dark);
    flex-wrap: wrap;
}

.pricing-footnote p[b-j6ma6k1ilo] {
    font-size: 0.75rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

.pricing-footnote-links[b-j6ma6k1ilo] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.pricing-footnote-links a[b-j6ma6k1ilo] {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.pricing-footnote-links a:hover[b-j6ma6k1ilo] {
    color: var(--gold);
}

/* ── LOADING SKELETON ── */
.pricing-skeleton[b-j6ma6k1ilo] {
    padding: 2rem 0;
}

.skeleton-header[b-j6ma6k1ilo] {
    height: 80px;
    background: var(--cream-dark);
    border-radius: 4px;
    margin-bottom: 2rem;
    animation: shimmer-b-j6ma6k1ilo 1.5s ease-in-out infinite;
}

.skeleton-toggle[b-j6ma6k1ilo] {
    height: 45px;
    width: 300px;
    background: var(--cream-dark);
    border-radius: 3px;
    margin-bottom: 3rem;
    animation: shimmer-b-j6ma6k1ilo 1.5s ease-in-out infinite;
}

.skeleton-grid[b-j6ma6k1ilo] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cream-dark);
    border: 1px solid var(--cream-dark);
}

.skeleton-card[b-j6ma6k1ilo] {
    background: var(--cream);
    height: 600px;
    animation: shimmer-b-j6ma6k1ilo 1.5s ease-in-out infinite;
}

@keyframes shimmer-b-j6ma6k1ilo {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ── ERROR STATE (ENHANCED) ── */
.pricing-error[b-j6ma6k1ilo] {
    text-align: center;
    padding: 4rem 4rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Error Eyebrow */
.error-eyebrow[b-j6ma6k1ilo] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.error-eyebrow[b-j6ma6k1ilo]::before,
.error-eyebrow[b-j6ma6k1ilo]::after {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.error-eyebrow span[b-j6ma6k1ilo] {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Error Icon */
.error-icon[b-j6ma6k1ilo] {
    margin-bottom: 2rem;
    color: var(--gold);
    opacity: 0.6;
}

.error-icon svg[b-j6ma6k1ilo] {
    display: inline-block;
}

/* Error Title */
.error-title[b-j6ma6k1ilo] {
    font-family: var(--serif-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

.error-title em[b-j6ma6k1ilo] {
    font-style: italic;
    color: var(--gold);
}

/* Error Message */
.error-message[b-j6ma6k1ilo] {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* Error Actions */
.error-actions[b-j6ma6k1ilo] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

/* Retry Button */
.error-retry-btn[b-j6ma6k1ilo] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: var(--ink);
    color: var(--cream);
    border: 1px solid var(--ink);
    cursor: pointer;
    transition: background 0.22s, transform 0.15s, box-shadow 0.22s;
}

.error-retry-btn:hover[b-j6ma6k1ilo] {
    background: var(--ink-soft);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 24, 20, 0.15);
}

.error-retry-btn svg[b-j6ma6k1ilo] {
    flex-shrink: 0;
}

/* Contact Link */
.error-contact-link[b-j6ma6k1ilo] {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-muted);
    text-decoration: none;
    transition: color 0.2s;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.error-contact-link:hover[b-j6ma6k1ilo] {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Help Text */
.error-help-text[b-j6ma6k1ilo] {
    font-size: 0.8rem;
    color: var(--ink-muted);
    line-height: 1.6;
    padding-top: 2rem;
    border-top: 1px solid var(--cream-dark);
    max-width: 480px;
    margin: 0 auto;
}

.error-email-link[b-j6ma6k1ilo] {
    color: var(--gold);
    text-decoration: none;
    transition: opacity 0.2s;
}

.error-email-link:hover[b-j6ma6k1ilo] {
    opacity: 0.8;
    text-decoration: underline;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .pricing-section[b-j6ma6k1ilo] {
        padding: 5rem 1.5rem;
    }

    .pricing-grid[b-j6ma6k1ilo] {
        grid-template-columns: 1fr;
    }

    .skeleton-grid[b-j6ma6k1ilo] {
        grid-template-columns: 1fr;
    }

    .plan-card.featured[b-j6ma6k1ilo] {
        order: -1;
    }

    .pricing-heading[b-j6ma6k1ilo] {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-sub[b-j6ma6k1ilo] {
        max-width: 100%;
    }

    .billing-selector[b-j6ma6k1ilo] {
        flex-direction: column;
        width: 100%;
    }

    .interval-btn[b-j6ma6k1ilo] {
        width: 100%;
        justify-content: center;
    }

    .pricing-trust[b-j6ma6k1ilo] {
        gap: 1.5rem;
    }

    .pricing-footnote[b-j6ma6k1ilo] {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-error[b-j6ma6k1ilo] {
        padding: 3rem 2rem;
    }

    .error-actions[b-j6ma6k1ilo] {
        flex-direction: column;
        gap: 1rem;
    }

    .error-retry-btn[b-j6ma6k1ilo],
    .error-contact-link[b-j6ma6k1ilo] {
        width: 100%;
    }

    .error-retry-btn[b-j6ma6k1ilo] {
        justify-content: center;
    }

    .error-contact-link[b-j6ma6k1ilo] {
        text-align: center;
    }
}
/* /Features/SignupModal/SignupModal.razor.rz.scp.css */
/* ── SIGNUP MODAL ── */
.modal-overlay[b-w9k5sgh0al] {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(26, 24, 20, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.open[b-w9k5sgh0al] {
    opacity: 1;
    visibility: visible;
}

.modal[b-w9k5sgh0al] {
    background: var(--cream);
    border-radius: 4px;
    border: 1px solid var(--cream-dark);
    box-shadow: 0 32px 80px rgba(26, 24, 20, 0.18);
    width: 100%;
    max-width: 460px;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.modal-overlay.open .modal[b-w9k5sgh0al] {
    transform: translateY(0) scale(1);
}

/* Gold top bar */
.modal-bar[b-w9k5sgh0al] {
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.modal-inner[b-w9k5sgh0al] {
    padding: 2.5rem 2.5rem 2rem;
}

.modal-close[b-w9k5sgh0al] {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--cream-mid);
    border: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.modal-close:hover[b-w9k5sgh0al] {
    background: var(--cream-dark);
    border-color: var(--ink-muted);
}

.modal-close svg[b-w9k5sgh0al] {
    width: 14px;
    height: 14px;
    stroke: var(--ink-soft);
    stroke-width: 2;
    fill: none;
}

/* Step dots */
.modal-steps[b-w9k5sgh0al] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.modal-step-dot[b-w9k5sgh0al] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cream-dark);
    transition: background 0.3s, width 0.3s;
}

.modal-step-dot.active[b-w9k5sgh0al] {
    background: var(--gold);
    width: 20px;
    border-radius: 4px;
}

.modal-step-dot.done[b-w9k5sgh0al] {
    background: var(--gold-light);
}

/* Step panels */
.modal-step[b-w9k5sgh0al] {
    display: none;
}

.modal-step.active[b-w9k5sgh0al] {
    display: block;
}

/* Brand mark inside modal */
.modal-brand[b-w9k5sgh0al] {
    font-family: var(--serif-display);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: var(--ink);
    margin-bottom: 1.4rem;
}

.modal-brand span[b-w9k5sgh0al] {
    color: var(--gold);
}

.modal-title[b-w9k5sgh0al] {
    font-family: var(--serif-display);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 0.6rem;
}

.modal-title em[b-w9k5sgh0al] {
    font-style: italic;
    color: var(--gold);
}

.modal-subtitle[b-w9k5sgh0al] {
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.65;
    margin-bottom: 1.8rem;
}

/* Form elements */
.modal-form[b-w9k5sgh0al] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group[b-w9k5sgh0al] {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label[b-w9k5sgh0al] {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.form-input[b-w9k5sgh0al],
.form-select[b-w9k5sgh0al] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

.form-input[b-w9k5sgh0al]::placeholder {
    color: var(--ink-muted);
}

.form-input:focus[b-w9k5sgh0al],
.form-select:focus[b-w9k5sgh0al] {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 154, 106, 0.12);
}

.form-input.error[b-w9k5sgh0al] {
    border-color: #c0392b;
}

.form-select-wrap[b-w9k5sgh0al] {
    position: relative;
}

.form-select-wrap[b-w9k5sgh0al]::after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--ink-muted);
    pointer-events: none;
}

.form-error[b-w9k5sgh0al] {
    font-size: 0.72rem;
    color: #c0392b;
    display: none;
}

.form-error.show[b-w9k5sgh0al] {
    display: block;
}

.form-hint[b-w9k5sgh0al] {
    font-size: 0.72rem;
    color: var(--ink-muted);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.form-hint svg[b-w9k5sgh0al] {
    width: 11px;
    height: 11px;
    stroke: var(--ink-muted);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

/* Modal submit button */
.modal-btn[b-w9k5sgh0al] {
    width: 100%;
    padding: 0.9rem;
    background: var(--ink);
    color: var(--cream);
    border: none;
    border-radius: 2px;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-btn:hover[b-w9k5sgh0al] {
    background: var(--gold);
}

.modal-btn.loading[b-w9k5sgh0al] {
    background: var(--gold);
    pointer-events: none;
}

.modal-btn.loading[b-w9k5sgh0al]::after {
    content: '';
    width: 14px;
    height: 14px;
    border: 2px solid rgba(250, 248, 244, 0.3);
    border-top-color: var(--cream);
    border-radius: 50%;
    animation: spin-b-w9k5sgh0al 0.7s linear infinite;
}

@keyframes spin-b-w9k5sgh0al {
    to {
        transform: rotate(360deg);
    }
}

.modal-terms[b-w9k5sgh0al] {
    font-size: 0.68rem;
    color: var(--ink-muted);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

.modal-terms a[b-w9k5sgh0al] {
    color: var(--gold);
    text-decoration: none;
}

.modal-terms a:hover[b-w9k5sgh0al] {
    text-decoration: underline;
}

/* ── OTP Step ── */
.otp-email-display[b-w9k5sgh0al] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold-pale);
    border: 1px solid var(--cream-dark);
    border-radius: 20px;
    padding: 0.3rem 0.9rem;
    font-size: 0.78rem;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
}

.otp-email-display svg[b-w9k5sgh0al] {
    width: 11px;
    height: 11px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.otp-inputs[b-w9k5sgh0al] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    justify-content: center;
}

.otp-input[b-w9k5sgh0al] {
    width: 44px;
    height: 52px;
    flex-shrink: 0;
    text-align: center;
    font-family: var(--serif-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--cream-dark);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    caret-color: var(--gold);
}

.otp-input:focus[b-w9k5sgh0al] {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 154, 106, 0.12);
}

.otp-input.error[b-w9k5sgh0al] {
    border-color: #c0392b;
}

.otp-error[b-w9k5sgh0al] {
    font-size: 0.72rem;
    color: #c0392b;
    min-height: 1.2em;
    margin-bottom: 0.5rem;
}

.otp-resend[b-w9k5sgh0al] {
    font-size: 0.78rem;
    color: var(--ink-muted);
    text-align: center;
    margin-top: 0.5rem;
}

.otp-resend button[b-w9k5sgh0al] {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gold);
    font-size: 0.78rem;
    font-family: var(--sans);
    text-decoration: underline;
    padding: 0;
}

.otp-resend button:disabled[b-w9k5sgh0al] {
    color: var(--ink-muted);
    text-decoration: none;
    cursor: default;
}

.modal-back[b-w9k5sgh0al] {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.modal-back:hover[b-w9k5sgh0al] {
    color: var(--ink);
}

.modal-back svg[b-w9k5sgh0al] {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ── Success Step ── */
.modal-success-icon[b-w9k5sgh0al] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.modal-success-icon svg[b-w9k5sgh0al] {
    width: 26px;
    height: 26px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
}

.modal-success-title[b-w9k5sgh0al] {
    font-family: var(--serif-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--ink);
    text-align: center;
    margin-bottom: 0.6rem;
}

.modal-success-title em[b-w9k5sgh0al] {
    font-style: italic;
    color: var(--gold);
}

.modal-success-msg[b-w9k5sgh0al] {
    font-size: 0.88rem;
    color: var(--ink-soft);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.countdown-timer[b-w9k5sgh0al] {
    display: inline-block;
    font-weight: 600;
    color: var(--gold);
    font-family: var(--mono);
    font-size: 1em;
    padding: 0.1rem 0.3rem;
    background: var(--gold-pale);
    border-radius: 3px;
}

.modal-fallback-msg[b-w9k5sgh0al] {
    font-size: 0.8rem;
    color: var(--ink-muted);
    text-align: center;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.fallback-link[b-w9k5sgh0al] {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}

.fallback-link:hover[b-w9k5sgh0al] {
    color: var(--gold-dark);
}
/* /Features/Testimonials/TestimonialsSection.razor.rz.scp.css */
/* ═══════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════ */

.testimonials[b-vlgmsgmedo] {
    background: var(--ink);
    padding: 8rem 4rem;
}

.testimonials .section-eyebrow[b-vlgmsgmedo]::before {
    background: var(--gold);
}

.testimonials .section-eyebrow span[b-vlgmsgmedo] {
    color: var(--gold);
}

.testimonials .section-title[b-vlgmsgmedo] {
    color: var(--cream);
}

.testimonials .section-title em[b-vlgmsgmedo] {
    color: var(--gold-light);
}

.quotes-grid[b-vlgmsgmedo] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(250, 248, 244, 0.08);
    border: 1px solid rgba(250, 248, 244, 0.08);
    margin-top: 4rem;
}

.quote-card[b-vlgmsgmedo] {
    background: var(--ink);
    padding: 3rem 2.5rem;
    transition: background 0.3s;
}

.quote-card:hover[b-vlgmsgmedo] {
    background: rgba(250, 248, 244, 0.04);
}

.quote-stars[b-vlgmsgmedo] {
    display: flex;
    gap: 3px;
    margin-bottom: 1.5rem;
}

.quote-stars span[b-vlgmsgmedo] {
    font-size: 0.7rem;
    color: var(--gold);
}

.quote-text[b-vlgmsgmedo] {
    font-family: var(--serif-display);
    font-size: 1.15rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(250, 248, 244, 0.85);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.quote-author[b-vlgmsgmedo] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quote-avatar[b-vlgmsgmedo] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif-display);
    font-size: 0.85rem;
    color: var(--gold);
}

.quote-name[b-vlgmsgmedo] {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(250, 248, 244, 0.7);
    display: block;
}

.quote-location[b-vlgmsgmedo] {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 248, 244, 0.55);
}

/* Responsive */
@media (max-width: 900px) {
    .testimonials[b-vlgmsgmedo] {
        padding: 5rem 1.5rem;
    }

    .quotes-grid[b-vlgmsgmedo] {
        grid-template-columns: 1fr;
        margin-top: 3rem;
    }

    .quote-card[b-vlgmsgmedo] {
        padding: 2.5rem 2rem;
    }

    .quote-text[b-vlgmsgmedo] {
        font-size: 1.05rem;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* MainLayout - No custom styles needed for single-page layout */
