/* /Features/Downloads/DownloadPill.razor.rz.scp.css */
.split-pill-container[b-9ajgxdjmat] {
    position: relative;
    display: flex;
    align-items: stretch;
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.split-pill-container:hover[b-9ajgxdjmat] {
    border-color: rgba(255, 255, 255, 0.2);
    background: var(--surface-strong);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
}

.pill-main-action[b-9ajgxdjmat] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.5rem 1rem 2rem;
    text-decoration: none;
    border-right: 1px solid var(--border);
    transition: all 0.2s;
    border-radius: 999px 0 0 999px;
    flex: 1; /* Grow to fill space */
    min-width: 0;
}

.single-pill .pill-main-action[b-9ajgxdjmat] {
    border-right: none;
    border-radius: 999px;
}

.pill-main-action:hover[b-9ajgxdjmat] {
    background: rgba(255, 255, 255, 0.03);
}

.pill-icon[b-9ajgxdjmat] {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pill-text-wrap[b-9ajgxdjmat] {
    display: flex;
    flex-direction: column;
    text-align: left;
    min-width: 0;
}

.pill-main-text[b-9ajgxdjmat] {
    color: var(--text-strong);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pill-sub-text[b-9ajgxdjmat] {
    color: var(--muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pill-arrow[b-9ajgxdjmat] {
    color: var(--accent);
    opacity: 0.6;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.pill-main-action:hover .pill-arrow[b-9ajgxdjmat] {
    transform: translateY(2px);
    opacity: 1;
}

.pill-split-trigger-wrap[b-9ajgxdjmat] {
    position: relative;
    display: flex;
    align-items: stretch;
    flex-shrink: 0; /* Don't shrink the trigger part */
}

.pill-split-trigger[b-9ajgxdjmat] {
    background: transparent;
    border: none;
    padding: 0 1.5rem;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    border-radius: 0 999px 999px 0;
}

/* CSS-based Hover Dropdown */
.pill-split-trigger-wrap:hover ~ .pill-dropdown-menu[b-9ajgxdjmat],
.pill-dropdown-menu:hover[b-9ajgxdjmat] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    visibility: visible;
    transition-delay: 0s;
}

.pill-split-trigger:hover[b-9ajgxdjmat] {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
}

/* Dropdown Menu */
.pill-dropdown-menu[b-9ajgxdjmat] {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 320px;
    background: transparent; /* Make base transparent to include padding in hover */
    border-radius: var(--radius-lg);
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0s linear 0.4s;
    pointer-events: none;
    padding-top: 0.5rem; /* Use padding instead of margin */
}

/* The actual visible content container */
.pill-dropdown-menu[b-9ajgxdjmat]::after {
    content: "";
    position: absolute;
    top: 0.5rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: #111114;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    z-index: -1;
}

/* Create a robust transparent bridge to maintain hover */
.pill-dropdown-menu[b-9ajgxdjmat]::before {
    content: "";
    position: absolute;
    top: -2rem; /* Significant overlap with trigger */
    left: -10rem; /* Massive horizontal buffer */
    right: -10rem;
    height: calc(100% + 10rem); /* Massive vertical buffer */
    background: transparent;
    pointer-events: all;
    z-index: -1;
}

/* Ensure items are above the background pseudo-element */
.dropdown-item[b-9ajgxdjmat] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    text-decoration: none;
    transition: all 0.2s;
    border-bottom: 1px solid var(--border);
}

.dropdown-item:last-child[b-9ajgxdjmat] { border-bottom: none; }

.dropdown-item:hover[b-9ajgxdjmat] {
    background: var(--surface-strong);
}

.item-icon[b-9ajgxdjmat] { 
    font-size: 1.25rem; 
    filter: grayscale(1) opacity(0.7);
    transition: filter 0.2s;
}

.dropdown-item:hover .item-icon[b-9ajgxdjmat] {
    filter: none;
}

.item-text[b-9ajgxdjmat] { display: flex; flex-direction: column; gap: 0.1rem; }
.item-title[b-9ajgxdjmat] { color: var(--text-strong); font-weight: 700; font-size: 0.95rem; }
.item-desc[b-9ajgxdjmat] { color: var(--muted); font-size: 0.75rem; line-height: 1.3; }

@media (max-width: 768px) {
    .split-pill-container[b-9ajgxdjmat] {
        width: 100%;
        max-width: 450px;
    }
    
    .pill-main-action[b-9ajgxdjmat] {
        padding: 0.75rem 1rem 0.75rem 1.5rem;
        gap: 0.75rem;
    }
    
    .pill-main-text[b-9ajgxdjmat] { font-size: 1rem; }
    .pill-sub-text[b-9ajgxdjmat] { font-size: 0.6rem; }
    .pill-icon[b-9ajgxdjmat] { font-size: 1.25rem; }
    
    .pill-dropdown-menu[b-9ajgxdjmat] { 
        width: 100%;
        min-width: 0;
        right: 0;
    }

    .pill-dropdown-menu[b-9ajgxdjmat]::before {
        left: 0;
        right: 0;
    }
}
/* /Features/Downloads/DownloadsSection.razor.rz.scp.css */
.professional-resources[b-6246oavszp] {
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.layout-root[b-uryt8ax4fq] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-uryt8ax4fq] {
    flex: 1;
}

#blazor-error-ui[b-uryt8ax4fq] {
    background: #b32121;
    color: white;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-uryt8ax4fq] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

#blazor-error-ui a[b-uryt8ax4fq] {
    color: white;
    text-decoration: underline;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.nav-shell[b-gnh4pji4yd] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

@media (min-width: 1024px) {
    .nav-shell[b-gnh4pji4yd] {
        padding: 1rem clamp(1rem, 4vw, 3rem);
    }
}

.brand[b-gnh4pji4yd] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-text[b-gnh4pji4yd] {
    display: flex;
    flex-direction: column;
}

.brand-mark[b-gnh4pji4yd] {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.brand-name[b-gnh4pji4yd] {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-strong);
    line-height: 1;
}

/* Nav Links */
.nav-links[b-gnh4pji4yd] {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .nav-links[b-gnh4pji4yd] {
        gap: 2rem;
    }
}

.nav-links a[b-gnh4pji4yd] {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover[b-gnh4pji4yd] {
    color: var(--accent);
}

.nav-links a.active[b-gnh4pji4yd] {
    color: var(--accent);
    background: var(--accent-glow);
}

.nav-cta[b-gnh4pji4yd] {
    padding: 0.6rem 1.25rem !important;
    font-size: 0.9rem !important;
    color: white !important;
    width: auto !important;
}
/* /Portfolio/Components/Portfolio.razor.rz.scp.css */
.core-products[b-eo222cgfeu] {
    margin-bottom: 3rem;
}

.core-products-grid[b-eo222cgfeu] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .core-products-grid[b-eo222cgfeu] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .core-products-grid[b-eo222cgfeu] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2.5rem;
    }
}
/* /Portfolio/Components/PricingCard.razor.rz.scp.css */
.pricing-card[b-dmfttckrm8] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    display: grid;
    gap: 1rem;
    min-width: 0;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.popular[b-dmfttckrm8] {
    border-color: var(--accent);
    background: var(--surface-strong);
}

.pricing-card:hover[b-dmfttckrm8] {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}

.pricing-card h3[b-dmfttckrm8] {
    margin: 0;
    font-size: 1.5rem;
}

.pricing-card .accent-text[b-dmfttckrm8] {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .pricing-card[b-dmfttckrm8] {
        padding: 2rem;
    }
}

.pricing-card-badge[b-dmfttckrm8] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--accent);
    border-radius: 999px;
    background: var(--surface-strong);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
}
/* /Portfolio/Components/PricingTeaser.razor.rz.scp.css */
.pricing-teaser[b-g6vwmuxqnp] {
    margin-bottom: 3rem;
}

.pricing-teaser-grid[b-g6vwmuxqnp] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .pricing-teaser-grid[b-g6vwmuxqnp] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .pricing-teaser-grid[b-g6vwmuxqnp] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2.5rem;
    }
}
/* /Portfolio/Components/ProductCard.razor.rz.scp.css */
.product-card[b-kq9jaownua] {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: all 0.3s ease;
    overflow: hidden;
    min-width: 0;
    position: relative;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    row-gap: 0.75rem;
    min-height: 100%;
    text-align: center;
    align-items: start;
}

@media (min-width: 768px) {
    .product-card[b-kq9jaownua] {
        padding: 2rem;
    }
}

.product-card:hover[b-kq9jaownua] {
    border-color: var(--border-strong);
    background: var(--surface-strong);
    transform: translateY(-4px);
}

.product-card h3.display[b-kq9jaownua] {
    margin: 0;
}

.product-card[b-kq9jaownua]  a {
    display: flex;
    justify-content: center;
}
.product-card[b-kq9jaownua]  img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-top: 2.5rem;
}

.product-card p[b-kq9jaownua] {
    margin: 0;
}

.product-card > div:not(.product-card-footer)[b-kq9jaownua] {
    margin: 0;
}

.product-card-footer[b-kq9jaownua] {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0 0 0;
}


/*::deep .container*/
/*{*/
/*    height: 2300px;*/
/*    width: 1500px;*/
/*}*/ 
/* /Portfolio/Components/ProductCardCallToAction.razor.rz.scp.css */
.product-card-call-to-action[b-bbdf4mjbap] {
    margin-top: 2rem;
}
/* /Portfolio/Pages/PortfolioContents.razor.rz.scp.css */
.products-page-core[b-wnfmworz5t] {
    animation-delay: 0.3s;
}

.products-page-pricing[b-wnfmworz5t] {
    animation-delay: 0.7s;
}
/* /Shared/HeroSectionText.razor.rz.scp.css */

.headline[b-ha2dx67623]
{
    line-height: 1;
}

/* keeps the terminal part aligned with the H1 text */
[b-ha2dx67623] .terminal
{
    font-family: monospace;
    font-size: 1em;          /* match h1 exactly */
    line-height: 1;
    vertical-align: baseline;
}

/* blinking */
@keyframes blink-b-ha2dx67623
{
    50%
    {
        opacity: 0;
    }
}

/* replace the underscore glyph look with a real cursor bar */
[b-ha2dx67623] .cursor
{

    display: inline-block;
    width: 0.6em;
    height: 0.12em;
    background: currentColor;

    /* this is the key alignment fix */
    position: relative;
    top: 0.75em;

    animation: blink-b-ha2dx67623 1s steps(2, start) infinite;

    margin-left: 0.05em;  /* push it right */

    /* soften visibility */
    opacity: 0.7;

    /* prevents it from competing with gradient text */
    filter: brightness(0.9);
}
