.baza-hero-parallax--active-intro {
    --baza-hero-start-preview-width: clamp(19rem, 28vw, 32rem);
    --baza-hero-start-preview-height: clamp(15rem, 23vw, 24rem);
}

.baza-hero-parallax--active-intro .baza-hero-parallax__inner {
    grid-template-columns: 1fr;
    min-height: clamp(34rem, 64vw, 52rem);
    justify-items: center;
    gap: var(--baza-spacing-xl);
    text-align: center;
}

.baza-hero-parallax--active-intro .baza-hero-parallax__content,
.baza-hero-parallax--active-intro .baza-hero-parallax__path-content {
    max-width: min(100%, 54rem);
    justify-items: center;
}

.baza-hero-parallax--active-intro .baza-hero-parallax__eyebrow {
    color: color-mix(in srgb, var(--baza-color-accent-contrast) 74%, transparent);
}

.baza-hero-parallax--active-intro .baza-hero-parallax__heading {
    color: var(--baza-color-accent-contrast);
    text-shadow: 0 1rem 3rem color-mix(in srgb, var(--baza-color-text-primary) 30%, transparent);
}

.baza-hero-parallax--active-intro .baza-hero-parallax__lead {
    max-width: 44rem;
    color: color-mix(in srgb, var(--baza-color-accent-contrast) 78%, transparent);
}

.baza-hero-parallax--active-intro .baza-hero-parallax__actions,
.baza-hero-parallax--active-intro .baza-hero-parallax__visual,
.baza-hero-parallax--active-intro .baza-hero-parallax__arc {
    display: none;
}

.baza-hero-parallax__start-stage {
    display: none;
}

.baza-hero-parallax--active-intro .baza-hero-parallax__start-stage {
    position: relative;
    display: grid;
    width: min(100% - (var(--baza-layout-page-gutter) * 2), 86rem);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: var(--baza-spacing-md);
    perspective: 1200px;
}

.baza-hero-parallax__start-preview {
    position: relative;
    box-sizing: border-box;
    display: block;
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-align: left;
    transform: translateY(0) rotateY(var(--baza-hero-start-preview-rotate-y, 0deg)) rotateZ(var(--baza-hero-start-preview-rotate-z, 0deg));
    transform-style: preserve-3d;
    transition:
        filter 220ms ease,
        opacity 220ms ease,
        transform 220ms ease;
}

.baza-hero-parallax__start-preview:nth-child(1) {
    --baza-hero-start-preview-rotate-y: -10deg;
    --baza-hero-start-preview-rotate-z: -1.5deg;
}

.baza-hero-parallax__start-preview:nth-child(2) {
    --baza-hero-start-preview-rotate-y: -3deg;
    --baza-hero-start-preview-rotate-z: 0.5deg;
}

.baza-hero-parallax__start-preview:nth-child(3) {
    --baza-hero-start-preview-rotate-y: 3deg;
    --baza-hero-start-preview-rotate-z: -0.5deg;
}

.baza-hero-parallax__start-preview:nth-child(4) {
    --baza-hero-start-preview-rotate-y: 10deg;
    --baza-hero-start-preview-rotate-z: 1.5deg;
}

.baza-hero-parallax__start-preview:hover,
.baza-hero-parallax__start-preview:focus-visible {
    z-index: 3;
    outline: 0;
    transform: translateY(-0.5rem) rotateY(0deg) rotateZ(0deg) scale(1.045);
}

.baza-hero-parallax__start-preview:focus-visible .baza-hero-parallax__start-browser {
    outline: 2px solid color-mix(in srgb, var(--baza-color-accent-primary) 70%, var(--baza-color-accent-contrast) 30%);
    outline-offset: 5px;
}

.baza-hero-parallax__start-browser {
    position: relative;
    box-sizing: border-box;
    display: grid;
    min-height: var(--baza-hero-start-preview-height);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--baza-color-accent-contrast) 24%, transparent);
    border-radius: clamp(1.1rem, 1.8vw, 1.7rem);
    background: color-mix(in srgb, var(--baza-color-accent-contrast) 88%, var(--baza-color-background-muted) 12%);
    box-shadow:
        0 1.25rem 3.2rem color-mix(in srgb, var(--baza-color-text-primary) 30%, transparent),
        inset 0 1px 0 color-mix(in srgb, var(--baza-color-accent-contrast) 42%, transparent);
    transition:
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.baza-hero-parallax__start-preview:hover .baza-hero-parallax__start-browser,
.baza-hero-parallax__start-preview:focus-visible .baza-hero-parallax__start-browser {
    border-color: color-mix(in srgb, var(--baza-color-accent-primary) 60%, var(--baza-color-accent-contrast) 40%);
    box-shadow:
        0 0 0 0.3rem color-mix(in srgb, var(--baza-color-accent-primary) 12%, transparent),
        0 1.6rem 3.8rem color-mix(in srgb, var(--baza-color-accent-primary) 24%, transparent),
        inset 0 1px 0 color-mix(in srgb, var(--baza-color-accent-contrast) 46%, transparent);
}

.baza-hero-parallax__start-browser-topbar {
    position: relative;
    display: flex;
    min-height: 2.25rem;
    align-items: center;
    gap: 0.6rem;
    padding: 0.42rem 0.72rem;
    background: color-mix(in srgb, var(--baza-color-background-muted) 70%, #ffffff 30%);
}

.baza-hero-parallax__start-browser-dots {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 0.32rem;
}

.baza-hero-parallax__start-browser-dots span {
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--baza-color-text-primary) 28%, transparent);
}

.baza-hero-parallax__start-url {
    display: inline-flex;
    max-width: 72%;
    padding: 0.3rem 0.62rem;
    overflow: hidden;
    border-radius: 999px;
    background: color-mix(in srgb, var(--baza-color-text-primary) 8%, transparent);
    color: color-mix(in srgb, var(--baza-color-text-primary) 58%, transparent);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.baza-hero-parallax__start-page {
    display: grid;
    min-height: calc(var(--baza-hero-start-preview-height) - 2.25rem);
    padding: clamp(0.75rem, 1.3vw, 1.15rem);
    gap: clamp(0.6rem, 1vw, 0.9rem);
    background:
        radial-gradient(circle at 72% 22%, color-mix(in srgb, var(--baza-color-accent-primary) 20%, transparent), transparent 38%),
        linear-gradient(135deg, #fbfaf5 0%, color-mix(in srgb, var(--baza-color-accent-soft) 12%, #eef3ea 88%) 100%);
    color: var(--baza-color-text-primary);
}

.baza-hero-parallax__start-preview--signature .baza-hero-parallax__start-page {
    background:
        radial-gradient(circle at 76% 18%, color-mix(in srgb, var(--baza-color-accent-primary) 22%, transparent), transparent 40%),
        linear-gradient(135deg, #fbfaf6 0%, #eef2ee 100%);
}

.baza-hero-parallax__start-preview--atelier .baza-hero-parallax__start-page {
    background:
        radial-gradient(circle at 74% 28%, color-mix(in srgb, var(--baza-color-accent-primary) 24%, transparent), transparent 38%),
        linear-gradient(135deg, #101b25 0%, #213344 100%);
    color: var(--baza-color-accent-contrast);
}

.baza-hero-parallax__start-preview--custom .baza-hero-parallax__start-page {
    background:
        radial-gradient(circle at 72% 18%, color-mix(in srgb, var(--baza-color-accent-primary) 20%, transparent), transparent 38%),
        linear-gradient(135deg, #f9f7ef 0%, #e8eee7 100%);
}

.baza-hero-parallax__start-page-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 0.45rem 0.55rem;
    border-radius: 0.8rem;
    background: color-mix(in srgb, #ffffff 82%, transparent);
    box-shadow: 0 0.45rem 1.2rem color-mix(in srgb, var(--baza-color-text-primary) 8%, transparent);
}

.baza-hero-parallax__start-preview--atelier .baza-hero-parallax__start-page-nav {
    background: color-mix(in srgb, #ffffff 10%, transparent);
}

.baza-hero-parallax__start-page-nav strong {
    overflow: hidden;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.baza-hero-parallax__start-page-nav-links {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 0.35rem;
}

.baza-hero-parallax__start-nav-pill {
    display: inline-flex;
    padding: 0.28rem 0.42rem;
    border-radius: 999px;
    color: color-mix(in srgb, var(--baza-color-text-primary) 58%, transparent);
    font-size: 0.58rem;
    font-weight: 900;
    line-height: 1;
}

.baza-hero-parallax__start-preview--atelier .baza-hero-parallax__start-nav-pill {
    color: color-mix(in srgb, var(--baza-color-accent-contrast) 76%, transparent);
}

.baza-hero-parallax__start-nav-pill--cta {
    background: var(--baza-color-accent-primary);
    color: var(--baza-color-accent-contrast);
}

.baza-hero-parallax__start-page-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(7.8rem, 0.92fr);
    align-items: stretch;
    gap: clamp(0.58rem, 1vw, 0.9rem);
}

.baza-hero-parallax__start-page-copy,
.baza-hero-parallax__start-scenario {
    min-width: 0;
    border-radius: 0.9rem;
    background: color-mix(in srgb, #ffffff 72%, transparent);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--baza-color-text-primary) 5%, transparent);
}

.baza-hero-parallax__start-preview--atelier .baza-hero-parallax__start-page-copy,
.baza-hero-parallax__start-preview--atelier .baza-hero-parallax__start-scenario {
    background: color-mix(in srgb, #ffffff 8%, transparent);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--baza-color-accent-contrast) 10%, transparent);
}

.baza-hero-parallax__start-page-copy {
    display: grid;
    align-content: center;
    padding: clamp(0.7rem, 1.2vw, 1rem);
    gap: 0.4rem;
}

.baza-hero-parallax__start-page-eyebrow {
    color: var(--baza-color-accent-primary);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.baza-hero-parallax__start-page-title {
    display: -webkit-box;
    overflow: hidden;
    color: inherit;
    font-family: var(--baza-font-family-heading);
    font-size: clamp(1rem, 1.5vw, 1.42rem);
    line-height: 1.02;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.baza-hero-parallax__start-page-lead {
    display: -webkit-box;
    overflow: hidden;
    color: color-mix(in srgb, currentColor 72%, transparent);
    font-size: 0.64rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.baza-hero-parallax__start-page-button,
.baza-hero-parallax__start-form-submit {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
    padding: 0.44rem 0.62rem;
    border-radius: 999px;
    background: var(--baza-color-accent-primary);
    color: var(--baza-color-accent-contrast);
    font-size: 0.62rem;
    font-weight: 900;
    line-height: 1;
}

.baza-hero-parallax__start-scenario {
    position: relative;
    display: grid;
    align-content: center;
    padding: clamp(0.62rem, 1vw, 0.9rem);
    gap: 0.35rem;
    overflow: hidden;
}

.baza-hero-parallax__start-form-title,
.baza-hero-parallax__start-service span,
.baza-hero-parallax__start-query span,
.baza-hero-parallax__start-filter strong,
.baza-hero-parallax__start-client-panel strong,
.baza-hero-parallax__start-demo-card strong {
    color: var(--baza-color-accent-primary);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.baza-hero-parallax__start-form-field,
.baza-hero-parallax__start-service,
.baza-hero-parallax__start-query,
.baza-hero-parallax__start-filter span,
.baza-hero-parallax__start-client-panel span {
    display: block;
    min-height: 1.1rem;
    padding: 0.28rem 0.4rem;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--baza-color-text-primary) 10%, transparent);
    border-radius: 0.42rem;
    background: color-mix(in srgb, #ffffff 78%, transparent);
    color: color-mix(in srgb, var(--baza-color-text-primary) 62%, transparent);
    font-size: 0.52rem;
    font-weight: 800;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.baza-hero-parallax__start-form-field--active,
.baza-hero-parallax__start-form-field--selected {
    border-color: color-mix(in srgb, var(--baza-color-accent-primary) 48%, transparent);
    background: color-mix(in srgb, var(--baza-color-accent-primary) 12%, #ffffff 88%);
}

.baza-hero-parallax__start-form-message {
    min-height: 2rem;
    white-space: normal;
}

.baza-hero-parallax__start-cursor {
    position: absolute;
    right: 50%;
    bottom: 44%;
    width: 0;
    height: 0;
    border-top: 0.8rem solid var(--baza-color-accent-primary);
    border-right: 0.52rem solid transparent;
    filter: drop-shadow(0 0.22rem 0.42rem color-mix(in srgb, var(--baza-color-text-primary) 30%, transparent));
    transform: rotate(-22deg);
}

.baza-hero-parallax__start-service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.baza-hero-parallax__start-service strong {
    color: var(--baza-color-text-primary);
    font-size: 0.56rem;
}

.baza-hero-parallax__start-opinion {
    display: block;
    padding: 0.52rem;
    border-radius: 0.55rem;
    background: color-mix(in srgb, var(--baza-color-accent-primary) 9%, #ffffff 91%);
    color: color-mix(in srgb, var(--baza-color-text-primary) 70%, transparent);
    font-size: 0.54rem;
    font-weight: 800;
    line-height: 1.25;
}

.baza-hero-parallax__start-query {
    display: grid;
    gap: 0.25rem;
}

.baza-hero-parallax__start-query strong {
    width: fit-content;
    padding: 0.32rem 0.46rem;
    border-radius: 999px;
    background: var(--baza-color-accent-primary);
    color: var(--baza-color-accent-contrast);
    font-size: 0.54rem;
}

.baza-hero-parallax__start-scenario--atelier {
    min-height: 8rem;
}

.baza-hero-parallax__start-orbit {
    position: absolute;
    inset: 1rem;
    border: 1px solid color-mix(in srgb, var(--baza-color-accent-contrast) 20%, transparent);
    border-radius: 999px;
    transform: rotate(var(--baza-start-orbit-rotate, 0deg));
}

.baza-hero-parallax__start-orbit--two {
    --baza-start-orbit-rotate: 58deg;
    inset: 1.7rem 0.9rem;
}

.baza-hero-parallax__start-demo-card {
    position: relative;
    z-index: 1;
    display: grid;
    width: 78%;
    margin: auto;
    padding: 0.72rem;
    gap: 0.3rem;
    border-radius: 0.72rem;
    background: color-mix(in srgb, #ffffff 12%, transparent);
    color: var(--baza-color-accent-contrast);
    box-shadow: 0 0 2rem color-mix(in srgb, var(--baza-color-accent-primary) 26%, transparent);
}

.baza-hero-parallax__start-demo-card span {
    color: color-mix(in srgb, var(--baza-color-accent-contrast) 78%, transparent);
    font-size: 0.58rem;
    font-weight: 800;
}

.baza-hero-parallax__start-glow-dot {
    position: absolute;
    width: 0.46rem;
    height: 0.46rem;
    border-radius: 999px;
    background: var(--baza-color-accent-primary);
    box-shadow: 0 0 1.2rem color-mix(in srgb, var(--baza-color-accent-primary) 70%, transparent);
}

.baza-hero-parallax__start-glow-dot--one {
    top: 26%;
    right: 22%;
}

.baza-hero-parallax__start-glow-dot--two {
    bottom: 24%;
    left: 24%;
}

.baza-hero-parallax__start-scenario--custom {
    grid-template-columns: 0.72fr 1fr;
    align-items: stretch;
}

.baza-hero-parallax__start-filter,
.baza-hero-parallax__start-client-panel {
    display: grid;
    gap: 0.32rem;
}

.baza-hero-parallax__start-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.38rem;
}

.baza-hero-parallax__start-products span {
    display: block;
    min-height: 2.2rem;
    border-radius: 0.5rem;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--baza-color-accent-primary) 18%, #ffffff 82%), #ffffff);
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--baza-color-text-primary) 8%, transparent);
}

.baza-hero-parallax__start-client-panel {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
}

.baza-hero-parallax__start-client-panel strong {
    grid-column: 1 / -1;
}

.baza-hero-parallax__start-page-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.baza-hero-parallax__start-page-strip span {
    display: inline-flex;
    min-height: 2.4rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.62rem;
    background: color-mix(in srgb, #ffffff 64%, transparent);
    color: color-mix(in srgb, var(--baza-color-text-primary) 54%, transparent);
    font-size: 0.58rem;
    font-weight: 900;
}

.baza-hero-parallax__start-preview--atelier .baza-hero-parallax__start-page-strip span {
    background: color-mix(in srgb, #ffffff 9%, transparent);
    color: color-mix(in srgb, var(--baza-color-accent-contrast) 74%, transparent);
}

@media (max-width: 1180px) {
    .baza-hero-parallax--active-intro .baza-hero-parallax__start-stage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: min(100% - (var(--baza-layout-page-gutter) * 2), 64rem);
    }

    .baza-hero-parallax__start-preview {
        transform: none;
    }
}

@media (max-width: 782px) {
    .baza-hero-parallax--active-intro {
        --baza-hero-start-preview-height: auto;
    }

    .baza-hero-parallax--active-intro .baza-hero-parallax__inner {
        min-height: 0;
        padding-bottom: var(--baza-spacing-lg);
    }

    .baza-hero-parallax--active-intro .baza-hero-parallax__start-stage {
        grid-template-columns: 1fr;
        gap: var(--baza-spacing-sm);
    }

    .baza-hero-parallax__start-page-main {
        grid-template-columns: 1fr;
    }
}
