.oganov-how-we-work {
    --how-work-bg: #181831;
    --how-work-text-primary: #ffffff;
    --how-work-text-secondary: rgba(255, 255, 255, 0.6);
    --how-work-text-muted: rgba(255, 255, 255, 0.3);
    --how-work-card-bg: rgba(241, 241, 244, 0.05);
    --how-work-card-border: rgba(255, 255, 255, 0.1);
    --how-work-button-bg: rgba(255, 255, 255, 0.05);
    --how-work-button-hover-bg: rgba(255, 255, 255, 0.12);
    --how-work-accent: #5d8de4;
    position: relative;
    overflow: hidden;
    font-family: 'Involve', sans-serif;
    background: radial-gradient(85% 120% at 0% 100%, rgba(11, 13, 45, 0.9) 0%, rgba(20, 22, 58, 0) 62%), var(--how-work-bg);
    width: 100%;
    min-height: 0;
    height: calc(100vh - 120px);
    max-height: none;
    padding: 0px 76px;
}

.oganov-how-we-work__pin {
    position: relative;
    top: 0;
    height: auto;
}

.oganov-how-we-work__layout {
    display: grid;
    grid-template-columns: minmax(280px, 496px) minmax(420px, 771px);
    align-items: stretch;
    justify-content: space-between;
    gap: clamp(32px, 8vw, 252px);
    height: auto;
    width: min(100%, 1920px);
    box-sizing: border-box;
    padding: 0;
    margin: 0 auto;
}

.oganov-how-we-work__intro {
    position: relative;
    width: 100%;
    min-height: auto;
    height: auto;
    padding: 150px 0 0;
    z-index: 1;
}

.oganov-how-we-work__title {
    margin: 0;
    color: var(--how-work-text-primary);
    text-transform: uppercase;
    font-size: clamp(30px, 2.9vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 100%;
}

.oganov-how-we-work__title-accent {
    display: inline-flex;
    margin-left: 0.08em;
    position: relative;
    isolation: isolate;
    white-space: nowrap;
    padding: 0 0.15em;
}

.oganov-how-we-work__title-accent::before {
    content: '';
    position: absolute;
    inset: 0.04em -0.05em;
    background: var(--how-work-accent);
    transform: skewX(-13deg) rotate(-1.2deg);
    z-index: -1;
}

.oganov-how-we-work__description {
    margin: 24px 0 0;
    color: var(--how-work-text-secondary);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.35;
    max-width: 100%;
}

.oganov-how-we-work__watermark {
    position: absolute;
    left: 0;
    bottom: -10%;
    width: min(878px, 170%);
    opacity: 0.28;
    pointer-events: none;
    user-select: none;
}

.oganov-how-we-work__watermark img {
    display: block;
    width: 100%;
    height: auto;
}

.oganov-how-we-work__stages-viewport {
    height: auto;
    overflow: visible;
}

.oganov-how-we-work__stages-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: auto;
    overflow: hidden;
    padding: 0;
    scroll-padding-top: 24px;
    scroll-padding-bottom: 24px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.oganov-how-we-work__stages-track::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.oganov-how-we-work__stage {
    border: 1px solid var(--how-work-card-border);
    background: var(--how-work-card-bg);
    border-radius: 12px;
    padding: 48px 24px;
    transition: none;
}

.oganov-how-we-work__stage-number {
    margin: 0;
    color: var(--how-work-text-muted);
    font-size: 20px;
    line-height: 1.1;
    font-weight: 500;
}

.oganov-how-we-work__stage-title {
    margin: 24px 0 0;
    color: var(--how-work-text-primary);
    text-transform: uppercase;
    font-size: clamp(24px, 2.2vw, 30px);
    line-height: 1.15;
    font-weight: 600;
}

.oganov-how-we-work__stage-description {
    margin: 24px 0 0;
    color: var(--how-work-text-secondary);
    font-size: clamp(18px, 1.5vw, 20px);
    line-height: 1.35;
}

.oganov-how-we-work__stage-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 20px 24px;
    border-radius: 6px;
    background: var(--how-work-button-bg);
    color: var(--how-work-text-primary);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.oganov-how-we-work__stage-button:hover,
.oganov-how-we-work__stage-button:focus-visible {
    background: var(--how-work-button-hover-bg);
    color: var(--how-work-text-primary);
}

.oganov-how-we-work__stage-button:focus-visible {
    outline: 2px solid #89b3ff;
    outline-offset: 2px;
}

.oganov-how-we-work__stage-button--static {
    cursor: default;
}

@media (max-width: 1024px) {
    .oganov-how-we-work {
        min-height: 0 !important;
        height: auto;
        max-height: none;
        padding: clamp(40px, 8vw, 56px) 16px;
    }

    .oganov-how-we-work__pin {
        position: relative;
        top: 0;
        height: auto;
    }

    .oganov-how-we-work__layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
        height: auto;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .oganov-how-we-work__intro {
        min-height: auto;
        height: auto;
        padding: 0;
    }

    .oganov-how-we-work__watermark {
        display: none;
    }

    .oganov-how-we-work__stages-viewport {
        overflow: visible;
        height: auto;
    }

    .oganov-how-we-work__stages-track {
        height: auto;
        padding: 0;
        overflow: visible;
        transform: none !important;
    }

    .oganov-how-we-work__stage {
        padding: 24px 20px;
    }

    .oganov-how-we-work__stage-number {
        font-size: 18px;
    }

    .oganov-how-we-work__stage-title {
        margin-top: 16px;
        font-size: clamp(22px, 7vw, 30px);
    }

    .oganov-how-we-work__stage-description {
        margin-top: 16px;
        font-size: 18px;
    }

    .oganov-how-we-work__stage-button {
        margin-top: 16px;
        padding: 16px 20px;
        font-size: 14px;
    }
}

@media (hover: none), (pointer: coarse) {
    .oganov-how-we-work {
        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;
        padding: clamp(40px, 8vw, 56px) 16px;
    }

    .oganov-how-we-work__pin,
    .oganov-how-we-work__stages-viewport,
    .oganov-how-we-work__stages-track {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        overflow: visible !important;
        transform: none !important;
    }
}
